粗体标题和同一标题中的不同字体大小

粗体标题和同一标题中的不同字体大小

我怎样才能使标题中的每个字符都加粗?另外,是否可以同时使“理学院”的尺寸小于大学名称?我是 TeX 新手。

\documentclass{article}
\usepackage{titling}
\newcommand{\subtitle}[1]{%
  \posttitle{%
    \par\end{center}
    \begin{center}\LARGE#1\end{center}
    \vskip0.5em}%
}

\title{The University of Alberta
\\Faculty of Science}
\subtitle{(Paper Title)}
\author{(Author)}

\begin{document}

\maketitle

\end{document}

答案1

这个怎么样?

\documentclass{article}
\usepackage{titling}
\newcommand{\subtitle}[1]{%
  \posttitle{%
    \par\end{center}
    \begin{center}\LARGE#1\end{center}
    \vskip0.5em}%
}

\title{\textbf{The University of Alberta
\\{\Large Faculty of Science}}}
\subtitle{(Paper Title)}
\author{(Author)}

\begin{document}

\maketitle

\end{document}

在此处输入图片描述

相关内容