diff --git a/news/index.html b/news/index.html index 4d1a805..1dec2f2 100644 --- a/news/index.html +++ b/news/index.html @@ -68,7 +68,8 @@
rjournal_article()
as a preferred alias to rjournal_web_article()
since this output format generally produces both HTML and PDF outputs.R/rjournal_article.R
+ Source: R/rj_article.R
create_article.Rd
Functions to build HTML and PDF R Journal articles
rjournal_pdf_article()
rjournal_web_article()
rjournal_article()
rjournal_pdf_article()
rjournal_web_article()
R Markdown output formats for R Journal articles
R/rj_pdf_article.R
, R/rj_web_article.R
+ Source: R/rj_article.R
, R/rj_pdf_article.R
, R/rj_web_article.R
rjournal_article.Rd
The R Journal is built upon the distill framework with some modifications.
This output format behaves almost identically to the
distill::distill_article()
format, with some formatting and structural
-changes.
rjournal_article()
format will produce both HTML and PDF
+outputs, while the rjournal_pdf_article()
produces only the PDF output.
rjournal_pdf_article(..., self_contained = FALSE)
+ rjournal_article(
+ toc = FALSE,
+ self_contained = FALSE,
+ legacy_pdf = FALSE,
+ web_only = !legacy_pdf,
+ ...
+)
+
+rjournal_pdf_article(..., self_contained = FALSE)
rjournal_web_article(
toc = FALSE,
@@ -91,9 +101,8 @@ R Markdown output formats for R Journal articles
Arguments
- - ...
-Arguments passed to distill::distill_article()
for web articles,
-and rticles::rjournal_article()
for pdf articles.
+ - toc
+TRUE
to include a table of contents in the output
- self_contained
@@ -104,10 +113,6 @@ Arguments
its size).
-- toc
-TRUE
to include a table of contents in the output
-
-
- legacy_pdf
whether an article is from the past and only have pdf version
@@ -115,6 +120,11 @@ Arguments
- web_only
additional param for embedding PDF or using Rmd to produce HTML
+
+- ...
+Arguments passed to distill::distill_article()
for web articles,
+and rticles::rjournal_article()
for pdf articles.
+
Value