Thursday, April 12, 2012

How to place figures / images inside a table

Figures and images can be placed within tables, but even into other environments, or without environment. A good description is available here:

http://texblog.org/2008/02/04/placing-graphicsimages-inside-a-table/

Thank you J. !

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}