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
O dia que bosta valesse ouro.
Os pobres todos nascerão sem c*.
Grafitti.

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.