Initial commit

This commit is contained in:
Tiago Garcia 2023-06-02 00:38:51 +01:00
commit ef4c5d5fc5
No known key found for this signature in database
GPG Key ID: F423E37A2415E160
17 changed files with 239 additions and 0 deletions

8
.idea/.gitignore vendored Normal file
View File

@ -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

6
.idea/dictionaries Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectDictionaryState">
<dictionary name="tiagorg" />
</component>
</project>

7
.idea/discord.xml Normal file
View File

@ -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>

9
.idea/misc.xml Normal file
View File

@ -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>

8
.idea/modules.xml Normal file
View File

@ -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>

9
.idea/report.iml Normal file
View File

@ -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>

View File

@ -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>

6
.idea/vcs.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>

BIN
report.pdf Normal file

Binary file not shown.

13
src/Makefile Normal file
View File

@ -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
src/bibliography.bib Normal file
View File

11
src/ch/conclusao.tex Normal file
View File

@ -0,0 +1,11 @@
%! Author = TiagoRG
%! GitHub = https://github.com/TiagoRG
\chapter{Conclusões}
\label{ch:conclusoes}
{
%%%
% Conteúdo da conclusão aqui
%%%
}

11
src/ch/introducao.tex Normal file
View File

@ -0,0 +1,11 @@
%! Author = TiagoRG
%! GitHub = https://github.com/TiagoRG
\chapter{Introdução}
\label{ch:introducao}
{
%%%
% Conteúdo da introdução aqui
%%%
}

9
src/defs/acronyms.tex Normal file
View File

@ -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}

10
src/defs/definitions.tex Normal file
View File

@ -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}

BIN
src/images/ua.pdf Normal file

Binary file not shown.

124
src/main.tex Normal file
View File

@ -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}