Initial commit
This commit is contained in:
commit
ef4c5d5fc5
|
|
@ -0,0 +1,8 @@
|
||||||
|
# Default ignored files
|
||||||
|
/shelf/
|
||||||
|
/workspace.xml
|
||||||
|
# Editor-based HTTP Client requests
|
||||||
|
/httpRequests/
|
||||||
|
# Datasource local storage ignored files
|
||||||
|
/dataSources/
|
||||||
|
/dataSources.local.xml
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ProjectDictionaryState">
|
||||||
|
<dictionary name="tiagorg" />
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="DiscordProjectSettings">
|
||||||
|
<option name="show" value="PROJECT_FILES" />
|
||||||
|
<option name="description" value="" />
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="MarkdownSettingsMigration">
|
||||||
|
<option name="stateVersion" value="1" />
|
||||||
|
</component>
|
||||||
|
<component name="ProjectRootManager">
|
||||||
|
<output url="file://$PROJECT_DIR$/out" />
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ProjectModuleManager">
|
||||||
|
<modules>
|
||||||
|
<module fileurl="file://$PROJECT_DIR$/.idea/report.iml" filepath="$PROJECT_DIR$/.idea/report.iml" />
|
||||||
|
</modules>
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module type="JAVA_MODULE" version="4">
|
||||||
|
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||||
|
<exclude-output />
|
||||||
|
<content url="file://$MODULE_DIR$" />
|
||||||
|
<orderEntry type="inheritedJdk" />
|
||||||
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
</component>
|
||||||
|
</module>
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
<component name="ProjectRunConfigurationManager">
|
||||||
|
<configuration default="false" name="Report" type="MAKEFILE_TARGET_RUN_CONFIGURATION" factoryName="Makefile">
|
||||||
|
<makefile filename="$PROJECT_DIR$/src/Makefile" target="" workingDirectory="" arguments="all">
|
||||||
|
<envs />
|
||||||
|
</makefile>
|
||||||
|
<method v="2" />
|
||||||
|
</configuration>
|
||||||
|
</component>
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="VcsDirectoryMappings">
|
||||||
|
<mapping directory="" vcs="Git" />
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,13 @@
|
||||||
|
.PHONY: all compile clean
|
||||||
|
|
||||||
|
all: compile clean
|
||||||
|
|
||||||
|
compile: main.tex bibliography.bib
|
||||||
|
pdflatex main.tex
|
||||||
|
biber main
|
||||||
|
pdflatex main.tex
|
||||||
|
pdflatex main.tex
|
||||||
|
mv main.pdf ../report.pdf
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f *.aux *.blg *.bbl *.toc *.log *.lof *.lot *.log.xml *.bcf *.out *.run.xml *.gz
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
%! Author = TiagoRG
|
||||||
|
%! GitHub = https://github.com/TiagoRG
|
||||||
|
|
||||||
|
\chapter{Conclusões}
|
||||||
|
\label{ch:conclusoes}
|
||||||
|
{
|
||||||
|
%%%
|
||||||
|
% Conteúdo da conclusão aqui
|
||||||
|
|
||||||
|
%%%
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
%! Author = TiagoRG
|
||||||
|
%! GitHub = https://github.com/TiagoRG
|
||||||
|
|
||||||
|
\chapter{Introdução}
|
||||||
|
\label{ch:introducao}
|
||||||
|
{
|
||||||
|
%%%
|
||||||
|
% Conteúdo da introdução aqui
|
||||||
|
|
||||||
|
%%%
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
%! Author = TiagoRG
|
||||||
|
%! GitHub = https://github.com/TiagoRG
|
||||||
|
|
||||||
|
\chapter*{Acrónimos}
|
||||||
|
\begin{acronym}
|
||||||
|
\acro{deti}[DETI]{Departamento de Eletrónica, Telecomunicações e Informática}
|
||||||
|
\acro{leci}[LECI]{Licenciatura em Engenharia de Computadores e Informática}
|
||||||
|
\acro{ua}[UA]{Universidade de Aveiro}
|
||||||
|
\end{acronym}
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
%! Author = TiagoRG
|
||||||
|
%! GitHub = https://github.com/TiagoRG
|
||||||
|
|
||||||
|
\newcommand{\titulo}{Report Title}
|
||||||
|
\newcommand\data{DATA}
|
||||||
|
\newcommand\autores{Tiago Garcia}
|
||||||
|
\newcommand\autorescontactos{(114184) tiago.rgarcia@ua.pt}
|
||||||
|
\newcommand\versao{VERSAO 1}
|
||||||
|
\newcommand\departamento{Dept. de Eletrónica, Telecomunicações e Informática}
|
||||||
|
\newcommand\empresa{Universidade de Aveiro}
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,124 @@
|
||||||
|
%! Author = TiagoRG
|
||||||
|
%! GitHub = https://github.com/TiagoRG
|
||||||
|
|
||||||
|
\documentclass{report}
|
||||||
|
\usepackage[T1]{fontenc} % Fontes T1
|
||||||
|
\usepackage[utf8]{inputenc} % Input UTF8
|
||||||
|
\usepackage[backend=biber, style=ieee]{biblatex} % para usar bibliografia
|
||||||
|
\usepackage{csquotes}
|
||||||
|
\usepackage[portuguese]{babel} %Usar língua portuguesa
|
||||||
|
\usepackage{blindtext} % Gerar texto automaticamente
|
||||||
|
\usepackage[printonlyused]{acronym}
|
||||||
|
\usepackage{hyperref} % para autoref
|
||||||
|
\usepackage{graphicx}
|
||||||
|
\usepackage{indentfirst}
|
||||||
|
\usepackage{float}
|
||||||
|
\usepackage{geometry}
|
||||||
|
|
||||||
|
\geometry{
|
||||||
|
paper=a4paper,
|
||||||
|
margin=45pt,
|
||||||
|
includefoot
|
||||||
|
}
|
||||||
|
|
||||||
|
\bibliography{bibliography}
|
||||||
|
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
%%
|
||||||
|
% Definições
|
||||||
|
\input{defs/definitions}
|
||||||
|
%
|
||||||
|
%%%%%% CAPA %%%%%%
|
||||||
|
%
|
||||||
|
\begin{titlepage}
|
||||||
|
|
||||||
|
\begin{center}
|
||||||
|
%
|
||||||
|
\vspace*{50mm}
|
||||||
|
%
|
||||||
|
{\Huge \titulo}\\
|
||||||
|
%
|
||||||
|
\vspace{10mm}
|
||||||
|
%
|
||||||
|
{\Large \empresa}\\
|
||||||
|
%
|
||||||
|
\vspace{10mm}
|
||||||
|
%
|
||||||
|
{\LARGE \autores}\\
|
||||||
|
%
|
||||||
|
\vspace{30mm}
|
||||||
|
%
|
||||||
|
\begin{figure}[h]
|
||||||
|
\center
|
||||||
|
\includegraphics{images/ua}\label{fig:ua-title-logo}
|
||||||
|
\end{figure}
|
||||||
|
%
|
||||||
|
\vspace{30mm}
|
||||||
|
\end{center}
|
||||||
|
%
|
||||||
|
\begin{flushright}
|
||||||
|
\versao
|
||||||
|
\end{flushright}
|
||||||
|
\end{titlepage}
|
||||||
|
|
||||||
|
%% Página de Título %%
|
||||||
|
\title{%
|
||||||
|
{\Huge\textbf{\titulo}}\\
|
||||||
|
{\Large \departamento\\ \empresa}
|
||||||
|
}
|
||||||
|
%
|
||||||
|
\author{%
|
||||||
|
\autores \\
|
||||||
|
\autorescontactos
|
||||||
|
}
|
||||||
|
%
|
||||||
|
\date{\today}
|
||||||
|
%
|
||||||
|
\maketitle
|
||||||
|
|
||||||
|
%\pagenumbering{roman}
|
||||||
|
|
||||||
|
%%%%%% RESUMO %%%%%%
|
||||||
|
\begin{abstract}
|
||||||
|
% Resumo de 200-300 palavras.
|
||||||
|
\end{abstract}
|
||||||
|
|
||||||
|
|
||||||
|
%%%%%% Agradecimentos %%%%%%
|
||||||
|
%\renewcommand{\abstractname}{Agradecimentos}
|
||||||
|
%\begin{abstract}
|
||||||
|
%Eventuais agradecimentos.
|
||||||
|
%\end{abstract}
|
||||||
|
|
||||||
|
\tableofcontents
|
||||||
|
\listoftables % descomentar se necessário
|
||||||
|
\listoffigures % descomentar se necessário
|
||||||
|
|
||||||
|
|
||||||
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
\clearpage
|
||||||
|
\pagenumbering{arabic}
|
||||||
|
|
||||||
|
|
||||||
|
%%%%%% INTRODUÇÃO %%%%%%
|
||||||
|
\input{ch/introducao}
|
||||||
|
|
||||||
|
|
||||||
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
|
% Capítulos
|
||||||
|
|
||||||
|
|
||||||
|
%%%%%% CONCLUSÕES %%%%%%
|
||||||
|
\input{ch/conclusao}
|
||||||
|
|
||||||
|
|
||||||
|
%%%%%% ACRÓNIMOS %%%%%%
|
||||||
|
\input{defs/acronyms}
|
||||||
|
|
||||||
|
|
||||||
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
\printbibliography
|
||||||
|
|
||||||
|
\end{document}
|
||||||
Loading…
Reference in New Issue