1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
\graphicspath{{Immagini/}}
\newcommand{\mail}[1]{\href{mailto:#1}{\texttt{#1}}}
\newcommand{\inglese}[1]{%
\begin{otherlanguage*}{english}#1\end{otherlanguage*}}
\DeclareRobustCommand*{\pacchetto}[1]{{\normalfont\ttfamily#1}%
\index{Pacchetto!#1@\texttt{#1}}%
\index{#1@\texttt{#1}}}
\DeclareRobustCommand*{\ambiente}[1]{{\normalfont\ttfamily#1}%
\index{Ambiente!#1@\texttt{#1}}%
\index{#1@\texttt{#1}}}
\DeclareRobustCommand*{\opzione}[1]{{\normalfont\ttfamily#1}%
\index{Opzione!#1@\texttt{#1}}%
\index{#1@\texttt{#1}}}
\DeclareRobustCommand*{\classe}[1]{{\normalfont\ttfamily#1}%
\index{Classe!#1@\texttt{#1}}%
\index{#1@\texttt{#1}}}
\DeclareRobustCommand*{\programma}[1]{{\normalfont\ttfamily#1}%
\index{Programma!#1@\texttt{#1}}%
\index{#1@\texttt{#1}}}
\DeclareRobustCommand*{\comando}[1]{\mbox{\lstinline!\\#1!}%
\index{#1@\texttt{\hspace*{-1.2ex}\textbackslash#1}}}
\DeclareRobustCommand*{\classicthesis}{Classic\-Thesis}
\DeclareRobustCommand*{\arsclassica}{{\normalfont\ttfamily ArsClassica}}
\newcommand{\meta}[1]{$\langle${\normalfont\itshape#1}$\rangle$}
\DeclareRobustCommand*{\miktex}{MiK\TeX%
\index{miktex@MiK\protect\TeX}}
\DeclareRobustCommand*{\texlive}{\TeX{}~Live%
\index{texlive@\protect\TeX{}~Live}}
\lstset{ morekeywords=%
{RequirePackage,newboolean,DeclareOption,setboolean,%
ProcessOptions,PackageError,ifthenelse,boolean,%
chapterNumber,sodef,textls,allcapsspacing,%
MakeTextLowercase,orgtheindex,endtheindex,%
@ifpackageloaded,undefined,sfdefault,%
DeclareRobustCommand,spacedallcaps,%
microtypesetup,MakeTextUppercase,lowsmallcapsspacing,%
lowsmallcapsspacing,spacedlowsmallcaps,
spacedlowsmallcaps,lehead,headmark,color,%
headfont,partname,thepart,titleformat,part,
titlerule,chapter,thechapter,thesection,%
subsection,thesubsection,thesubsubsection,%
paragraph,theparagraph,descriptionlabel,titlespacing,%
graffito,lineskiplimit,finalhyphendemerits,%
colorbox,captionsetup,labelitemi,%
myincludegraphics,hypersetup,setlength,%
definecolor,lsstyle,textssc,subsubsection,%
graffito@setup,includegraphics,ifdefined,%
myTitle,textcopyright,myName,lstset,lstnewenvironment,%
setkeys,lst@BeginAlsoWriteFile,contentsname,%
toc@heading,@ppljLaTeX,z@,check@mathfonts,%
sf@size,ptctitle,mtctitle,stctitle,lst@intname,%
@empty,math@fontsfalse,@ppljscTeX,@iwonaTeX,%
@iwonascLaTeX,@ctTeX,tw@,ct@sc,@ctTeX,f@family,%
f@shape,ct@sc,ctLaTeX,ctLaTeXe,@twoe,@sctwoe,%
texorpdfstring,m@th,ctTeX,@mkboth,ProvidesPackage,%
theindex,PackageInfo,PackageWarningNoLine,%
mtifont,mtcindent,@iwonaLaTeX,@ppljTeX,@iwonascTeX,%
rohead,orgendtheindex,@ppljscLaTeX,%
@ifclassloaded,toc@headingbkORrp,backreftwosep,%
backrefalt,backreflastsep,areaset,pnumfont},%
commentstyle=\color{Emerald}\ttfamily,%
frame=lines}
\lstset{basicstyle=\normalfont\ttfamily}
\lstset{flexiblecolumns=false}
\lstset{moredelim={[is][\ttfamily]{!?}{?!}}}
\lstset{escapeinside={£*}{*£}}
\lstnewenvironment{code}%
{\setkeys{lst}{columns=fullflexible,keepspaces=true}%
\lstset{basicstyle=\small\ttfamily}%
}{}
\lstset{extendedchars}
\lstnewenvironment{sidebyside}{%
\global\let\lst@intname\@empty
\setbox\z@=\hbox\bgroup
\setkeys{lst}{columns=fullflexible,%
linewidth=0.45\linewidth,keepspaces=true,%
breaklines=true,%
breakindent=0pt,%
boxpos=t,%
basicstyle=\small\ttfamily
}%
\lst@BeginAlsoWriteFile{\jobname.tmp}%
}{%
\lst@EndWriteFile\egroup
\begin{center}%
\begin{minipage}{0.45\linewidth}%
\hbox to\linewidth{\box\z@\hss}
\end{minipage}%
\qquad
\begin{minipage}{0.45\linewidth}%
\setkeys{lst}{frame=none}%
\leavevmode \catcode`\^^M=5\relax
\small\input{\jobname.tmp}%
\end{minipage}%
\end{center}%
}
|