使用 \textbf{} 编写 \title{} 有什么问题?

使用 \textbf{} 编写 \title{} 有什么问题?

哪种方法可以使标题更醒目?

答案1

这完全违背了 LaTeX 的所有设计。您可以\title完全避免,并且\section只在文档中进行显式字体更改,但我们的想法是,尽可能在文档中使用通用结构标记,这些标记可以在不同的文档类别中以不同的方式设置样式。

如果有的话,\title{My document}可能需要在标题页中将其加粗,但也许需要将其放在 pdf 书签中(没有字体),或者可能需要将其提取到作品集目录或引文数据库中并设置为无粗体。在不丢失语义上必需的命令的情况下删除不需要的样式标记很容易出错,最好不要添加它。

所选字体只是标题布局整体设计的一部分,任何更改都应在该上下文中进行,而不是在线进行。

在此处输入图片描述

\documentclass{article}

\title{Some Document}
\author{A. Nother}

\begin{document}

\maketitle

\end{document}

在此处输入图片描述

\documentclass{article}
\makeatletter
% copied from article.cls, then adjusted
\def\@maketitle{%
  \newpage
  \null
  \vskip 2em%
  \begin{center}%
  \let \footnote \thanks
%    {\LARGE \@title \par}%
    {\Large\bfseries \@title \par}%smaller but bolder
%    \vskip 1.5em%
    \vskip 1.1em% smaller
    {\large
      \lineskip .5em%
      \begin{tabular}[t]{c}%
        \@author
      \end{tabular}\par}%
    \vskip 1em%
%    {\large \@date}%
    {\@date}% smaller
  \end{center}%
  \par
  \vskip 1.5em}
\makeatother
\title{Some Document}
\author{A. Nother}

\begin{document}

\maketitle

\end{document}

相关内容