有没有办法为 R 使用 KnitR 生成的图形指定标题的位置?我希望有一些功能上等同于xtable()
'caption.placement
选项的东西。
下面提供了一个最小的工作示例。
\documentclass[12pt, english, oneside]{amsart}
\begin{document}
The caption for Figure \ref{fig:plot} is placed below the figure. Could we place it above, instead?
<<plot, echo=FALSE, fig.cap="Default caption placement is below the figure.">>=
plot(x=0, y=0)
@
\end{document}