我正在尝试在横向模式下生成整页图以及标题。如果我省略“fig.cap='Caption Trial'”,下面的 Rnw 文件可以正常工作,但如果使用了标题,则不能。任何帮助将不胜感激。
\documentclass{article}
\usepackage{fullpage}
\usepackage{pdflscape}
\begin{document}
\begin{landscape}
<<test, out.width='1\\linewidth', fig.width=7, fig.height=4, fig.cap='Caption Trial'>>=
par(mar=c(4, 4, .1, .1)); plot(1:10)
@
\end{landscape}
\end{document}