\subtitle 中的 Href

\subtitle 中的 Href

我该如何href在页面中添加副标题?我有:

\usepackage[%
  verbose,
  colorlinks=true,
  naturalnames=true,
  linkcolor=blue,
]{hyperref}
\begin{document}

%
% Title page
%
\title{Title}
\subtitle{Subtitle}
\setkomafont{subtitle}{\normalfont\Large}
\href{http://www.wikibooks.org}{Wikibooks home}
\maketitle
\end{document}

但我在另一个页面上获得了链接。我该如何正确操作?

谢谢。

答案1

\subtitle由 KOMA 类提供。您几乎可以在 KOMA 预定义的大多数字段中放置所有内容,如果您愿意,甚至可以放置图片。需要注意的重要一点是,标题页上打印的所有内容都必须位于其中一个字段中。请注意,使用 将内容放在新行上\\在任何字段中都不起作用。它适用于\author\title和其他,因为它们是在center环境中排版的。

\documentclass{scrreprt}
\usepackage{graphicx}
\usepackage{hyperref}
\begin{document}
\title{Title}
\subtitle{Subtitle \\[1em]
    \href{http://www.ctan.org}{\includegraphics[width=2em]{example-image-1x1}}}
\setkomafont{subtitle}{\normalfont\Large}
\maketitle
\end{document}

如果您想了解有关构建自己的标题页的更多信息,请参阅如何构建我自己的标题页?

相关内容