Page Layoutmaking handouts scrartcl

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
payal11
Posts: 2
Joined: Fri Feb 04, 2011 6:15 pm

making handouts scrartcl

Post by payal11 »

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
Attachments
test.tex
(660 Bytes) Downloaded 415 times
Last edited by payal11 on Sun Feb 06, 2011 2:00 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

making handouts scrartcl

Post by frabjous »

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}
payal11
Posts: 2
Joined: Fri Feb 04, 2011 6:15 pm

Re: making handouts scrartcl

Post by payal11 »

That is nice. It worked.
Thanks a lot.
-Payal
Post Reply