mirror of
https://gitlab.com/netravnen/NetworkLabNotes.git
synced 2024-11-08 18:29:40 +00:00
223 lines
5.5 KiB
TeX
223 lines
5.5 KiB
TeX
% Latex Packages
|
|
\usepackage[T1]{fontenc}
|
|
\usepackage[utf8]{inputenc}
|
|
\usepackage{lmodern}
|
|
\usepackage{geometry}
|
|
\usepackage{listings}
|
|
\usepackage{color}
|
|
\usepackage[usenames,dvipsnames,svgnames]{xcolor}
|
|
\usepackage{graphicx}
|
|
\usepackage[numbers,square,sectionbib,comma,nonamebreak,elide]{natbib}
|
|
\usepackage{float}
|
|
\usepackage[english]{babel}
|
|
\usepackage{fancyhdr}
|
|
\usepackage{wrapfig}
|
|
\usepackage{array}
|
|
\usepackage{lipsum}
|
|
\usepackage{fancybox}
|
|
\usepackage{varwidth}
|
|
\usepackage{enumitem}
|
|
\usepackage{titlepic}
|
|
\usepackage[nottoc]{tocbibind}
|
|
\usepackage{url}
|
|
\usepackage[showisoZ]{datetime2}
|
|
%\usepackage{lipsum}
|
|
%\usepackage{titling}
|
|
\usepackage{transparent}
|
|
\usepackage{soul}
|
|
\usepackage{caption}
|
|
\usepackage{enumitem}
|
|
\usepackage{amssymb}
|
|
\usepackage{tikzsymbols} % http://ctan.math.utah.edu/ctan/tex-archive/graphics/pgf/contrib/tikzsymbols/tikzsymbols.pdf
|
|
\usepackage{textcomp}
|
|
\usepackage{parskip}
|
|
\usepackage{fourier}
|
|
\usepackage{array}
|
|
\usepackage{makecell}
|
|
\usepackage{inconsolata}
|
|
\usepackage{blindtext}
|
|
\usepackage{expdlist}
|
|
\usepackage{epigraph} % used to style quotes
|
|
\usepackage{titling} % makes available \thetitle \theauthor \thedate
|
|
\usepackage[toc,acronym,footnote,nomain]{glossaries} % Load the package with the acronym option
|
|
|
|
|
|
\bibliographystyle{unsrtnat} %styles list https://www.sharelatex.com/learn/Natbib_bibliography_styles
|
|
|
|
|
|
% Path where images are located relative
|
|
% to the file main.tex
|
|
\graphicspath{{img/}{figures/}}
|
|
|
|
|
|
% In which order to look after images in
|
|
% declared graphicspath{}'s
|
|
% 1. Low-quality JPG
|
|
% 2. Med-quality PNG
|
|
% 3. High-quality PDF
|
|
\DeclareGraphicsExtensions{.jpg,.png,.pdf}
|
|
|
|
|
|
\fancypagestyle{fancybook}{%
|
|
\fancyhf{}%
|
|
% Note the ## here. It's required because \fancypagestyle is making a macro (\ps@fancybook).
|
|
% If we just wrote #1, TeX would think that it's the argument to \ps@fancybook, but
|
|
% \ps@fancybook doesn't take any arguments, so TeX would complain with an error message.
|
|
% You are not expected to understand this.
|
|
\renewcommand*{\sectionmark}[1]{ \markright{\thesection\ ##1} }%
|
|
\renewcommand*{\chaptermark}[1]{ \markboth{\chaptername\ \thechapter: ##1}{} }%
|
|
% Increase the length of the header such that the folios
|
|
% (typography jargon for page numbers) move into the margin
|
|
\fancyhfoffset[LE]{6mm}% slightly less than 0.25in
|
|
\fancyhfoffset[RO]{6mm}%
|
|
% Put some space and a vertical bar between the folio and the rest of the header
|
|
\fancyhead[LE]{\color{GreenYellow}\thepage\hskip3mm\vrule\hskip3mm\leftmark}%
|
|
\fancyhead[RO]{\color{GreenYellow}\rightmark\hskip3mm\vrule\hskip3mm\thepage}%
|
|
}
|
|
\pagestyle{fancybook}
|
|
|
|
|
|
% Use the roman numeric system for pagenumbers
|
|
\pagenumbering{roman}
|
|
|
|
|
|
\input{commands} % Import user-defined commands
|
|
|
|
|
|
\input{layout/color} %user-defined colors
|
|
|
|
|
|
\lstdefinestyle{mystyle}{
|
|
language=TeX,
|
|
backgroundcolor=\color{backcolour},
|
|
commentstyle=\color{codegreen}\ttfamily,
|
|
keywordstyle=\color{magenta},
|
|
numberstyle=\tiny\color{codegray},
|
|
stringstyle=\color{codepurple},
|
|
basicstyle=\scriptsize\ttfamily,
|
|
breakatwhitespace=false,
|
|
breaklines=true,
|
|
captionpos=b,
|
|
keepspaces=true,
|
|
numbers=left,
|
|
showspaces=false,
|
|
showstringspaces=false,
|
|
showtabs=false,
|
|
tabsize=4,
|
|
abovecaptionskip=3em,
|
|
aboveskip=1em,
|
|
belowcaptionskip=5em,
|
|
belowskip=3em,
|
|
upquote=true,
|
|
numbersep=8pt,
|
|
rulecolor=\color{black},
|
|
}
|
|
|
|
|
|
\lstdefinestyle{plaintxt}{
|
|
language=TeX,
|
|
numbers=none,
|
|
frame=trBL,
|
|
frameround=fttt,
|
|
backgroundcolor=\color{white},
|
|
boxpos=c,
|
|
}
|
|
|
|
|
|
\lstdefinelanguage{cisco}{
|
|
keywords={
|
|
end,
|
|
hostname,
|
|
Interface int,
|
|
ip,
|
|
line,
|
|
login,
|
|
network,
|
|
no,
|
|
router,
|
|
sh,
|
|
show,
|
|
shut,
|
|
shutdown,
|
|
version,
|
|
vlan,
|
|
vrf,
|
|
},
|
|
keywordstyle=\color{blue}\bfseries,
|
|
ndkeywords={
|
|
addr,
|
|
address,
|
|
aux,
|
|
bgp,
|
|
con,
|
|
console,
|
|
dhcp,
|
|
eigrp,
|
|
g,
|
|
GigabitEthernet,
|
|
isis,
|
|
ospf,
|
|
ospfv3,
|
|
pool,
|
|
rip,
|
|
vty,
|
|
},
|
|
ndkeywordstyle=\color{darkgray}\bfseries,
|
|
identifierstyle=\color{black},
|
|
sensitive=false,
|
|
comment=[l]{!},
|
|
commentstyle=\color{purple}\ttfamily,
|
|
stringstyle=\color{red}\ttfamily,
|
|
}
|
|
|
|
|
|
\geometry{a4paper,margin=2cm}
|
|
\setlength{\columnsep}{1.5cm} %space between columns
|
|
\setlength{\headheight}{15pt}
|
|
\setlength{\footnotesep}{0.5cm} %space between footnotes:
|
|
\setlength{\skip\footins}{2cm} %space between the text body and the footnotes
|
|
\setlist[itemize,1]{leftmargin=\dimexpr 26pt-.2cm}
|
|
\setlist[itemize,2]{leftmargin=\dimexpr 26pt-.3cm}
|
|
\lstset{style=mystyle} %apply lst styling
|
|
|
|
|
|
\renewcommand{\familydefault}{\sfdefault}
|
|
|
|
|
|
\DeclareCaptionFormat{myformat}{%
|
|
% #1: label (e.g. "Table 1")
|
|
% #2: separator (e.g. ": ")
|
|
% #3: caption text
|
|
\begin{varwidth}{\linewidth}%
|
|
\centering
|
|
#1#2#3%
|
|
\end{varwidth}%
|
|
}
|
|
\captionsetup{format=myformat}% global activation
|
|
|
|
|
|
\newlist{todolist}{itemize}{2}
|
|
\setlist[todolist]{label=$\square$}
|
|
\usepackage{pifont}
|
|
\newcommand{\cmark}{\ding{51}}%
|
|
\newcommand{\xmark}{\ding{55}}%
|
|
\newcommand{\done}{\rlap{$\square$}{\raisebox{2pt}{\large\hspace{1pt}\cmark}}%
|
|
\hspace{-2.5pt}}
|
|
\newcommand{\wontfix}{\rlap{$\square$}{\large\hspace{1pt}\xmark}}
|
|
|
|
|
|
\renewcommand\theadalign{cb}
|
|
\renewcommand\theadfont{\bfseries}
|
|
\renewcommand\theadgape{\Gape[4pt]}
|
|
\renewcommand\cellgape{\Gape[4pt]}
|
|
|
|
\def\tsq#1{\textquotesingle{#1}}
|
|
\def\bsq#1{%both single quotes
|
|
\lq{#1}\rq}
|
|
|
|
|
|
\makeglossaries % Generate the glossary
|
|
|
|
|
|
\renewcommand*{\acronymname}{Abbreviations}
|