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$ II
E se Eva tinha optado pela cobra?
Facebook.

Theorems, Defintions, Axioms, Lemmas, Corollaries, Propostions

Examples, Exercises, Code Listings, etc.

LaTeX Listing: Theorems.tex. PDF   ZIP*  
\documentclass{article}

\usepackage{amsmath}
%proof environment
\usepackage{amsthm}

\newtheorem{Axiom}{Axioma}
\newtheorem{Theorem}{Teorema}[section]

\newtheorem
    {Definition}
    [Theorem]
    {Defini\c{c}\~ao}
\newtheorem
    {Proposition}
    [Theorem]
    {Proposi\c{c}\~o}
\newtheorem
    {Corollary}
    [Theorem]
    {Corol\'ario}
\newtheorem
    {Lemma}
    [Theorem]
    {Lema}

\newtheorem
    {Comment}
    [Theorem]
    {Comment}
    

\begin{document}

\section{Hello World}

   \begin{Theorem}
       My first theorem...
   \end{Theorem}
   \begin{Definition}
       My first theorem...
   \end{Definition}
   \begin{Theorem}
       My second theorem...
   \end{Theorem}

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

\end{document}
Messages:
0 secs.