blob: ced5cd52eee33185d9fc7114bbe2cb3a9aa2fbac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
% article example for classicthesis.sty
\documentclass[10pt,a4paper]{scrartcl} % KOMA-Script article
\usepackage{lipsum}
\usepackage{url}
\usepackage[nochapters]{../classicthesis} % nochapters
\begin{document}
\title{\rmfamily\normalfont\spacedallcaps{the title}}
\author{\spacedlowsmallcaps{tyler durden}}
\date{} % no date
\maketitle
\begin{abstract}
\noindent\lipsum[1]
\end{abstract}
\tableofcontents
\section{A Section}
\lipsum[1]
\subsection{A Subsection}
\lipsum[1]
\subsection{A Subsection}
\section{A Section}
\lipsum[1]
% bib stuff
\nocite{*}
\addtocontents{toc}{\protect\vspace{\beforebibskip}}
\addcontentsline{toc}{section}{\refname}
\bibliographystyle{plain}
\bibliography{../Bibliography}
\end{document}
|