Ok sorry. I'm starting with latex.!
I attached the .sty file!
I wrote this thing to have the pdf page that I attached previously:
Code: Select all
%=================================================================
% This template is based on IMRT Latex template by Eric A. Mueller
%=================================================================
\documentclass[10pt,twoside,a4paper]{report}
\usepackage[mt,hs,english]{ethasl} % New styles and commands
% Options: bt/mt: Bachelorthesis/Masterthesis
% fs/hs: Frühlingssemester/Herbstsemester
% german/english: Deutsch/English
% \includeonly{} % Quick formatting
% \usepackage[draft]{graphicx} % Quick formatting
\usepackage{a4} % Paper size
\usepackage[latin1]{inputenc} % Keybord settings
\usepackage{amsmath} % Additional math functionality
\usepackage{amssymb} % Additional math functionality
\usepackage{graphicx} % EPS figures
\usepackage[dvips]{epsfig} % EPS figures
\usepackage{float} % Placement of floating objects
\usepackage{fancyhdr} % Headings
\usepackage{rotating}
\usepackage{multirow}
\usepackage{url}
\usepackage{colortbl}
\usepackage{ifpdf}
%\usepackage{setspace}
%\usepackage{subfig}
\usepackage{hyperref}
\usepackage{color}
\definecolor{black}{rgb}{0,0,0}
\definecolor{white}{rgb}{1,1,1}
\newcommand{\hlight}[1]{\colorbox{yellow}{#1}}
\definecolor{darkred}{rgb}{0.5,0,0}
\definecolor{darkgreen}{rgb}{0,0.5,0}
\definecolor{darkblue}{rgb}{0,0,0.5}
\hypersetup{colorlinks
,linkcolor=black
,filecolor=black
,urlcolor=black
,citecolor=black
}
\usepackage{caption}
\ifpdf
\usepackage[update]{epstopdf}
\else
\fi
% \usepackage{german} % German language
% \usepackage{ae} % German specials
%\ifx\pdfoutput\defined
\usepackage{hyperref}% generates colored links
% in pdf file
\hypersetup{
bookmarks = true,
colorlinks = true, % false: boxed links; true: colored links
linkcolor = black, % color of internal links
citecolor = green, % color of links to bibliography
filecolor = magenta, % color of file links
urlcolor = cyan % color of external links
}
%\usepackage{subcaption}
% \usepackage[colorlinks,hyperindex]{hyperref}
% \usepackage[pdftex]{graphicx}
% \DeclareGraphicsExtensions{.png, .jpg, .pdf}
% \graphicspath{{pics/}}
%\else
% \usepackage[dvips]{graphicx}
% \DeclareGraphicsExtensions{.eps}
% \graphicspath{{pictures/}}
%\fi
%---------------------------------------------------------------------------
\setlength{\parindent}{0em} % Disable parindent
\rhead[\thepage]{\nouppercase{\rightmark}} % Special headings
\lhead[\nouppercase{\leftmark}]{\thepage} % Special headings
\cfoot{} % Special headings
%---------------------------------------------------------------------------
\title{Modeling the effect of wind on a Swarm of Quadrotors}
%\subtitle{bla bla bla}
\studentA{Fabrizio Schiano}
\supervisionA{Javier Alonso Mora \newline Konrad Rudin \newline Paul Beardsley}
\supervisionB{Bruno Siciliano}
\supervisionC{Roland Siegwart}
%===========================================================================
\begin{document}
%---------------------------------------------------------------------------
% Title page
\maketitle
\pagestyle{plain}
\pagenumbering{roman}
%---------------------------------------------------------------------------
% Preamble
\include{preamble}
\pagestyle{headings} % Default headings
\pagestyle{fancy} % Special headings
\pagenumbering{arabic}
%---------------------------------------------------------------------------
% Chapters
\include{introduction}
\include{chapter}
% \include{}
% \cleardoublepage
% ...
%
%---------------------------------------------------------------------------
% Appendix
\appendix
\include{appendix}
%
%---------------------------------------------------------------------------
% Literature
% \cleardoublepage
\bibliographystyle{unsrt}
\bibliography{bib/references}
% \cleardoublepage
% \include{bibliography}
%---------------------------------------------------------------------------
\end{document}
%===========================================================================