Exercise 9: Creating an Abstract (Solution)
This is the solution to
Exercise 9.
\documentclass[11pt]{scrartcl}
\usepackage{datetime}
\title{A Simple Document}
\author{Me}
\begin{document}
\maketitle
\begin{abstract}
A brief document to illustrate how to use \LaTeX.
\end{abstract}
This is a simple \LaTeX\ document.
Here is the first paragraph.
Here is the second paragraph\footnote{with a footnote}.
As you can see it's a rather short paragraph, but not
as short as the previous one. This document was
created on: \today\ at \currenttime.
\begin{tabular}{lrr}
& \multicolumn{2}{c}{\bfseries Expenditure}\\
& \multicolumn{1}{c}{Year1} & \multicolumn{1}{c}{Year2}\\
\bfseries Travel & 100,000 & 110,000\\
\bfseries Equipment & 50,000 & 60,000
\end{tabular}
\end{document}