-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 77281fa
Showing
5 changed files
with
152 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
\section{Introdução} | ||
Essa é a introdução do trabalho |