Plantilla FGUMA
Autor
Francisco Chicano
Last Updated
hace 2 años
License
Creative Commons CC BY 4.0
Resumen
This is a template for documents of the FGUMA online courses (www.fguma.es).
%--------------------
% Packages
% -------------------
\documentclass[11pt,a4paper]{article}
\usepackage[utf8x]{inputenc}
\usepackage[T1]{fontenc}
%\usepackage{gentium}
%\usepackage{mathptmx} % Use Times Font
\usepackage[pdftex]{graphicx} % Required for including pictures
\usepackage[spanish]{babel} % Swedish translations
\usepackage[pdftex,linkcolor=black,pdfborder={0 0 0}]{hyperref} % Format links for pdf
\usepackage{calc} % To reset the counter in the document after title page
\usepackage{enumitem} % Includes lists
\frenchspacing % No double spacing between sentences
\linespread{1.2} % Set linespace
\usepackage[a4paper, lmargin=3cm, rmargin=3cm, tmargin=2.5cm, bmargin=2.5cm]{geometry} %margins
%\usepackage{parskip}
\usepackage{fancyhdr}
\usepackage[all]{nowidow} % Tries to remove widows
\usepackage[protrusion=true,expansion=true]{microtype} % Improves typography, load after fontpackage is selected
\usepackage{lipsum} % Used for inserting dummy 'Lorem ipsum' text into the template
%-----------------------
% Set pdf information and add title, fill in the fields
%-----------------------
\hypersetup{
pdfsubject = {},
pdftitle = {},
pdfauthor = {}
}
%-----------------------
% Begin document
%-----------------------
\fancypagestyle{portada}
{
\fancyhf{}
\fancyfoot[C]{\includegraphics[width=\textwidth]{banner-fguma.jpg}}
\renewcommand{\headrulewidth}{0pt} % removes horizontal header line
}
\pagestyle{fancy}
\fancyhf{}
\fancyhead[R]{\thepage}
\fancyhead[L]{Optimización en CC mediante enfriamiento cuántico y aplicaciones}
\fancyfoot[C]{\includegraphics[width=\textwidth]{banner-fguma.jpg}}
\begin{document} %All text i dokumentet hamnar mellan dessa taggar, allt ovanför är formatering av dokumentet
\title{Paso de un modelo de Ising a QUBO y vicecersa}
\date{}
\maketitle
\thispagestyle{portada}
\section{Modelo de Ising}
\lipsum[1-3]
\newpage
%\fancyfoot[CO]{\includegraphics[width=19.6cm]{banner-fguma.jpg}}
\begin{equation}
\sum_{i=1}^{n} \frac{x^n}{n!}
\end{equation}
\subsection*{Subtitle}
\lipsum[4-5]
\end{document}