From 7d58d7f478df33dad83cc04e9b5dc9b7774e2f0e Mon Sep 17 00:00:00 2001 From: gmarx Date: Tue, 24 Mar 2020 13:15:12 -0600 Subject: [PATCH] example of latex usage --- references.bib | 28 ++++++++++++++++++ sampleDocument.tex | 73 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 101 insertions(+) create mode 100644 references.bib create mode 100644 sampleDocument.tex diff --git a/references.bib b/references.bib new file mode 100644 index 0000000..7c02ea6 --- /dev/null +++ b/references.bib @@ -0,0 +1,28 @@ +@book{Romero-Serrano, +author = {Romero-Serrano, José Antonio.}, +pages = {254}, +publisher = {Instituto Politécnico Nacional}, +title = {Termodínamic Metalurgical y de los Materiales}, +year = {1998} +} + +@techreport{MassachusettsInstituteofTechnology, +author = {{Massachusetts Institute of Technology}}, +file = {:Users/gmarx/Library/Application Support/Mendeley Desktop/Downloaded/Massachusetts Institute of Technology - Unknown - Ellingham Diagrams.pdf:pdf}, +title = {{Ellingham Diagrams}}, +url = {http://web.mit.edu/2.813/www/readings/Ellingham_diagrams.pdf} +} + +@misc{UniversityofCambridgeReducing, +author = {{University of Cambridge}}, +title = {{DoITPoMS - TLP Library Ellingham Diagrams - Reducing agents}}, +url = {https://www.doitpoms.ac.uk/tlplib/ellingham_diagrams/reducing_agents.php}, +urldate = {2018-11-28} +} + +@misc{UniversityofCambridgeEllingham, +author = {{University of Cambridge}}, +title = {{DoITPoMS - TLP Library Ellingham Diagrams - The Ellingham diagram}}, +url = {https://www.doitpoms.ac.uk/tlplib/ellingham_diagrams/ellingham.php}, +urldate = {2018-11-29} +} \ No newline at end of file diff --git a/sampleDocument.tex b/sampleDocument.tex new file mode 100644 index 0000000..8dbcbd1 --- /dev/null +++ b/sampleDocument.tex @@ -0,0 +1,73 @@ +\documentclass[11pt,twocolumn]{article} +\usepackage[left=1.5cm,top=2.5cm, right=1.5cm,bottom=2.5cm]{geometry} +\usepackage{helvet} +\usepackage[utf8]{inputenc} +\usepackage[spanish]{babel} +\usepackage{graphicx} +\usepackage{blindtext} +\usepackage{tablefootnote} +\usepackage{amsmath} +\title{My Research Project Title by Explaining How, What and Why } +\author{Gerardo Marx Chávez-Campos} +\begin{document} + \maketitle + \tableofcontents + \section{Problem statement} + \blindtext[1] + \subsection{General introduction} + \begin{figure}[t!] + \centering + \includegraphics[width=2.5in]{example-image-a} + \end{figure} + \blindtext[1] + \subsection{The problem definition} + \blindtext[1] + \subsection{Other researchers solutions} + \blindtext[1] + \subsection{Proposed solution} + \blindtext[1] + \section{State of art review} + \blindtext[2] + \subsection{A detailed overview of research upon the topic} + In the \eqref{eq:powerSpectrum} is shown the power spectrum of $f(x)$ \cite{Romero-Serrano} : + \begin{equation} + f(x)=\sum_{k=0}^{k=200}a_k x_k + \end{equation} + + \begin{equation} + P(x)=\int_{t=0}^{\infty}f(x)dx \label{eq:powerSpectrum} + \end{equation} + \subsection{A comparative table} + \begin{table} + \caption{Texto \tablefootnote{Texto}} + content... + \end{table} + \subsection{Patents or models} + \subsection{Technical gap} + + \section{Proposed solution} + \subsection{introduction to the technical gap} + \subsection{Hypothesis} + \subsection{Objectives} + \subsubsection{General} + \subsubsection{Specific} + + \section{Materials and methods} + \subsection{Experimental setup} + \subsection{Data analysis or models} + \subsection{Standards} + + \section{Plan and activities} + \subsection{Gantt} + \subsection{Money} + + \section{Conclusions} + + \section{References} + + + \bibliography{references} + \bibliographystyle{plain} + + +\end{document} \ No newline at end of file