LaTeX 错误:两个 \documentclass 或 \documentstyle 命令 - 只能使用其中一个

LaTeX 错误:两个 \documentclass 或 \documentstyle 命令 - 只能使用其中一个

我正在使用 RStudio 处理 RMarkdown 文件来生成 PDF。

在 中test.Rmd,我有:

---
title: "Test"
author: "John Doe"
# date: "Jan. 17, 2018"

output:
  pdf_document:
    toc: true
    toc_depth: 3                    # default = 3
    number_sections: true           # add section numbering to headers
    fig_width: 6                    # default = 6
    fig_height: 4.5                 # default = 4.5
    fig_caption: true               # default = false
    highlight: tango                # specifies the syntax highlighting style
    includes:
      in_header: doc_prefix.tex
fontsize: 11pt
geometry: margin=1in
linkcolor: blue
urlcolor: blue
citecolor: blue
---


\begin{document}

\end{document}

在 中doc_prefix.tex,我有:

\documentclass{IEEEtran}

就是这样。但我收到错误:LaTeX Error: Two \documentclass or \documentstyle commands。我没有看到任何重复项,也没有看到每个重复项。这是怎么回事?

相关内容