2

我正在尝试在横向模式下生成整页图以及标题。如果我省略“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}
4

1 回答 1

2

尝试这个:

\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}
于 2014-05-24T20:12:53.953 回答