aggiunte configurazioni pacchetto ClassicThesis
This commit is contained in:
parent
b14b11e4ed
commit
7a7e41c425
14
README.md
14
README.md
@ -57,14 +57,20 @@ Questo template usa il pacchetto LaTeX [ClassicThesis][classicthesis] realizzato
|
||||
il dipartimento a quale afferisce il corso di laurea
|
||||
- `draf` (string)
|
||||
versione della bozza. Da non specificare nel documento finale
|
||||
- `eulerchapternumber` (boolean)
|
||||
usa il font AMS Euler per il numero del capitolo. Palatino come font di default
|
||||
- `floatnumbering` (boolean)
|
||||
usa la numerazione float per le figure e le altre risorse. False come valore di default
|
||||
- `fontsize `(string)
|
||||
grandezza del carattere. 11pt come valore di default
|
||||
- `hidelinks `(boolean)
|
||||
se impostato i link appaiono in nero. Falso come valore di default
|
||||
- `institute `(string)
|
||||
l'istituto al quale si è iscritti
|
||||
- `keyworks`(lista di string)
|
||||
- `keywords` (lista di string)
|
||||
lista con le parole chiave del documento
|
||||
- `lineheaders` (boolean)
|
||||
aggiunge una linea di separazione tra il numero del capitolo e il nome del capitolo. Falso come valore di default
|
||||
- `logo` (string)
|
||||
path del logo dell'università
|
||||
- `matr` (int)
|
||||
@ -90,12 +96,18 @@ Questo template usa il pacchetto LaTeX [ClassicThesis][classicthesis] realizzato
|
||||
nome del relatore
|
||||
- `title` (string)
|
||||
titolo del relatore
|
||||
- `style` (string)
|
||||
consente di impostare lo liste della tesi tra classicthesis e arsclassica. classicthesis come valore di default
|
||||
- `title` (string)
|
||||
titolo della tesi
|
||||
- `toc` (boolean)
|
||||
include l'indice
|
||||
- `toc-depth` (int)
|
||||
configura la profondità dell'indice. Due come valore di default
|
||||
- `toc-dotted` (boolean)
|
||||
allinea i numeri di pagina a destra aggiungendo i puntini. False come valore di default
|
||||
- `toc-indent` (boolean)
|
||||
indenta l'indice. True come valore di default
|
||||
- `toc-title` (string)
|
||||
configura il titolo dell'indice
|
||||
- `lof` (boolean)
|
||||
|
36
latekiss.tex
36
latekiss.tex
@ -58,16 +58,28 @@ $endif$
|
||||
\PassOptionsToPackage{
|
||||
$if(draf)$
|
||||
drafting=true,
|
||||
$endif$ % print version information on the bottom of the pages
|
||||
tocaligned=false, % the left column of the toc will be aligned (no indentation)
|
||||
dottedtoc=false, % page numbers in ToC flushed right
|
||||
eulerchapternumbers=true, % use AMS Euler for chapter font (otherwise Palatino)
|
||||
linedheaders=false, % chaper headers will have line above and beneath
|
||||
floatperchapter=true, % numbering per chapter for all floats (i.e., Figure 1.1)
|
||||
$endif$
|
||||
$if(toc-indent)$
|
||||
tocaligned=$toc-indent$,
|
||||
$endif$
|
||||
$if(toc-dotted)$
|
||||
dottedtoc=$toc-dotted$,
|
||||
$endif$
|
||||
$if(eulerchapternumber)$
|
||||
eulerchapternumbers=$eulerchapternumber$,
|
||||
$endif$
|
||||
$if(lineheaders)$
|
||||
linedheaders=$lineheaders$,
|
||||
$endif$
|
||||
$if(floatnumbering)$
|
||||
floatperchapter=$floatnumbering$,
|
||||
$endif$ % numbering per chapter for all floats (i.e., Figure 1.1)
|
||||
eulermath=false, % use awesome Euler fonts for mathematical formulae (only with pdfLaTeX)
|
||||
beramono=true, % toggle a nice monospaced font (w/ bold)
|
||||
palatino=true, % deactivate standard font for loading another one, see the last section at the end of this file for suggestions
|
||||
style=classicthesis % classicthesis, arsclassica
|
||||
$if(style)$
|
||||
style=$style$ % classicthesis, arsclassica
|
||||
$endif$
|
||||
}{classicthesis}
|
||||
\usepackage{classicthesis}
|
||||
|
||||
@ -190,17 +202,17 @@ $endif$
|
||||
\Large
|
||||
|
||||
$if(institute)$
|
||||
\spacedallcaps{\LARGE $institute$}
|
||||
\spacedallcaps{\LARGE $institute$} \\
|
||||
$endif$
|
||||
$if(department)$
|
||||
\spacedlowsmallcaps{\LARGE $department$}
|
||||
\spacedlowsmallcaps{\LARGE $department$} \\
|
||||
$endif$
|
||||
$if(logo)$
|
||||
\vfill
|
||||
\includegraphics[width=6cm]{$logo$} \\ \medskip
|
||||
$endif$
|
||||
$if(course)$
|
||||
\spacedlowsmallcaps{$course$}
|
||||
\spacedlowsmallcaps{$course$} \\
|
||||
$endif$
|
||||
\vfill
|
||||
\begingroup
|
||||
@ -208,13 +220,13 @@ $endif$
|
||||
\endgroup
|
||||
$if(subtitle)$
|
||||
\medskip
|
||||
\textit{$subtitle$}
|
||||
\textit{$subtitle$} \\
|
||||
$endif$
|
||||
\vfill
|
||||
$if(author)$
|
||||
\spacedallcaps{\LARGE $author$} \\
|
||||
$if(matr)$
|
||||
\spacedlowsmallcaps{$matr$}
|
||||
\spacedlowsmallcaps{$matr$} \\
|
||||
$endif$
|
||||
$endif$
|
||||
\vfill
|
||||
|
Loading…
Reference in New Issue
Block a user