Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroboechat committed Jan 5, 2022
0 parents commit 77281fa
Show file tree
Hide file tree
Showing 5 changed files with 152 additions and 0 deletions.
Empty file added bibliography/bibliography.bib
Empty file.
Binary file added images/minerva.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
104 changes: 104 additions & 0 deletions main.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
% Define document as an article on A4 paper
\documentclass[a4paper]{article}

% Define paper size and margins
\usepackage[
a4paper,
total={6in, 8in},
margin=1in
]{geometry}

% Input and output encodint for UTF-8 characters
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

% Allow to use subfiles
\usepackage{subfiles}

% Allow to enumerate with redefinable labels
\usepackage{enumerate}

% Translation of some language specific commands (e.g. Abstract)
\usepackage[portuguese]{babel}

% Create bibliography
% \usepackage[
% backend=biber,
% style=numeric,
% sorting=none
% ]{biblatex}
% \addbibresource{./bibliography/bibliography.bib}

% PDF metadata and allow hyperlinks
\usepackage[
pdftex,
pdfauthor={Name Surname},
pdftitle={The Title},
pdfsubject={The Subject},
pdfkeywords={Some Keywords},
pdfproducer={LaTeX},
pdfcreator={pdfLaTeX}
]{hyperref}
% \hypersetup{
% colorlinks=true,
% linkcolor=blue,
% filecolor=magenta,
% urlcolor=cyan,
% baseurl={}
% }
\urlstyle{same}

% Allow to include graphics
\usepackage{graphicx}
\graphicspath{{./images/}}

% Use floats to contain objects in same page
\usepackage{float}

% Add fancy headers
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\fancyfoot{}
\lhead{Nome do Trabalho}
% \chead{}
% \rhead{}
% \lfoot{}
\cfoot{\thepage}
% \rfoot{}

% Allow multicolumn text
% \usepackage{multicol}

% Create code block with code highlighting
% \usepackage{minted}
% \usepackage{listings}

% Change abstract font size
% \usepackage{abstract}
% \renewcommand{\abstractnamefont}{\Large\bfseries}
% \renewcommand{\abstracttextfont}{\large}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\begin{document}

% Title page
\subfile{./sections/00_title}

% Table of contents
% \tableofcontents

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\subfile{./sections/01_introduction}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

% Bibliography
% \printbibliography

% List of figures
% \listoffigures

\end{document}
46 changes: 46 additions & 0 deletions sections/00_title.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
\begin{titlepage}
\begin{center}
\vspace{1.0cm}

\LARGE
ABC123 - Nome da Matéria

\vspace{1.5cm}

\Huge
Nome do Trabalho

\vspace{1.5cm}

\Huge
\begin{figure}[h]
\centering
\includegraphics[width=0.7\textwidth]{minerva.png}
\end{figure}

\vspace{2.5cm}

\large
\begin{itemize}
\item Nome Sobrenome - DRE 111198765
\begin{itemize}
\item \texttt{[email protected]}
\end{itemize}
\end{itemize}

\vspace{1.5cm}

% \begin{abstract}
% Esse é o resumo do trabalho
% \end{abstract}

\vspace{0.5cm}
\vfill
\vspace{1.0cm}

\large
Rio de Janeiro - RJ\\
01 de Janeiro de 2022 (2022.1)

\end{center}
\end{titlepage}
2 changes: 2 additions & 0 deletions sections/01_introduction.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
\section{Introdução}
Essa é a introdução do trabalho

0 comments on commit 77281fa

Please sign in to comment.