使用 R Markdown 在文档标题中添加数学模式

使用 R Markdown 在文档标题中添加数学模式

我试图将 $\LaTeX$ 放入文档标题中,但找不到这样做的方法。我想这是因为我无法将 latex 包与文档标题一起使用。有人知道如何解决这个问题吗?

以下是我所拥有的:

title: "Welcome to $\LaTeX$ Workshop"
output: 
  pdf_document:
  citation_package: natbib
  number_sections: yes
  link-citations: yes
bibliography: sample.bib
classoption: twocolumn
header-includes:
  - \usepackage{lscape}
  - \usepackage[english]{babel}
  - \usepackage{multicol}
  - \setlength{\columnsep}{1cm}
  - \setlength{\parindent}{1cm} # paragraph indentation
  - \setlength{\parskip}{8pt} # paragraph spacing
  - \usepackage{setspace}
  - \doublespacing

我收到的错误如下所示:

! Package inputenc Error: Unicode char 
     (U+2028)
(inputenc)                not set up for use with LaTeX.

See the inputenc package documentation for explanation.
Type  H <return>  for immediate help.
 ...                                              

l.96 \maketitle

Try running pandoc with --latex-engine=xelatex.
pandoc: Error producing PDF
Error: pandoc document conversion failed with error 43
Execution halted

提前致谢!

答案1

在此处输入图片描述

您需要使用以下方法转义反斜杠

标题:“欢迎来到 \\LaTeX{} 研讨会”
...

或者你可以使用解决方法:

---
标题:“欢迎来到 LaTeX 研讨会”
输出:
  pdf_文档
标头包括:
  - \title{欢迎参加 \LaTeX{} 研讨会}
...
---

上述方法删除标题中的所有格式,并通过传统方式重置它\title pandoc 的\title插入。这实际上会覆盖它,而无需使用 pandoc 进行处理。

相关内容