这是一个最小的例子:
\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
?
谢谢!