rmarkdownのtemplateでエラーが出ます。
https://ytake2.github.io/create.manuscript/RStudio_for_Academia.html
このサイトからなのですが、
rmarkdown::draft("draft1", template = "elsevier_article", package = "rticles")
これを実行すると、
Error in rmarkdown::draft("draft1", template = "elsevier_article", package = "rticles") :
The template 'elsevier_article' was not found in the rticles package
となります、elsevier_articleがないみたいです、どうすればよいでしょうか。
実行したコード全体は、
R
1install.packages(c("devtools", "usethis")) 2install.packages("rmarkdown") 3library(devtools) 4library(usethis) 5library(rmarkdown) 6 7install.packages("rticles") 8devtools::install_github("crsh/papaja") 9 10library(rticles) 11library(rmarkdown) 12rmarkdown::draft("draft1", template = "elsevier_article", package = "rticles")
これです。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/08/25 02:28