template.tex (987B)
1 $prefix()$ 2 % \usepackage[ 3 % backend=biber, 4 % bibencoding=utf8 5 % ]{biblatex} 6 % \addbibresource{bibliography.bib} 7 \begin{document} 8 $if(has-frontmatter)$ 9 \frontmatter 10 $endif$ 11 $title()$ 12 $for(include-before)$ 13 $include-before$ 14 15 $endfor$ 16 $if(toc)$ 17 $if(toc-title)$ 18 \renewcommand*\contentsname{$toc-title$} 19 $endif$ 20 { 21 \setcounter{tocdepth}{$toc-depth$} 22 \tableofcontents 23 } 24 $endif$ 25 $if(lof)$ 26 \listoffigures 27 $endif$ 28 $if(lot)$ 29 \listoftables 30 $endif$ 31 $if(linestretch)$ 32 \setstretch{$linestretch$} 33 $endif$ 34 $if(has-frontmatter)$ 35 \mainmatter 36 $endif$ 37 $body$ 38 39 $if(has-frontmatter)$ 40 \backmatter 41 $endif$ 42 $if(natbib)$ 43 $if(bibliography)$ 44 $if(biblio-title)$ 45 $if(has-chapters)$ 46 \renewcommand\bibname{$biblio-title$} 47 $else$ 48 \renewcommand\refname{$biblio-title$} 49 $endif$ 50 $endif$ 51 \bibliography{$for(bibliography)$$bibliography$$sep$,$endfor$} 52 53 $endif$ 54 $endif$ 55 $if(biblatex)$ 56 \printbibliography$if(biblio-title)$[title=$biblio-title$]$endif$ 57 58 $endif$ 59 $for(include-after)$ 60 $include-after$ 61 62 $endfor$ 63 \end{document}