Re: Modelli di tesi pronti per l’uso

#36720
Up
0
Down
::


Ma è proprio perfido, quell’erroraccio, si nasconde nella foresta dei file generati da LaTeX!
👿

Ecco il file .sty:

% ********************************************************************
% tesi.sty
% di Lorenzo Pantieri (2011)
% un pacchetto personale che contiene le impostazioni della tesi
% ********************************************************************
\ProvidesPackage{tesi}[2011/14/01 Un pacchetto personale]

% un ambiente ad hoc per le citazioni
\newenvironment{citazione}%
{\begin{quotation}\small\ignorespaces}%
{\end{quotation}}

% […] 😉
\newcommand{\omissis}{[\dots\negthinspace]}

% indica a LaTeX la cartella dove sono riposte le immagini
\graphicspath{{Immagini/}}

% eccezioni all’algoritmo di sillabazione
\hyphenation{Fortran ma-cro-istru-zio-ne nitro-idrossil-amminico}

%%%%%%%%%%%%%%
% Matematica %
%%%%%%%%%%%%%%

% comandi per gli insiemi numerici (serve il pacchetto amssymb)
\newcommand{\numberset}{\mathbb}
\newcommand{\N}{\numberset{N}}
\newcommand{\R}{\numberset{R}}

% un ambiente per i sistemi
\newenvironment{sistema}%
{\left\lbrace\begin{array}{@{}l@{}}}%
{\end{array}\right.}

% definizioni (serve il pacchetto amsthm)
\theoremstyle{definition}
\newtheorem{definizione}{Definizione}

% teoremi, leggi e decreti (serve il pacchetto amsthm)
\theoremstyle{plain}
\newtheorem{teorema}{Teorema}
\newtheorem{legge}{Legge}
\newtheorem{decreto}[legge]{Decreto}
\newtheorem{murphy}{Murphy}[section]

%%%%%%%%%%%%
% biblatex %
%%%%%%%%%%%%

\defbibheading{bibliography}{%
\cleardoublepage
\manualmark
\refstepcounter{dummy}
\addcontentsline{toc}{chapter}{\tocEntry{\bibname}}
\chapter*{\bibname\markboth{\spacedlowsmallcaps{\bibname}}
{\spacedlowsmallcaps{\bibname}}}}

%%%%%%%%%
% altro %
%%%%%%%%%

\hypersetup{citecolor=webgreen}
\hypersetup{pdfstartpage=1}

Go to top