一个人怎样才能正确地证明自己的奉献精神?

一个人怎样才能正确地证明自己的奉献精神?

以下是 MWE。如何证明献词与文本右边距对齐?

\documentclass[12pt]{scrartcl}
\usepackage{lipsum}


\title{\textbf{\LARGE The Recursionist Theory of Something}}
\date{}
\dedication {\scriptsize To the memory of my teacher,  
\ldots\ldots\ldots\ldots\ldots.\,.\,.,\\
and  to the sleepless nights these problems caused.}
\author{ Sapiens}



\begin{document}
\thispagestyle{empty}

\maketitle

\lipsum[1-2]

\end{document}

答案1

在 komascript 手册的表 3.3 中,您可以找到标题元素的默认值。

对于正确的标题,\usekomafont{disposition}是默认的,但您可以根据需要进行更改。

类似地,奉献部分使用\Large(和\centering)。

\documentclass[12pt]{scrartcl}
\usepackage{lipsum}

\setkomafont{title}{\bfseries\LARGE}
\setkomafont{dedication}{\footnotesize\raggedleft}

\title{The Recursionist Theory of Something}
\author{Sapiens}
\date{}
\dedication{%
  Dedicated to \\
  the masters of directing \\
  by which I mean \\
  John Ford, John Ford \\
  and John Ford
}



\begin{document}
\thispagestyle{empty}

\maketitle

\lipsum[1-2]

\end{document}

在此处输入图片描述

相关内容