50 lines
2.6 KiB
TeX
50 lines
2.6 KiB
TeX
\addtolength{\hoffset}{-2.25cm}
|
|
\addtolength{\textwidth}{4.5cm}
|
|
\addtolength{\voffset}{-3.25cm}
|
|
\addtolength{\textheight}{5cm}
|
|
\setlength{\parskip}{0pt}
|
|
\setlength{\parindent}{0in}
|
|
|
|
%----------------------------------------------------------------------------------------
|
|
% PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
|
|
%----------------------------------------------------------------------------------------
|
|
|
|
\usepackage{blindtext} % Package to generate dummy text
|
|
\usepackage{charter} % Use the Charter font
|
|
\usepackage[utf8]{inputenc} % Use UTF-8 encoding
|
|
\usepackage{microtype} % Slightly tweak font spacing for aesthetics
|
|
\usepackage[english]{babel} % Language hyphenation and typographical rules
|
|
\usepackage{amsthm, amsmath, amssymb} % Mathematical typesetting
|
|
\usepackage{float} % Improved interface for floating objects
|
|
\usepackage[final, colorlinks = true,
|
|
linkcolor = black,
|
|
citecolor = black]{hyperref} % For hyperlinks in the PDF
|
|
\usepackage{graphicx, multicol} % Enhanced support for graphics
|
|
\usepackage{xcolor} % Driver-independent color extensions
|
|
\usepackage{marvosym, wasysym} % More symbols
|
|
\usepackage{rotating} % Rotation tools
|
|
\usepackage{censor} % Facilities for controlling restricted text
|
|
\usepackage{listings, style/lstlisting} % Environment for non-formatted code, !uses style file!
|
|
\usepackage{pseudocode} % Environment for specifying algorithms in a natural way
|
|
\usepackage{style/avm} % Environment for f-structures, !uses style file!
|
|
\usepackage{booktabs} % Enhances quality of tables
|
|
\usepackage{tikz-qtree} % Easy tree drawing tool
|
|
\tikzset{every tree node/.style={align=center,anchor=north},
|
|
level distance=2cm} % Configuration for q-trees
|
|
\usepackage{style/btree} % Configuration for b-trees and b+-trees, !uses style file!
|
|
\usepackage[backend=biber,style=numeric,
|
|
sorting=nyt]{biblatex} % Complete reimplementation of bibliographic facilities
|
|
\addbibresource{ecl.bib}
|
|
\usepackage{csquotes} % Context sensitive quotation facilities
|
|
\usepackage[yyyymmdd]{datetime} % Uses YEAR-MONTH-DAY format for dates
|
|
\renewcommand{\dateseparator}{-} % Sets dateseparator to '-'
|
|
\usepackage{fancyhdr} % Headers and footers
|
|
\pagestyle{fancy} % All pages have headers and footers
|
|
\fancyhead{}\renewcommand{\headrulewidth}{0pt} % Blank out the default header
|
|
\fancyfoot[L]{} % Custom footer text
|
|
\fancyfoot[C]{} % Custom footer text
|
|
\fancyfoot[R]{\thepage} % Custom footer text
|
|
\newcommand{\note}[1]{\marginpar{\scriptsize \textcolor{red}{#1}}} % Enables comments in red on margin
|
|
|
|
%----------------------------------------------------------------------------------------
|