这是我的代码来演示我不能做什么。我使用一个 R 块来制作一个图形,并使用 out.extra='angle=90' 使该图形横向张贴在页面上。现在我如何让我的标题也横向移动?
\documentclass{article}
\usepackage{subcaption}
\begin{document}
<<test-plot,echo=FALSE,fig.cap="I would like to be posted sideways under figure, NOT HERE",out.extra='angle=90'>>=
plot(1)
abline(0, 1)
plot(rnorm(10))
for(i in 1:10) {
abline(v = i, lty = 2)
}
@
\end{document}