knitr Rnw latex:如何在横向模式下获得整页宽度的图形和标题

时间:2014-05-17 16:15:55

标签: knitr pdflatex rnw

我正在尝试制作一个整页图形以及横向模式中的标题。如果我省略" 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}

1 个答案:

答案 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}