Last active
August 2, 2018 21:55
-
-
Save dvnoble/9cda5f93f080a28b7c29a8fa702dfee5 to your computer and use it in GitHub Desktop.
Latex minimal template (pt-br)
This file contains hidden or 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
\documentclass[a4paper,11pt]{article} | |
\usepackage[T1]{fontenc} | |
\usepackage[utf8]{inputenc} | |
\usepackage{lmodern} | |
\usepackage[brazilian]{babel} | |
\usepackage{microtype} | |
\usepackage[alf]{abntex2cite} % adds abnt alfnumeric citation style | |
\title{Título aqui} | |
\author{Nome aqui,\\ | |
\texttt{[email protected]}} | |
\date{\today} | |
\begin{document} | |
\maketitle | |
%************************************************% | |
\section{Introdução} | |
\label{sec:intro} | |
%************************************************% | |
\section{Bibliografia Relevante} | |
\label{sec:biblio} | |
\bibliographystyle{abntex2-alf} | |
\bibliography{refs} | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment