summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/classicthesis/Examples
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /macros/latex/contrib/classicthesis/Examples
Initial commit
Diffstat (limited to 'macros/latex/contrib/classicthesis/Examples')
-rw-r--r--macros/latex/contrib/classicthesis/Examples/classicthesis-arsclassica-book.pdfbin0 -> 59432 bytes
-rw-r--r--macros/latex/contrib/classicthesis/Examples/classicthesis-arsclassica-book.tex35
-rw-r--r--macros/latex/contrib/classicthesis/Examples/classicthesis-article.pdfbin0 -> 78871 bytes
-rw-r--r--macros/latex/contrib/classicthesis/Examples/classicthesis-article.tex47
-rw-r--r--macros/latex/contrib/classicthesis/Examples/classicthesis-book-xelatex.pdfbin0 -> 19100 bytes
-rw-r--r--macros/latex/contrib/classicthesis/Examples/classicthesis-book-xelatex.tex48
-rw-r--r--macros/latex/contrib/classicthesis/Examples/classicthesis-book.pdfbin0 -> 46589 bytes
-rw-r--r--macros/latex/contrib/classicthesis/Examples/classicthesis-book.tex52
-rw-r--r--macros/latex/contrib/classicthesis/Examples/classicthesis-cv.pdfbin0 -> 48770 bytes
-rw-r--r--macros/latex/contrib/classicthesis/Examples/classicthesis-cv.tex38
10 files changed, 220 insertions, 0 deletions
diff --git a/macros/latex/contrib/classicthesis/Examples/classicthesis-arsclassica-book.pdf b/macros/latex/contrib/classicthesis/Examples/classicthesis-arsclassica-book.pdf
new file mode 100644
index 0000000000..637a81bc95
--- /dev/null
+++ b/macros/latex/contrib/classicthesis/Examples/classicthesis-arsclassica-book.pdf
Binary files differ
diff --git a/macros/latex/contrib/classicthesis/Examples/classicthesis-arsclassica-book.tex b/macros/latex/contrib/classicthesis/Examples/classicthesis-arsclassica-book.tex
new file mode 100644
index 0000000000..bf8ae27d4f
--- /dev/null
+++ b/macros/latex/contrib/classicthesis/Examples/classicthesis-arsclassica-book.tex
@@ -0,0 +1,35 @@
+% book example for classicthesis.sty
+\RequirePackage{silence} % :-\
+ \WarningFilter{scrbook}{Usage of package `titlesec'}
+ \WarningFilter{titlesec}{Non standard sectioning command detected}
+\documentclass[11pt,paper=b5,footinclude,headinclude]{scrbook} % KOMA-Script book
+\usepackage[T1]{fontenc}
+\usepackage{lipsum}
+\usepackage[style=arsclassica, parts=false]{classicthesis}
+
+\begin{document}
+
+ \tableofcontents
+
+ \chapter{Some Testing}
+ \lipsum[1]
+
+ \chapter{Test Chapter ABC}
+ \lipsum[1]
+
+ \section{A Section}
+ \lipsum[1]
+
+ \section{A Section}
+ \lipsum[1]
+
+ \section{A Section}
+ \lipsum[1]
+
+ \chapter{Test Chapter DEF}
+ \lipsum[1]
+
+ \section{A Section}
+ \lipsum[1]
+
+\end{document}
diff --git a/macros/latex/contrib/classicthesis/Examples/classicthesis-article.pdf b/macros/latex/contrib/classicthesis/Examples/classicthesis-article.pdf
new file mode 100644
index 0000000000..b418143d42
--- /dev/null
+++ b/macros/latex/contrib/classicthesis/Examples/classicthesis-article.pdf
Binary files differ
diff --git a/macros/latex/contrib/classicthesis/Examples/classicthesis-article.tex b/macros/latex/contrib/classicthesis/Examples/classicthesis-article.tex
new file mode 100644
index 0000000000..870801a36e
--- /dev/null
+++ b/macros/latex/contrib/classicthesis/Examples/classicthesis-article.tex
@@ -0,0 +1,47 @@
+% article example for classicthesis.sty
+\documentclass[10pt,a4paper]{article} % KOMA-Script article scrartcl
+\usepackage{lipsum}
+\usepackage{url}
+\usepackage[nochapters]{../classicthesis} % nochapters
+
+\begin{document}
+ \pagestyle{plain}
+ \title{\rmfamily\normalfont\spacedallcaps{the title}}
+ \author{\spacedlowsmallcaps{tyler durden}}
+ \date{} % no date
+
+ \maketitle
+
+ \begin{abstract}
+ \noindent\lipsum[1] Just a test.\footnote{This is a footnote.}
+ \end{abstract}
+
+ \tableofcontents
+
+ \section{A Section}
+ \finalVersionString \lipsum[1]
+ \subsection{A Subsection}
+ \lipsum[1]
+ \footnote{Footnote with one digit}
+ \footnote{Footnote with one digit}
+ \footnote{Footnote with one digit}
+ \footnote{Footnote with one digit}
+ \footnote{Footnote with one digit}
+ \footnote{Footnote with one digit}
+ \footnote{Footnote with one digit}
+ \footnote{Footnote with one digit}
+ \footnote{Footnote with one digit}
+ \footnote{Footnote with two digits} % "0" and "F" should not overlap here.
+
+ \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}
diff --git a/macros/latex/contrib/classicthesis/Examples/classicthesis-book-xelatex.pdf b/macros/latex/contrib/classicthesis/Examples/classicthesis-book-xelatex.pdf
new file mode 100644
index 0000000000..db9cb72db5
--- /dev/null
+++ b/macros/latex/contrib/classicthesis/Examples/classicthesis-book-xelatex.pdf
Binary files differ
diff --git a/macros/latex/contrib/classicthesis/Examples/classicthesis-book-xelatex.tex b/macros/latex/contrib/classicthesis/Examples/classicthesis-book-xelatex.tex
new file mode 100644
index 0000000000..944b080f6f
--- /dev/null
+++ b/macros/latex/contrib/classicthesis/Examples/classicthesis-book-xelatex.tex
@@ -0,0 +1,48 @@
+% book example for classicthesis.sty
+\RequirePackage{silence} % :-\
+ \WarningFilter{scrbook}{Usage of package `titlesec'}
+ \WarningFilter{titlesec}{Non standard sectioning command detected}
+\documentclass[11pt,a5paper,footinclude,headinclude]{scrbook} % KOMA-Script book
+\usepackage[T1]{fontenc}
+\usepackage{lipsum}
+%\usepackage{hyperref}
+\usepackage[parts]{../classicthesis} % ,manychapters
+%\usepackage[osf]{libertine}
+%\hypersetup{linktocpage=true,bookmarksnumbered=true,pageanchor=true,hypertexnames=false,naturalnames=true,plainpages=false}
+
+\begin{document}
+% \pagestyle{scrheadings}
+% \manualmark
+% \markboth{\spacedlowsmallcaps{\contentsname}}{\spacedlowsmallcaps{\contentsname}}
+
+ \tableofcontents
+
+% \automark[section]{chapter}
+% \renewcommand{\chaptermark}[1]{\markboth{\spacedlowsmallcaps{#1}}{\spacedlowsmallcaps{#1}}}
+% \renewcommand{\sectionmark}[1]{\markright{\thesection\enspace\spacedlowsmallcaps{#1}}}
+
+ % use \cleardoublepage here to avoid problems with pdfbookmark
+ \cleardoublepage\part{Test Part}
+ \chapter{Test Chapter}
+ \lipsum[1]
+
+ \section{A Section}
+ \lipsum[1]
+
+ \chapter{Test Chapter}
+ \lipsum[1]
+
+ \section{A Section}
+ \lipsum[1]
+
+% \include{multiToC}
+
+ \appendix
+ \cleardoublepage\part{Appendix}
+ \chapter{Appendix Chapter}
+ \lipsum[1]
+
+ \section{A Section}
+ \lipsum[1]
+
+\end{document}
diff --git a/macros/latex/contrib/classicthesis/Examples/classicthesis-book.pdf b/macros/latex/contrib/classicthesis/Examples/classicthesis-book.pdf
new file mode 100644
index 0000000000..f44446e4ef
--- /dev/null
+++ b/macros/latex/contrib/classicthesis/Examples/classicthesis-book.pdf
Binary files differ
diff --git a/macros/latex/contrib/classicthesis/Examples/classicthesis-book.tex b/macros/latex/contrib/classicthesis/Examples/classicthesis-book.tex
new file mode 100644
index 0000000000..1dd32ea2a0
--- /dev/null
+++ b/macros/latex/contrib/classicthesis/Examples/classicthesis-book.tex
@@ -0,0 +1,52 @@
+% book example for classicthesis.sty
+\RequirePackage{silence} % :-\
+ \WarningFilter{scrbook}{Usage of package `titlesec'}
+ \WarningFilter{titlesec}{Non standard sectioning command detected}
+\documentclass[11pt,paper=b5,footinclude,headinclude]{scrbook} % KOMA-Script book
+\usepackage[T1]{fontenc}
+\usepackage{lipsum}
+\usepackage[linedheaders=true]{../classicthesis} % ,manychapters
+%\usepackage[osf]{libertine}
+
+\begin{document}
+% \pagestyle{scrheadings}
+% \manualmark
+% \markboth{\spacedlowsmallcaps{\contentsname}}{\spacedlowsmallcaps{\contentsname}}
+
+ \tableofcontents
+
+% \automark[section]{chapter}
+% \renewcommand{\chaptermark}[1]{\markboth{\spacedlowsmallcaps{#1}}{\spacedlowsmallcaps{#1}}}
+% \renewcommand{\sectionmark}[1]{\markright{\thesection\enspace\spacedlowsmallcaps{#1}}}
+
+ % use \cleardoublepage here to avoid problems with pdfbookmark
+ \cleardoublepage\part{Test Part}\label{part:testpart}
+ \chapter{Some Testing}
+ We discuss in Part~\ref{part:testpart} the test results.
+
+ We discuss in Part~\textsc{\ref{part:testpart}} the test results.
+ \lipsum[1]
+
+ \chapter{Test Chapter \NoCaseChange{Ag}}
+ \lipsum[1]
+
+ \section{A Section}
+ \lipsum[1]
+
+ \chapter{Test Chapter DEF}
+ \lipsum[1]
+
+ \section{A Section}
+ \lipsum[1]
+
+% \include{multiToC}
+
+ \appendix
+ \cleardoublepage\part{Appendix}
+ \chapter{Appendix Chapter}
+ \lipsum[1]
+
+ \section{A Section}
+ \lipsum[1]
+
+\end{document}
diff --git a/macros/latex/contrib/classicthesis/Examples/classicthesis-cv.pdf b/macros/latex/contrib/classicthesis/Examples/classicthesis-cv.pdf
new file mode 100644
index 0000000000..39389e2490
--- /dev/null
+++ b/macros/latex/contrib/classicthesis/Examples/classicthesis-cv.pdf
Binary files differ
diff --git a/macros/latex/contrib/classicthesis/Examples/classicthesis-cv.tex b/macros/latex/contrib/classicthesis/Examples/classicthesis-cv.tex
new file mode 100644
index 0000000000..7cc383206f
--- /dev/null
+++ b/macros/latex/contrib/classicthesis/Examples/classicthesis-cv.tex
@@ -0,0 +1,38 @@
+% cv example for classicthesis.sty
+\RequirePackage{silence} % :-\
+ \WarningFilter{scrartcl}{Usage of package `titlesec'}
+ \WarningFilter{titlesec}{Non standard sectioning command detected}
+\documentclass[fontsize=10pt,paper=a4]{scrartcl}
+\usepackage[LabelsAligned]{currvita} % nice cv style
+\usepackage{url}
+ \urlstyle{rm}
+\usepackage[ngerman]{babel}
+\usepackage[nochapters]{../classicthesis}
+
+\renewcommand*{\cvheadingfont}{\LARGE\color{Maroon}}
+\renewcommand*{\cvlistheadingfont}{\large}
+\renewcommand*{\cvlabelfont}{\itshape} % \qquad
+
+\areaset[current]{390pt}{730pt} % need some extra space
+%\usepackage[pass,showframe]{geometry}
+
+\begin{document}
+ \pagestyle{plain}
+ \begin{cv}{\spacedallcaps{Curriculum Vit\ae}}
+ %\pdfbookmark[1]{Pers\"onliche Daten}{PersDat}
+ \begin{cvlist}{\spacedlowsmallcaps{Pers\"onliche Daten}}\label{PersDat} % should be fixed one day
+ \item Andr\'e Miede
+ \item Geboren am \dots\ \texttt{(-;} \\
+ Europ\"aer, Deutsche Staatsb\"urgerschaft
+ \item \url{http://www.miede.de}
+ \end{cvlist}
+
+ % \clearpage
+ %\pdfbookmark[1]{Irgendwas}{irgendwas}
+ \begin{cvlist}{\spacedlowsmallcaps{Irgendwas}}\label{irgendwas}
+ \item[Fusce mauris] Vestibulum luctus nibh at lectus. Sed bibendum, nulla a faucibus semper, leo velit ultricies tellus, ac venenatis arcu wisi vel nisl. Vestibulum diam. Aliquam pellentesque, augue quis sagittis posuere, turpis lacus congue quam, in hendrerit risus eros eget felis.
+ \item[Nulla facilisi] Sed a turpis eu lacus commodo facilisis. Morbi fringilla, wisi in dignissim interdum, justo lectus sagittis dui, et vehicula libero dui cursus dui. Mauris tempor ligula sed lacus. Duis cursus enim ut augue. Cras ac magna. Cras nulla. Nulla egestas.
+ \item[Curabitur a leo] Quisque egestas wisi eget nunc. Nam feugiat lacus vel est. Curabitur consectetuer.
+ \end{cvlist}
+ \end{cv}
+\end{document}