30th-siicusp
A short lecture of mine on my scientific initiation project for 30th SIICUSP
preamble.tex (1601B)
1 \documentclass[handout, notheorems, 9pt]{beamer} 2 \usepackage{amsmath, amssymb, amsthm, stmaryrd, gensymb} 3 \usepackage{mathtools, adjustbox} 4 \usepackage{enumitem, xfrac, xcolor, cancel, multicol, tabularx, relsize} 5 \usepackage{fancyvrb, hyperref, csquotes} 6 \usepackage{biblatex} 7 \usepackage{pgfplots, tikz, tikz-cd} 8 \usepackage{graphicx, wrapfig} 9 \usepackage[normalem]{ulem} 10 \usepackage{rank-2-roots} 11 12 % Configure graphics 13 \usetikzlibrary{calc, shadows.blur, shapes.geometric, patterns, arrows} 14 \pgfplotsset{compat=1.16} 15 16 % Get propper inequality symbols 17 \renewcommand{\leq}{\leqslant} 18 \renewcommand{\le}{\leqslant} 19 \renewcommand{\geq}{\geqslant} 20 \renewcommand{\ge}{\geqslant} 21 \renewcommand{\preceq}{\preccurlyeq} 22 \renewcommand{\succeq}{\succcurlyeq} 23 24 % Display long arrows instead of short ones 25 \renewcommand{\to}{\longrightarrow} 26 \renewcommand{\mapsto}{\longmapsto} 27 28 % Blockquotes 29 \let\blockquote\relax 30 \NewDocumentEnvironment{blockquote}{m O{Citação}} 31 {\begin{block}{#2}} 32 {\newline {\normalfont \rightline{--- #1}}\end{block}} 33 34 % Useful theorem definitions 35 \newtheorem*{theorem}{Teorema} 36 \newtheorem*{lemma}{Lema} 37 \newtheorem*{corollary}{Corolário} 38 \newtheorem*{proposition}{Proposição} 39 \theoremstyle{definition} 40 \newtheorem*{definition}{Definição} 41 \newtheorem*{example}{Exemplo} 42 43 % Beamer settings 44 \usetheme[progressbar=frametitle]{metropolis} 45 \setbeamertemplate{itemize items}{\textbullet} 46 47 % Configure how items look 48 \setenumerate[0]{label={\normalfont\arabic*.}} 49 \setitemize{label=\usebeamerfont*{itemize item}% 50 \usebeamercolor[fg]{itemize item} 51 \usebeamertemplate{itemize item}}