Slowly getting the hang on Latex but am starting to reach the point where I'd like to make a few minor modifications to the page layout to suit my purposes better.
Essentially I'm looking to reduce the amount of white space that appears before the title in the article class. I am aware there is already a thread on this and the solution was to use the changepage package, however this requires a manual change back to the default margins for future pages and is less than ideal as it requires knowing where the page will break.
I assume there must be a way of using renewcommand to do it, or editing the article.cls (and saving under another name) although I seem to have hit a wall trying. A MWE is below, any help would be appreciated.
Thanks,
Kenny
MWE:
Code: Select all
\documentclass[12pt]{article}
\usepackage{lipsum}
\title{The Title}
\author{The Author}
\begin{document}
\maketitle
\begin{abstract}
\lipsum[1]
\end{abstract}
\section{Section 1}
\lipsum[1-5]
\end{document}