titlepage
documentclass 的默认值scrartcl
看起来非常压缩,不太好看。
最小工作示例(MWE):
\documentclass{scrartcl}
\begin{document}
\titlehead{Head of titlepage}
\subject{SUBJECT}
\title{TITLE}
\subtitle{A big conclusion of \LaTeX}
\author{Max Muster \and goLaTeX\thanks{Footnote to author} \and Michael Marks}
\date{01.01.0001}
\publishers{Published from Wayne}
\maketitle
\end{document}
结果截图:
相比之下,titlepage
of 的scrbook
字间空隙很大,看上去很美味:
最小工作示例(MWE):
\documentclass[oneside]{scrbook}
\begin{document}
\titlehead{Head of titlepage}
\subject{SUBJECT}
\title{TITLE}
\subtitle{A big conclusion of \LaTeX}
\author{Max Muster \and goLaTeX\thanks{Footnote to author} \and Michael Marks}
\date{01.01.0001}
\publishers{Published from Wayne}
\maketitle
\end{document}
结果截图:
现在的问题是:
titlepage
我怎样才能从scrbook
内部使用鞋面scrartcl
?
答案1
使用 class 选项titlepage
(在 中默认启用scrbook
)。
\documentclass[titlepage]{scrartcl}
\begin{document}
\titlehead{Head of titlepage}
\subject{SUBJECT}
\title{TITLE}
\subtitle{A big conclusion of \LaTeX}
\author{Max Muster \and goLaTeX\thanks{Footnote to author} \and Michael Marks}
\date{01.01.0001}
\publishers{Published from Wayne}
\maketitle
\end{document}