Skip to content

Instantly share code, notes, and snippets.

@dvnoble
Last active August 2, 2018 21:55
Show Gist options
  • Save dvnoble/9cda5f93f080a28b7c29a8fa702dfee5 to your computer and use it in GitHub Desktop.
Save dvnoble/9cda5f93f080a28b7c29a8fa702dfee5 to your computer and use it in GitHub Desktop.
Latex minimal template (pt-br)
\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@aqui.br}}
\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