-
Notifications
You must be signed in to change notification settings - Fork 0
/
packages.tex
52 lines (50 loc) · 2.36 KB
/
packages.tex
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
\usepackage{lmodern} % font package.
\usepackage[T1]{fontenc} % define T1 charset for out files.
\usepackage[english]{babel} % italian latex typo conventions.
\usepackage[utf8]{inputenc} % italian symbols.
\usepackage{csquotes} % needed by babel.
\usepackage{amsmath} % math features.
\usepackage{amsthm} % math theorems.
\usepackage{amssymb} % math symbols.
\usepackage{amsbsy} % math bold.
\usepackage{mathtools} % math tools.
\usepackage{stmaryrd} % symbols for theoretical computer science.
\usepackage{hhline} % better horizontal lines in tabulars and arrays.
\usepackage{hyperref} % hypertext support.
\usepackage{nicefrac} % inline fractions.
\usepackage{lipsum} % generate dummy text.
\usepackage{listings} % embed programming language in latex.
\usepackage{lstautogobble} % useful with listings.
\usepackage{algorithm} % algorithm block.
\usepackage{algcompatible}
\usepackage{algpseudocode} % style for (autoimported) package algorithmicx.
\usepackage{float} % float management.
\usepackage{tikz} % diagrams, figures, flow charts.
\usepackage{enumitem} % enums.
\usepackage{xcolor} % colors management.
\usepackage{multicol} % multiple columns management.
\usepackage[
backend=biber,
style=numeric,
citestyle=numeric % numeric, alphabetic
]{biblatex} % bib management. %bibtex
%% CONFLICTING
% -----------
%\usepackage{fancyhdr} % extensive control of page headers and footers.
%% DISABLED
% --------
%\usepackage{makeidx} % for creating indexes.
%\usepackage{marginnote} % notes in the margin, even where \marginpar fails.
%\usepackage{xr} % references to other latex documents.
%\usepackage{subfiles} % multifile support.
%\usepackage{geometry} % interface for document dimension.
%\usepackage{graphicx} % enhanced support for graphics.
%\usepackage[toc,page]{appendix} % appendix.
%\usepackage{tcolorbox}
%\usepackage{minitoc} % table of contents per chapter.
%\usepackage{vmargin} % various page dimensions.
%\usepackage{titlesec} % change titles size.
%\usepackage{minted}
%\usepackage{tocvsec2} % numbering chapter fix.
%\usepackage{subcaption} % needed by nested figures.
%\usepackage{showframe} % DEBUG: shows page frames.