Tex Proof 环境未在 R Markdown 中定义,amsthm 未在生成的 Tex 文件中定义



[编辑以提供更多信息]

我正在使用以下 R markdown 文件生成以下 Tex 文件。我在我的 .rmd 标头中包含 amsthm,它正在生成一个没有 amsthm 的 Tex 文件。因此,在编译期间未定义证明环境。

这是我的 .rmd 文件:

---
title: Real Analysis Notes 01
header_includes:
- usepackage{amsthm}
output:
pdf_document:
keep_tex: true
---
This is a test file.
begin{proof}
This is a proof.
end{proof}

编译时给出以下输出:

> require(rmarkdown); render('RA01-notes.rmd')
Loading required package: rmarkdown

processing file: RA01-notes.rmd
|.................................................................| 100%
ordinary text without R code

output file: RA01-notes.knit.md
/usr/bin/pandoc +RTS -K512m -RTS RA01-notes.utf8.md --to latex --from markdown+autolink_bare_uris+ascii_identifiers+tex_math_single_backslash --output RA01-notes.tex --template /usr/lib/R/library/rmarkdown/rmd/latex/default-1.17.0.2.tex --highlight-style tango --pdf-engine pdflatex --variable graphics=yes --variable 'geometry:margin=1in' --variable 'compact-title:yes' 
! LaTeX Error: Environment proof undefined.
Error: Failed to compile RA01-notes.tex. See RA01-notes.log for more info.
Execution halted
shell returned 1

生成此 Tex 文件:

documentclass[]{article}
usepackage{lmodern}
usepackage{amssymb,amsmath}
usepackage{ifxetex,ifluatex}
usepackage{fixltx2e} % provides textsubscript
ifnum 0ifxetex 1fiifluatex 1fi=0 % if pdftex
usepackage[T1]{fontenc}
usepackage[utf8]{inputenc}
else % if luatex or xelatex
ifxetex
usepackage{mathspec}
else
usepackage{fontspec}
fi
defaultfontfeatures{Ligatures=TeX,Scale=MatchLowercase}
fi
% use upquote if available, for straight quotes in verbatim environments
IfFileExists{upquote.sty}{usepackage{upquote}}{}
% use microtype if available
IfFileExists{microtype.sty}{%
usepackage{microtype}
UseMicrotypeSet[protrusion]{basicmath} % disable protrusion for tt fonts
}{}
usepackage[margin=1in]{geometry}
usepackage{hyperref}
hypersetup{unicode=true,
pdftitle={Real Analysis Notes 01},
pdfborder={0 0 0},
breaklinks=true}
urlstyle{same}  % don't use monospace font for urls
usepackage{graphicx,grffile}
makeatletter
defmaxwidth{ifdimGin@nat@width>linewidthlinewidthelseGin@nat@widthfi}
defmaxheight{ifdimGin@nat@height>textheighttextheightelseGin@nat@heightfi}
makeatother
% Scale images if necessary, so that they will not overflow the page
% margins by default, and it is still possible to overwrite the defaults
% using explicit options in includegraphics[width, height, ...]{}
setkeys{Gin}{width=maxwidth,height=maxheight,keepaspectratio}
IfFileExists{parskip.sty}{%
usepackage{parskip}
}{% else
setlength{parindent}{0pt}
setlength{parskip}{6pt plus 2pt minus 1pt}
}
setlength{emergencystretch}{3em}  % prevent overfull lines
providecommand{tightlist}{%
setlength{itemsep}{0pt}setlength{parskip}{0pt}}
setcounter{secnumdepth}{0}
% Redefines (sub)paragraphs to behave more like sections
ifxparagraphundefinedelse
letoldparagraphparagraph
renewcommand{paragraph}[1]{oldparagraph{#1}mbox{}}
fi
ifxsubparagraphundefinedelse
letoldsubparagraphsubparagraph
renewcommand{subparagraph}[1]{oldsubparagraph{#1}mbox{}}
fi
%%% Use protect on footnotes to avoid problems with footnotes in titles
letrmarkdownfootnotefootnote%
deffootnote{protectrmarkdownfootnote}
%%% Change title format to be more compact
usepackage{titling}
% Create subtitle command for use in maketitle
newcommand{subtitle}[1]{
posttitle{
begin{center}large#1end{center}
}
}
setlength{droptitle}{-2em}
title{Real Analysis Notes 01}
pretitle{vspace{droptitle}centeringhuge}
posttitle{par}
author{}
preauthor{}postauthor{}
date{}
predate{}postdate{}

begin{document}
maketitle
This is a test file.
begin{proof}
This is a proof.
end{proof}

end{document}

pandoc选项是header-includes(连字符而不是下划线(。

最新更新