Articles, Essays, and Journal Templates ⇒ How do I add a subtitle?
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
How do I add a subtitle?
Joel
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
How do I add a subtitle?
Modify the
\preauthor{}
line to this: \preauthor{\usefont{OT1}{phv}{m}{s} \color{DarkRed} \LARGE Subtitle\begin{flushleft}\large \lineskip 0.5em \usefont{OT1}{phv}{b}{sl} \color{DarkRed}}
You can change the white space before this subtitle in the line above and white space below by adding
\vspace{}
right after the subtitle text.Cheers,
Vel
-
- Posts: 1
- Joined: Thu Oct 15, 2015 11:17 am
How do I add a subtitle?
Code: Select all
\documentclass{scrartcl}
\begin{document}
\title{(Title)}
\subtitle{(Subtitle)}
\author{(Author)}
\maketitle
\end{document}
- Stefan Kottwitz
- Site Admin
- Posts: 10358
- Joined: Mon Mar 10, 2008 9:44 pm
How do I add a subtitle?
welcome to the forum!
Thanks for the suggestion. Indeed, some classes such as those of KOMA-Script, and beamer, provide a
\subtitle
command, while base classes don't have it.Stefan