3

这是一个最小的例子:

\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

谢谢!

4

0 回答 0