4

ここに私が持っているものがあります:

\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}

ドキュメントのタイトルに手動で改行を追加するにはどうすればよいですか?

4

1 に答える 1

4

改行を追加するだけです。

\documentclass{article}

\begin{document}

\title{This is\\ 
the document title}

\maketitle

\end{document}
于 2013-04-23T19:29:34.047 に答える