Once I discovered classicthesis I fell in love with the layout and used it for study reports and so on. In the first step I downloaded the sources and customized the settings in various files as suggested in the documentation. The original project structure in this scenario is as follows.
├── Bibliography.bib
├── CHANGES
├── Chapters
│ ├── Chapter01.tex
│ ├── Chapter02.tex
│ ├── Chapter03.tex
│ └── Chapter0A.tex
├── classicthesis-config.tex
├── ClassicThesis.pdf
├── classicthesis.sty
├── ClassicThesis.tcp
├── ClassicThesis.tex
├── ClassicThesis.tps
├── COPYING
├── Examples // Removed branch.
├── FrontBackmatter
│ ├── Abstract.tex
│ ├── Acknowledgments.tex
│ ├── Bibliography.tex
│ ├── Colophon.tex
│ ├── Contents.tex
│ ├── Declaration.tex
│ ├── Dedication.tex
│ ├── DirtyTitlepage.tex
│ ├── Publication.tex
│ ├── Titleback.tex
│ └── Titlepage.tex
├── gfx // Folded in.
├── LISTOFFILES
└── README
In another project I realized that classicthesis is part of the LaTeX distribution and therefore I changed my setup. Basically, I loaded the package.
\documentclass[dottedtoc, headinclude, footinclude=true]{scrreprt}
\usepackage[pdfspacing]{classicthesis}
This dramatically reduced the overhead of files in the project. However, there are some components and settings where I still not understand how to configure them. Here is a list of particular problems.
- Frontbackmatter (Titleback, Titlepage, acronyms, ..) are defined in separate files. How am I supposed to customized (title pages) or add values (acronyms list in Contents.tex) without including them to my project?
- Should I add macros to the preamble of my main document such as
\newcommand{\myTime}{September 2012\xspace}to provide the values for the title pages?
As you can see I am not the experienced LaTeX user and I am still searching for best practice advices on how to create a project. Therefore, please do not hesitate correcting me if I totally misunderstood the supposed usage of the package.