Tabla de Contenidos

LATEX

Básico

Estructura y formato de documento

\documentclass[<formato>]{<tipo>}
<cabecera>
\begin{document}
<cuerpo>
\end{document}

Donde…

Formato

Tipo

Cabecera

Cuerpo del documento

Estructurar el texto

Podemos estructurar el texto de la siguiente forma:

\section{ Summary of round table conclusions }
This is our second document. It contains a title and a section
with text.

Formato de texto

Agregar imágenes

\begin{figure}[htp]
\centering
\includegraphics[scale=0.4]{images/mcmc.png}
\caption{MCMC algorithm}
\label{mcmc}
\end{figure}

Apartados especiales

Bibliografía

\begin{thebibliography}{9}
 
\bibitem{lamport94}
  Leslie Lamport,
  \emph{\LaTeX: A Document Preparation System}.
  Addison Wesley, Massachusetts,
  2nd Edition,
  1994.
 
\end{thebibliography}

Cómo...

Formato del documento

Utilizar UTF8

Agregando a la cabecera…

\usepackage[utf8x]{inputenc}

Notas

Editores

Linux