如何在 scrartcl 中使用 scrbook 的标题页设计?

如何在 scrartcl 中使用 scrbook 的标题页设计?

titlepagedocumentclass 的默认值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}

结果截图:

<code>scrartcl</code> 中的 <code>titlepage</code> 截图


相比之下,titlepageof 的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}

结果截图:

<code>scrbook</code> 中的 <code>titlepage</code> 的屏幕截图


现在的问题是:

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}

相关内容