For an assignment at university I have to copy a lay-out template that is provided in Word but I want to use LaTeX. For this, I need to have two lines in the footer.
How can I achieve this using scrpage2? It is possible to simply use \\ in the text, e.g.
\refoot{\upshape Course year\\ 2010/2011}
however, then the text is shifted upwards into my separation line instead of downwards.
There are the commands
\setheadwidth
\setfootwidth
available but not
\setfootheight
\setheadheight
Minimal example:
\documentclass{scrartcl}
\usepackage{ucs}
\usepackage[utf8x]{inputenc}
\usepackage[headsepline, footsepline]{scrpage2}
\refoot{Course year\\ 2010/2011}
\rofoot{Course year\\ 2010/2011}
\thispagestyle{scrheadings}
\pagestyle{scrheadings}
\begin{document}
This is a sample document.
\end{document}
