Skip to content
larismartins edited this page Mar 21, 2019 · 8 revisions

Bem vindos à wiki tese_lncc!

Dicas de Customição

Aqui apresentamos algumas dicas de customização.

Como mudar a cor dos hiperlinks

Basta procurar no arquivo tese_lncc.tex o comando hypersetup. Lá você pode trocar as cores e estilos dos vários tipos de links.

Adicione o comando hidelinks para que os links não sejam destacados de maneira alguma no texto.

Se quiser destacar apenas com caixas de marcação, basta mudar colorlinks=true para colorlinks=false.

Como mudar a língua principal do documento

Para colocar o documento em inglês, basta alterar a ordem das línguas em

  1. \PassOptionsToPackage{english,main=brazil}{babel} para \PassOptionsToPackage{main=english}{babel},
  2. \documentclass[...], deixando a última língua como english,
  3. \selectlanguage{brazil} para \selectlanguage{english}.

Como colocar Observação/Remark em destaque

% CONFIGURAÇÕES DE USUÁRIO % --- % --- % Theorems with box

\usepackage{mdframed} \newmdtheoremenv{boxRemark}{Remark}

\let\oldremark\remark \let\oldendremark\endremark \renewenvironment{remark} {\begin{mdframed}[nobreak=true]\boxRemark} {\endboxRemark \end{mdframed}} % ---

Numeração de acordo com capítulos

% --- % Teoremas em Ingles \theoremstyle{plain} \newtheorem{theorem}{Theorem}[chapter] \newtheorem{proposition}[theorem]{Proposition} \newtheorem{corollary}[theorem]{Corollary} \newtheorem{lemma}[theorem]{Lemma} \theoremstyle{definition} \newtheorem{definition}[theorem]{Definition} \newtheorem{axiom}[theorem]{Axiom} \theoremstyle{remark} \newtheorem{remark}[theorem]{Remark} % ---

Clone this wiki locally