% ************************************************************************************************************** % A Classic Thesis Style % An Homage to The Elements of Typographic Style % % Copyright (C) 2007 André Miede http://www.miede.de % % If you like the style then I would appreciate a postcard. My address % can be found in the file ClassicThesis.pdf. A collection of the % postcards I received so far is available online at % http://postcards.miede.de % % License: % This program is free software; you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation; either version 2 of the License, or % (at your option) any later version. % % This program is distributed in the hope that it will be useful, % but WITHOUT ANY WARRANTY; without even the implied warranty of % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the % GNU General Public License for more details. % % You should have received a copy of the GNU General Public License % along with this program; see the file COPYING. If not, write to % the Free Software Foundation, Inc., 59 Temple Place - Suite 330, % Boston, MA 02111-1307, USA. % % ************************************************************************************************************** % Note: % * You must not use "u etc. in strings/commands that will be spaced out (use \"u or real umlauts instead) % * Chapters must be marked with the \myChapter{Foo} command (sorry for the inconvenience at this point) % * New enumeration (small caps): \begin{aenumerate} \end{aenumerate} % * For margin notes: \graffito{} % * Do not use bold fonts in this style, it is designed around them % * Use tables as in the examples % * There is a problem with the case of math text in part-, % chapter-, and section titles and I have no clue on how to fix this % (either the case or the spacing breaks). So far, I chose the case. :-( % * See classicthesis-ldpkg.sty for useful commands % ************************************************************************************************************** % To Do: % * remove obsolete KOMA options and use \KOMAoptions instead % * support a List of Listings that looks like the other lists % ************************************************************************************************************** \documentclass[ 10pt,a4paper,twoside,openright,titlepage,fleqn,%1headlines,% a4paper letterpaper cleardoubleempty,abstractoff,pointlessnumbers,% headinclude,footexclude,BCOR5mm,% ]{scrreprt} % ******************************************************************** % List of Files (written to .log file) % ******************************************************************** \listfiles % ******************************************************************** % Re-usable information % ******************************************************************** \newcommand{\myTitle}{A Classic Thesis Style\xspace} \newcommand{\myDegree}{An Homage to The Elements of Typographic Style\xspace} \newcommand{\myName}{Andr\'e Miede\xspace} \newcommand{\myProf}{Put name here\xspace} \newcommand{\myOtherProf}{Put name here\xspace} \newcommand{\mySupervisor}{Put name here\xspace} \newcommand{\myFaculty}{Put data here\xspace} \newcommand{\myDepartment}{Put data here\xspace} \newcommand{\myUni}{\protect{Put data here}\xspace} \newcommand{\myLocation}{Hamburg\xspace} \newcommand{\myTime}{March 2007\xspace} % ******************************************************************** % Load Packages %******************************************************* \usepackage{classicthesis-ldpkg} % Options for classicthesis.sty: % tocaligned eulerchapternumbers drafting linedheaders listsseparated % subfigure nochapters beramono eulermath parts \usepackage[eulerchapternumbers,drafting,% subfigure,beramono,eulermath,parts]{classicthesis} % ******************************************************************** % Setup and Finetuning %******************************************************* \newlength{\abcd} % for ab..z string length calculation \newcommand{\myfloatalign}{\centering} % how all the floats will be aligned \setlength{\extrarowheight}{3pt} % increase table row height % ******************************************************************** % Where to look for graphics %******************************************************* \graphicspath{{gfx/}{misc/}} % ******************************************************************** % Hyperreferences %******************************************************* \hypersetup{% colorlinks=true, linktocpage=true, pdfstartpage=3, pdfstartview=FitV,% breaklinks=true, pdfpagemode=UseNone, pageanchor=true, pdfpagemode=UseOutlines,% plainpages=false, bookmarksnumbered, bookmarksopen=true, bookmarksopenlevel=1,% hypertexnames=true, pdfhighlight=/O,%nesting=true,%frenchlinks,% urlcolor=webbrown, linkcolor=RoyalBlue, citecolor=webgreen, pagecolor=RoyalBlue,% % uncomment the following line if you want to have black links (e.g., for printing) %urlcolor=Black, linkcolor=Black, citecolor=Black, pagecolor=Black,% pdftitle={\myTitle},% pdfauthor={\textcopyright\ \myName, \myUni, \myFaculty},% pdfsubject={},% pdfkeywords={},% pdfcreator={pdfLaTeX},% pdfproducer={LaTeX with hyperref}% } %******************************************************************** % Hyphenation %******************************************************* %\hyphenation{put special hyphenation here} % ******************************************************************** % GO!GO!GO! MOVE IT! %******************************************************* \begin{document} \frenchspacing \raggedbottom \selectlanguage{american} % american ngerman %\renewcommand*{\bibname}{new name} %\setbibpreamble{} \pagenumbering{roman} \pagestyle{plain} %******************************************************************** % Frontmatter %******************************************************* \include{FrontBackmatter/DirtyTitlepage} \include{FrontBackmatter/Titlepage} \include{FrontBackmatter/Titleback} \cleardoublepage\include{FrontBackmatter/Dedication} \cleardoublepage\include{FrontBackmatter/Abstract} \cleardoublepage\include{FrontBackmatter/Publication} \cleardoublepage\include{FrontBackmatter/Acknowledgments} \pagestyle{scrheadings} \cleardoublepage\include{FrontBackmatter/Contents} %******************************************************************** % Mainmatter %******************************************************* \pagenumbering{arabic} \myPart{Some Kind of Manual} \include{Chapters/Chapter01} \myPart{The Showcase} \include{Chapters/Chapter02} \include{Chapters/Chapter03} % ******************************************************************** % Backmatter %******************************************************* \appendix \myPart{Appendix} \include{Chapters/Chapter0A} %******************************************************************** % Other Stuff in the Back %******************************************************* \cleardoublepage\include{FrontBackmatter/Bibliography} \cleardoublepage\include{FrontBackmatter/Colophon} \cleardoublepage\include{FrontBackmatter/Declaration} % ******************************************************************** % Game Over: Restart, Restore or Quit? %******************************************************* \end{document} % ********************************************************************