jss_article.Rd 954 B

12345678910111213141516171819202122232425262728293031323334
  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/jss_article.R
  3. \name{jss_article}
  4. \alias{jss_article}
  5. \title{Journal of Statistical Software (JSS) format.}
  6. \usage{
  7. jss_article(..., keep_tex = TRUE, citation_package = "natbib")
  8. }
  9. \arguments{
  10. \item{...}{Arguments to \code{rmarkdown::pdf_document}}
  11. \item{keep_tex}{Keep the intermediate tex file used in the conversion to PDF}
  12. \item{citation_package}{The LaTeX package to process citations, \code{natbib}
  13. or \code{biblatex}. Use \code{none} if neither package is to be used.}
  14. }
  15. \value{
  16. R Markdown output format to pass to
  17. \code{\link[rmarkdown:render]{render}}
  18. }
  19. \description{
  20. Format for creating a Journal of Statistical Software (JSS) articles. Adapted
  21. from
  22. \href{http://www.jstatsoft.org/about/submissions}{http://www.jstatsoft.org/about/submissions}.
  23. }
  24. \examples{
  25. \dontrun{
  26. library(rmarkdown)
  27. draft("MyArticle.Rmd", template = "jss_article", package = "rticles")
  28. }
  29. }