isel-latex-template-master
Author
Roberto Carlos Petrisoru
Last Updated
a month ago
License
Creative Commons CC BY 4.0
Abstract
Instituto Superior de Engenharia de Lisboa (ISEL)
% CREDITS:
% Comprehensive exam template for ECE Ph.D. students at Queen's University. by Jefferson Silveira
\documentclass[a4paper,12pt]{article}
\usepackage[left=30mm,top=30mm,right=30mm,bottom=30mm]{geometry}
\usepackage{etoolbox} %required for cover page
\usepackage{booktabs}
\usepackage[usestackEOL]{stackengine}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{bm}
\usepackage{graphicx}
\usepackage{subcaption}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{mathtools}
\usepackage{xcolor}
\usepackage{float}
\usepackage{hyperref}
\usepackage[capitalise]{cleveref}
\usepackage{enumitem,kantlipsum}
\usepackage{amssymb}
\usepackage[square,numbers,sort]{natbib}
\usepackage[ruled,vlined]{algorithm2e}
\usepackage{listings}
\usepackage{minted}
\usemintedstyle{emacs}
\usepackage[portuguese]{babel}
\renewcommand{\listingscaption}{Algorithm}
\renewcommand{\listoflistingscaption}{List of Algorithms}
\bibliographystyle{unsrtnat}
\hypersetup{
colorlinks,
linkcolor={black},
citecolor={blue!50!black},
urlcolor={blue!80!black}
}
\linespread{1}
\newtheorem{theorem}{Theorem}[section]
\graphicspath{{figures/}}
% ------------------- important:
\begin{document}
\pagenumbering{gobble} % remove page numbers (and reset to 1)
\input{front}
\tableofcontents
\newpage
%\listoffigures
%\newpage
%\listoftables
%\newpage
%\listofalgorithms % List of algorithms in pseudocode format
%\newpage
%\listoflistings % List of algorithms in code format
%\newpage
\pagenumbering{arabic} % Arabic page numbers (and reset to 1)
% Sections
\input{sections/introduction}
\input{sections/section1}
\input{sections/examples}
\input{sections/conclusion}
\clearpage % If you want the references in a separate page
\bibliography{bibliography}
\clearpage % If you want the appendix in a separate page
\appendix
\input{sections/appendix}
\end{document}