在 knitr fig.cap 中插入换行符吗?

在 knitr fig.cap 中插入换行符吗?

我正在使用knitr并想在我的块选项中插入换行符fig.cap。这可能吗?以下是我能想到的全部,但它不起作用。我希望有一些评估选项,但我很难理解评估是如何工作的……

\documentclass{article}

\begin{document}

<<chunk1, fig.cap = "This figure is great! Do you \n agree?">>=
plot(1:10)
@


\end{document}

答案1

使用 LaTeX 换行符代替 R 换行符并使用 caption 包。以下方法对我有用:

\documentclass{article}

\usepackage[format=plain, justification=raggedright,singlelinecheck=true]{caption}

\begin{document}

<<chunk1, fig.cap = "This figure is great! Do you \\\\ agree?">>=
plot(1:10)
@

\end{document}

相关内容