Ti consiglio di usare un main di questo tipo:
`\documentclass[…]{scrreprt}
\usepackage{…}
\usepackage[…]{biblatex}
\usepackage[…]{classicthesis}
\usepackage{classicthesis-settings}
\begin{document}
…
\end{document}`
dove classicthesis-settings.sty è un pacchettino personale del tipo:
`% ********************************************************************
% classicthesis-settings.sty
% ********************************************************************
\newcommand{\myTitle}{Introduzione allo stile ClassicThesis\xspace}
\newcommand{\mySubTitle}{Un omaggio agli Elementi dello stile tipografico\xspace}
\newcommand{\myName}{Lorenzo Pantieri\xspace}
\newcommand{\myLocation}{Cesena\xspace}
\newcommand{\myTime}{Giugno 2011\xspace}
\newcommand{\myDate}{29 giugno 2011\xspace}
% ********************************************************************
% hyperref
% ********************************************************************
\hypersetup{%
colorlinks=true, linktocpage=true, pdfstartpage=1, pdfstartview=FitV,%
breaklinks=true, pdfpagemode=UseNone, pageanchor=true, pdfpagemode=UseOutlines,%
plainpages=false, bookmarksnumbered, bookmarksopen=true, bookmarksopenlevel=1,%
hypertexnames=true, pdfhighlight=/O,%
urlcolor=webbrown, linkcolor=RoyalBlue, citecolor=RoyalBlue, 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},%
pdfsubject={},%
pdfkeywords={},%
pdfcreator={pdfLaTeX},%
pdfproducer={LaTeX con hyperref e ClassicThesis}%
}
% ********************************************************************
% caption
% ********************************************************************
\captionsetup{format=hang,font=small}
% ********************************************************************
% listings
% ********************************************************************
\definecolor{lightergray}{gray}{0.99}
\lstset{language=[LaTeX]Tex,
keywordstyle=\color{RoyalBlue},
basicstyle=\normalfont\ttfamily,
commentstyle=\color{Emerald}\ttfamily,
stringstyle=\rmfamily,
numbers=none,
numberstyle=\scriptsize,
stepnumber=5,
numbersep=8pt,
showstringspaces=false,
breaklines=true,
frameround=ftff,
frame=lines,
backgroundcolor=\color{lightergray}
}
% ********************************************************************
% biblatex %
% ********************************************************************
\bibliography{Bibliografia}`