Hi,
I am making handouts with koma scrartcl. I need to shift title up and reduce space between body and author. I am unable to do it. I have attached a sample minimal tex file. Please guide me.
Warm regards,
Payal
Page Layout ⇒ making handouts scrartcl
NEW: TikZ book now 40% off at Amazon.com for a short time.

making handouts scrartcl
Using scrartcl, the easiest way seems to be adding negative space in some of the other fields defined for \maketitle (see the KOMA script documentation, sec 3.3.) Adjust the vspaces as you see fit.
Code: Select all
\documentclass[DIV=12,headinclude=false,footinclude=false,
paper=A4,landscape]{scrartcl}
\usepackage{geometry}
\usepackage{typearea}
\usepackage[usenames,dvips]{color}
\usepackage[latin1]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{multicol}
\usepackage{amssymb}
\usepackage{listings}
\usepackage{fancyhdr}
\usepackage{verbatim}
\subject{\vspace{-4\baselineskip}}
\title{Guide}
\author{Payal}
\publishers{\vspace{-1.5\baselineskip}}
\date{}
\begin{document}
\maketitle
Lorem ipsum per in civibus intellegat adolescens, qui ex oblique adolescens. Civibus omittantur quo in, sea malis deserunt id. Eum apeirian pericula ullamcorper ea. Qui agam partiendo te, cu eum consul perfecto interesset, ut eros eloquentiam quo.
\end{document}
Re: making handouts scrartcl
That is nice. It worked.
Thanks a lot.
-Payal
Thanks a lot.
-Payal