我正在尝试制作一个整页图形以及横向模式中的标题。如果我省略" 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}
答案 0 :(得分:1)
试试这个:
\documentclass{article}
\usepackage{fullpage}
\usepackage{pdflscape}
\begin{document}
\begin{landscape}
\begin{figure}
<<test, out.width='1\\linewidth', fig.width=7, fig.height=4>>=
par(mar=c(4, 4, .1, .1)); plot(1:10)
@
\caption{Caption Trial}
\end{figure}
\end{landscape}
\end{document}