1

I am writing a report in Latex and my document class must be article. I want to add some additional text under my title but I can't find anything that would correspond to a subtitle command. Does anyone have any suggestions?

\documentclass[11pt,a4paper]{article}
\title {Title}
\author{Name}
Pete97
  • 21
  • 1
  • 5

2 Answers2

2
\documentclass[11pt,a4paper]{article}
\title {Title}
\author{Name}

\makeatletter
\def\@maketitle{%
  \newpage
  \null
  \vskip 2em%
  \begin{center}%
  \let \footnote \thanks
    {\LARGE \@title \par}%
    \vskip 1em%
    {\Large Whatever Subtitle you want\par}%
    \vskip 1.5em%
    {\large
      \lineskip .5em%
      \begin{tabular}[t]{c}%
        \@author
      \end{tabular}\par}%
    \vskip 1em%
    {\large \@date}%
  \end{center}%
  \par
  \vskip 1.5em}
\makeatother


\begin{document}
\maketitle

test

\end{document}
1

Hopefully, I found a very easy and quick solution:

\documentclass[11pt,a4paper]{article}
\title {Title \\[1ex] \large Subtitle}
\author{Name}

\begin{document}
\maketitle

Text.
\end{document}
MattAllegro
  • 4,414
  • 5
  • 33
  • 42
  • 1
    This will mess with the pdf meta data if used in combination with hyperref and without paragraphs the line spacing will be wrong. – samcarter_is_at_topanswers.xyz Nov 27 '20 at 11:13
  • @samcarter_is_at_topanswers.xyz thank you! [My reference](https://tex.stackexchange.com/a/219399/49683). By the way, many compliments for your [latex] silver badge, lots of contributions and help here and there, that's great :) – MattAllegro Nov 27 '20 at 20:58