SmtC: Show me the Code
Ole Peter Smith
Instituto de Matemática e Estatística
Universidade Federal de Goiás
http://www.olesmith.com.br

$\LaTeX$ III
Quando eu dou de comer aos pobres
Me chamam de santo
Quando eu pergunto por que eles são pobres
Me chamam de comunista
Dom Helder Câmera

Predefined Counters

  1. Sections:
    \thesection
    \thesubsection
    \thesubsubsection
  2. Chapters (book): \thechapter
  3. Page Number: \thepage
  4. Itemize or Enumerate:
    \theenumi
    \theenumii
    \theenumiii
    \theenumiv
    \theenumv
  5. Equations:
    \begin{equation}
    \end{equation}
  6. Theorems
  7. ...
LaTeX Listing: Theorems.tex. PDF   ZIP*  
\documentclass{article}


\newtheorem{Axioma}{Axioma}
\newtheorem{Teorema}{Teorema}[section]
\newtheorem
    {Definicao}
    [Teorema]
    {Definição}
\newtheorem
    {Proposicao}
    [Teorema]
    {Proposição}
\newtheorem
    {Corolario}
    [Teorema]
    {Corolário}
\newtheorem
    {Lema}
    [Teorema]
    {Lema}

\newtheorem
    {Commentario}
    [Teorema]
    {Comment}

\usepackage{amsthm}
    
\begin{document}


   \begin{Teorema}
       My first theorem...
   \end{Teorema}

   \begin{proof}
      Here's the proof...
   \end{proof}

\end{document}
Messages:
0 secs.