isel-latex-template-master
作者:
Roberto Carlos Petrisoru
最近上传:
3 个月前
许可:
Creative Commons CC BY 4.0
摘要:
Instituto Superior de Engenharia de Lisboa (ISEL)
\begin
Discover why 18 million people worldwide trust Overleaf with their work.
\begin
Discover why 18 million people worldwide trust Overleaf with their work.
% 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}