ieee_article.Rd 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/ieee_article.R
  3. \name{ieee_article}
  4. \alias{ieee_article}
  5. \title{IEEE Transactions journal format.}
  6. \usage{
  7. ieee_article(..., draftmode = c("final", "draft", "draftcls",
  8. "draftclsnofoot"), hyphenfixes = "op-tical net-works semi-conduc-tor",
  9. IEEEspecialpaper = "", with_ifpdf = FALSE, with_cite = FALSE,
  10. with_amsmath = FALSE, with_algorithmic = FALSE, with_subfig = FALSE,
  11. with_array = FALSE, with_dblfloatfix = FALSE, keep_tex = TRUE,
  12. md_extensions = c("-autolink_bare_uris"))
  13. }
  14. \arguments{
  15. \item{...}{Additional arguments to \code{rmarkdown::pdf_document}}
  16. \item{draftmode}{Specify the draft mode to control spacing and whether images
  17. should be rendered. Valid options are: \code{"final"} (default), \code{"draft"},
  18. \code{"draftcls"}, or \code{"draftclsnofoot"}.}
  19. \item{hyphenfixes}{A \code{character} value that provides the correct
  20. hyphenations for ambiguous words. Separate new words with spaces.}
  21. \item{IEEEspecialpaper}{A \code{character} value containing the publication's
  22. special paper designation.}
  23. \item{with_ifpdf}{A \code{logical} value turning on (\code{TRUE}) or off
  24. (\code{FALSE}) the \code{ifpdf} LaTeX package.}
  25. \item{with_cite}{A \code{logical} value turning on (\code{TRUE}) or off
  26. (\code{FALSE}) the \code{cite} LaTeX package.}
  27. \item{with_amsmath}{A \code{logical} value turning on (\code{TRUE}) or off
  28. (\code{FALSE}) the \code{amsmath} LaTeX package.}
  29. \item{with_algorithmic}{A \code{logical} value turning on (\code{TRUE}) or
  30. off (\code{FALSE}) the \code{algorithmic} LaTeX package.}
  31. \item{with_subfig}{A \code{logical} value turning on (\code{TRUE}) or off
  32. (\code{FALSE}) the \code{subfig} LaTeX package.}
  33. \item{with_array}{A \code{logical} value turning on (\code{TRUE}) or off
  34. (\code{FALSE}) the \code{array} LaTeX package.}
  35. \item{with_dblfloatfix}{A \code{logical} value turning on (\code{TRUE}) or
  36. off (\code{FALSE}) the \code{dblfloatfix} LaTeX package.}
  37. \item{keep_tex}{Keep the intermediate tex file used in the conversion to PDF}
  38. \item{md_extensions}{Markdown extensions to be added or removed from the
  39. default definition or R Markdown. See the \code{\link{rmarkdown_format}} for
  40. additional details.}
  41. }
  42. \value{
  43. R Markdown output format to pass to
  44. \code{\link[rmarkdown:render]{render}}
  45. }
  46. \description{
  47. Format for creating submissions to IEEE Transaction journals. Adapted from
  48. \href{http://www.ieee.org/publications_standards/publications/authors/author_templates.html}{http://www.ieee.org/publications_standards/publications/authors/author_templates.html}.
  49. }
  50. \details{
  51. Presently, only the \code{"conference"} paper mode offered by the
  52. \code{IEEEtran.cls} is supported.
  53. }
  54. \examples{
  55. \dontrun{
  56. library(rmarkdown)
  57. draft("MyArticle.Rmd", template = "ieee_article", package = "rticles")
  58. }
  59. }
  60. \references{
  61. Shell, Michael. "How to use the IEEEtran LATEX class." Journal of LATEX Class
  62. Files 1.11 (2002): 10-20.
  63. \url{http://mirrors.rit.edu/CTAN/macros/latex/contrib/IEEEtran/IEEEtran_HOWTO.pdf}
  64. }