最小限の例を次に示します。
\documentclass{article}
\begin{document}
<<fig.height=4,out.width=\textwidth,echo=FALSE>>=
plot(1,1)
plot(2,2)
@
\newpage
<<fig.height=4,out.width=\textwidth,echo=TRUE>>=
plot(1,1)
plot(2,2)
@
\end{document}
以下のスクリーンショットに注意してください。の場合echo=FALSE
、水平方向の配置はオフです。上のプロットは、下のプロットに対して右にシフトされます。の場合echo=TRUE
、水平方向の配置は正しい
最初の例を修正して正しく調整するにはどうすればよいecho=FALSE
ですか?
ありがとうございました!