如何在knitr RSweave文件中手动添加标题中的换行符?

时间:2013-04-22 02:40:41

标签: latex knitr sweave

这就是我所拥有的:

\documentclass{article}

\begin{document}

\title{This is the document title}

\maketitle

\end{document}

我想要这样的事情:

\documentclass{article}

\begin{document}

\title{This is 
the document title}

\maketitle

\end{document}

如何在文档标题中手动添加换行符?

1 个答案:

答案 0 :(得分:3)

只需添加换行符:

\documentclass{article}

\begin{document}

\title{This is\\ 
the document title}

\maketitle

\end{document}