From 348e9e7ff7ca446d7e940ca6b117193177767332 Mon Sep 17 00:00:00 2001 From: Gerardo Marx Date: Mon, 19 Feb 2024 22:12:45 -0600 Subject: [PATCH] intro to latex 2024a sectionals --- main.tex | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 main.tex 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}