Showing posts with label document class. Show all posts
Showing posts with label document class. Show all posts

Monday, May 19, 2014

Missing abstract in scrreprt

I have just started writing my thesis, and I noticed that the title for the abstract is not spelled out. Well, as it seems, the abstract has to be explicitly switched on with scrreprt class using the abstracton option.
\documentclass[a4paper,10pt, abstracton]{scrreprt}

Monday, October 22, 2012

Tuesday, April 10, 2012

How to use subtitle in an article

Make use of the \subtitle command, to do this use scrartcl document class,
and if you want the same fonts as at the article class,
also set them accordingly with \setkomafont
 
\documentclass{scrartcl}
\setkomafont{disposition}{\normalfont\bfseries}

\begin{document}

\title{(Title)}
\subtitle{(Subtitle)}
\author{(Author)}
\maketitle
\end{document}