blob: 3aa4641f5d56824970e8d8d1d1fd30394a11c48a (
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
36
|
% article example for classicthesis.sty
\documentclass[10pt,a4paper]{scrartcl} % KOMA-Script article
\usepackage{lipsum}
\usepackage{url}
%\usepackage[nochapters]{../classicthesis-ldpkg}
\usepackage[nochapters,minionprospacing]{../classicthesis}
\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}
|