commit 348e9e7ff7ca446d7e940ca6b117193177767332 Author: Gerardo Marx Date: Mon Feb 19 22:12:45 2024 -0600 intro to latex 2024a sectionals diff --git a/main.tex b/main.tex new file mode 100644 index 0000000..1b56d6d --- /dev/null +++ b/main.tex @@ -0,0 +1,32 @@ +% 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}