latex-setup

My personal LaTeX setup 🦁️⚙️

NameSizeMode
..
preamble-pt.tex 1497B -rw-r--r--
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
%                                 _     _       _            
%  _ __  _ __ ___  __ _ _ __ ___ | |__ | | ___ | |_ _____  __
% | '_ \| '__/ _ \/ _` | '_ ` _ \| '_ \| |/ _ \| __/ _ \ \/ /
% | |_) | | |  __/ (_| | | | | | | |_) | |  __/| ||  __/>  < 
% | .__/|_|  \___|\__,_|_| |_| |_|_.__/|_|\___(_)__\___/_/\_\
% |_|                                                        
% 
% Pablo (C) 2022

\documentclass[a4paper]{article}
\usepackage[total={6in, 9in}]{geometry}
\usepackage[exerciselabel=Exercício]{xexercise}
\usepackage[brazil]{babel}
\input{preamble-common}

% Configure how link look
\hypersetup{
  colorlinks,
  citecolor=black,
  filecolor=black,
  linkcolor=black
}

% Configure the enumerate environment to use bold roman numerals
\setenumerate[0]{label={\normalfont\bfseries(\roman*)}}

% Useful theorem definitions
\newtheorem{theorem}{Teorema}[section]
\newtheorem*{theorem*}{Teorema}
\newtheorem{lemma}{Lema}[section]
\newtheorem*{lemma*}{Lema}
\newtheorem{corollary}{Corolário}[section]
\newtheorem*{corollary*}{Corolário}
\newtheorem{proposition}{Proposição}[section]
\newtheorem*{proposition*}{Proposição}
\theoremstyle{remark}
\newtheorem*{note}{Nota}
\theoremstyle{definition}
\newtheorem{definition}{Definição}[section]
\newtheorem*{definition*}{Definição}
\newtheorem{example}{Exemplo}[section]
\newtheorem*{example*}{Exemplo}

% Translate \gcd and \lcm to portuguese
\let\gcd\relax
\DeclareMathOperator{\gcd}{mdc}
\let\lcm\relax
\DeclareMathOperator{\lcm}{mmc}