
Template to create reports, homework essays, papers, etc. for UACJ PhD Program

%Template for PhD reports By: Roberto Contreras
%Comment out two column if need two column writing
\documentclass[11pt]{article}
%\documentclass[11pt, twocolumn]{report}
%Package to generate latin text (Only for testing)
\usepackage{lipsum}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
%AMS packages for mathematical symbols
%package to include pictures and images
\usepackage{graphicx}
%Package to setup page layout
\usepackage[margin=1in, includefoot, includehead]{geometry}
%Uses hyperlinks in PDF (optional)
\usepackage[hidelinks]{hyperref}
%Header and Footer Stuff
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\fancyfoot{}
\fancyhead[R]{\myTitle}
\fancyfoot[L]{Doctorado en Tecnología}
\fancyfoot[R]{\thepage}
\renewcommand{\footrulewidth}{1pt}
%bibliography packages
% Document Variables 
\newcommand{\myTitle}{Enter Title}
\newcommand{\myName}{Enter Name}
\newcommand{\myClass}{Enter Name}
\newcommand{\myTecher}{Enter Name}
\newcommand{\myDate}{Enter Date}
%Document Start
\begin{document}
\begin{titlepage}
	\begin{center}
		\includegraphics[scale=0.75]{UACJ.png}\\
		\huge{\textbf{Universidad Autónoma\\de Ciudad Juárez}} \\
		[0.25in] 
		
		\textbf{\Large{Instituto de Ingeniería y Tecnología}}\\
		\Large{Departamento de Ingeniería Industrial y Manufactura}\\
		\Large{Doctorado en Tecnología}\\
		[1in]
		\line(1,0){400}\\
		[2mm]
		\textsc{\Large{\myTitle}} \\
		\line(1,0){400} \\
		[1in]
	\end{center}
	\begin{center}
		\textsc{\Large \myName}	\\
		\myClass\\
		\myTecher\\
		[1in]
		\myDate
	\end{center}
\end{titlepage}
%If need adding sections, please uncomment next lines
%Before TOC
\pagenumbering{roman}
\section*{Summary}
\addcontentsline{toc}{section}{\numberline{}Summary}
This is the summary section
\cleardoublepage
%If need table of contents, please uncomment next lines
%Table of contents
\tableofcontents
\thispagestyle{empty}
\cleardoublepage
\setcounter{page}{1}
%Start your text here
\pagenumbering{arabic}
\section{Introduction}
\lipsum[1]
\end{document}