%
% Modelo para relatórios preliminares e de planeamento
% da dissertação de mestrado. LAR, DEMUA.
% Vitor Santos, Fev 2016, Fev 2017
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\documentclass[a4paper, 12pt]{scrartcl}   %option headings=small reduces heading sizes  (scrartcl, article, scrreprt, memoir, also interesting)

\usepackage[utf8]{inputenc} %Hopefully not in a windows jeopardized editor.
\usepackage[portuguese]{babel} %for the portuguese language specificities
\usepackage{microtype}  %better typographic quality
\usepackage[affil-it]{authblk} %tio inlcude better author and affiliation blocks
\usepackage{graphicx}   %to inlcude images
\usepackage{pdfpages}  %to include external PDF documents
\usepackage{lipsum}    %to introduce dummy text :-)

\addtokomafont{disposition}{\rmfamily}  %force headings in same font as main text (otherwise it is sans-serif in Koma-script document templates)

%------------------------------------

\usepackage{charter}

%--------------Including Biblatex package---------------------------
\usepackage[url=false,
    backend=biber,   % This can be set to either biber or bibtex. If references are missing just change back and forth between biber and bibtex..
    style=authoryear,
    sorting=ydnt]{biblatex}                 % Sorting in reverse order

\addbibresource{mybibrefs.bib}  %The file with related publications

%Next lines to prevent chapters to start on a new page (for report templates)
\usepackage{etoolbox} %to allow the usage of patchcmd below
\makeatletter
\patchcmd{\chapter}{\if@openright\cleardoublepage\else\clearpage\fi}{}{}{}
\makeatother

%Change global line spacing 
%\linespread{1.25}

% ------- Document specifics ---------------------------

\title{Cultivo Hidropónico Orbital do Cajú Oriental em Latitudes Árticas e da Tundra Efémera }
\ifdefined\subtitle
	\subtitle{Relatório preliminar de dissertação de mestrado}
\else
	\def\subtitle{Relatório preliminar de dissertação de mestrado}
\fi

\author{Phileas Fogg}
\affil{\small Universidade de Aveiro \\ Departamento de Engenharia Mecânica}
\date{}  %avoid including date, or comment for automatic date
%\date{\large Fevereiro de 2017} %or use an explicit date

%------------------------------------------------------------------

\begin{document}

\maketitle  %the classic title page maker
%\includegraphics[scale=0.5]{images/ualogo}

\begin{abstract}
\textbf{Resumo} - \lipsum[2]
\end{abstract}


\section{Introdução}
\lipsum[3-4]

\section{Trabalhos relacionados}
\lipsum[2-3]

\section{Tarefa A}
\lipsum[2-3]

\section{Tarefa B}
\lipsum[2-3]

\section{Conclusões}
\lipsum[2-3]

\section*{Referências}


\end{document}          
