KnitR を使用して R によって生成された図のキャプションの配置を指定する方法はありますか? 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}