You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
584 B
TeX
33 lines
584 B
TeX
9 months ago
|
% Preamble
|
||
|
\documentclass{article}
|
||
|
% How is configurated the document
|
||
|
\usepackage{blindtext} %text dummy generator
|
||
|
\usepackage{babel}
|
||
|
\usepackage[utf8]{inputenc}
|
||
|
|
||
|
\title{My research project}
|
||
|
\author{Gerardo Marx Chávez-Campos}
|
||
|
%\institute{ITM}
|
||
|
|
||
|
% Document's body
|
||
|
\begin{document}
|
||
|
\maketitle %
|
||
|
\tableofcontents
|
||
|
|
||
|
\section{Introduction}
|
||
|
\blindtext
|
||
|
|
||
|
\subsection{Example}
|
||
|
\subsubsection{Example}
|
||
|
\subsection[short version]{A very large title}
|
||
|
\blindtext
|
||
|
\section{Methods}
|
||
|
\blindtext
|
||
|
\section{Results}
|
||
|
|
||
|
\section{Conclusion}
|
||
|
\blindtext{4}
|
||
|
|
||
|
This is a new paragraph Hello !!!
|
||
|
\end{document}
|