2

输入数据

我准备了一个示例 Rmd 文件,其中引用了图形、表格和方程式,设置为输出“bookdown::pdf_document2”。它编译为 PDF 时没有错误。

我把它放在保管箱上: https ://www.dropbox.com/sh/zmu0a4wq95ywssv/AAD-nHlkDiLknLk2NVR4Xup3a?dl=0


问题

现在我希望设置为输出格式 'rticles::elsevier_article'

我怎样才能做到这一点?

问题

当我将输出行从 bookdown::pdf_document2 更改为 rticles::elsevier_article

我收到一条错误消息。

即使我从输出中删除其他参数:

尝试切换

我仍然收到一条错误消息:

! Undefined control sequence.
4

2 回答 2

3

“按原样”输入时的重音字符似乎与elsevier_article. 请参阅下面的建议。


基本文件

这是一个使用的基本文档rticles::elsevier_article

---
title: "Sample document"
author: 
  - name: "Mateusz Kędzior"
    affiliation: Some Institute of Technology
    email: Mateusz@example.com
    footnote: Corresponding Author
  - name: Żąćł Źęń    
csl: https://www.zotero.org/styles/geoderma
output:
  rticles::elsevier_article:
    citation_package: natbib
    keep_tex: yes
    number_sections: yes
    toc: no
keywords: keywordA, keywordB
abstract: This is a sample abstract \newline This is the second line of abstract.
---

Hello world.

没有抱怨:

在此处输入图像描述


带重音的参考

现在,我们希望添加一个带重音符号的引用。我们在这里遵循答案:https ://tex.stackexchange.com/questions/57743/how-to-write-%C3%A4-and-other-umlauts-and-accented-letters-in-bibliography 。我将您的参考书目导入 Zotero,然后使用“中欧 (ISO)”编码(不是 UTF-8)导出该项目以获得

@article{kedzior_this_2018,
    title = {This is sample title only {\k A} {\L }},
    volume = {99},
    url = {http://megooglethat.com/},
    journal = {Some journal},
    author = {K{\k e}dzior, Mateusz and {\'Z}{\k e}{\'n}, {\.Z}{\k a}{\'c}{\l }},
    year = {2018},
    keywords = {keywordC},
    pages = {21 -- 31}
}

R Markdown 文档现在变为

---
title: "Sample document"
author: 
  - name: "Mateusz Kędzior"
    affiliation: Some Institute of Technology
    email: Mateusz@example.com
    footnote: Corresponding Author
  - name: Żąćł Źęń    
csl: https://www.zotero.org/styles/geoderma
output:
  rticles::elsevier_article:
    citation_package: natbib
    keep_tex: yes
    number_sections: yes
    toc: no
biblio-files: bibliography2.bib
keywords: keywordA, keywordB
abstract: This is a sample abstract \newline This is the second line of abstract.
---

## Citations and references

Let me cite an article: [@kedzior_this_2018]

# References

然后我knit在 RStudio 中对此进行了编辑,但意识到我必须获取tex输出并重建它(在 RStudio 之外)以获得所需的输出 在此处输入图像描述


其他问题

对于图形标题中的重音字符,相应地对其进行编码(与参考书目一样)。您可能会发现http://w2.syronex.com/jmr/latex-symbols-converter很有帮助。此外,据我所知,bookdown样式交叉引用不适用于rticles. 如果您有后续问题,如果您将问题分解成更小的部分,您可能会得到更有帮助的答案。

于 2017-02-19T16:58:38.043 回答
1

我在评论中添加了一些更新的材料 https://github.com/rstudio/rticles/issues/92#issuecomment-402784283 声明(可能会更新):

output: 
  bookdown::pdf_document2:
    base_format: rticles::elsevier_article
    number_sections: yes

这样我完成这项工作的方式就是使用pdf_bookvs pdf_document2

output:
  bookdown::pdf_book:
    base_format: rticles::elsevier_article
    number_sections: yes

这允许在rticles文档中引用图形和表格。

于 2019-02-22T20:12:32.107 回答