\documentclass[11pt]{article}   % For Latex2e
\usepackage{amsthm, amsmath}   % For Latex2e
\textwidth=6in
\hoffset=-1.3cm
\textheight=20.5cm

\theoremstyle{plain}
% en castellano :
\newtheorem{teorema}{Teorema}[section]
\newtheorem{lema}[teorema]{Lema}
\newtheorem{proposicion}[teorema]{Proposici\'on}
\newtheorem{corolario}[teorema]{Corolario}
% in english :
\newtheorem{theorem}{Theorem}[section]
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{proposition}[theorem]{Proposition}
\newtheorem{corollary}[theorem]{Corollary}

\theoremstyle{definition}
% en castellano :
\newtheorem{definicion}[teorema]{Definici\'on}
\newtheorem{ejemplo}[teorema]{Ejemplo}
\newtheorem{algoritmo}[teorema]{Algoritmo}
% in english :
\newtheorem{definition}[theorem]{Definition}
\newtheorem{example}[theorem]{Example}
\newtheorem{algorithm}[theorem]{Algorithm}

\theoremstyle{remark}
% en castellano :
\newtheorem{nota}[teorema]{Nota}
% in english :
\newtheorem{remark}[theorem]{Remark}

\newenvironment{dem}{\noindent{\it Demostraci\'on}.}{\qed}

\title{TITULO}
\author{
Autor 1
\and 
Autor 2
\and 
etc ...
}
\date{}

\begin{document}
\maketitle 

\begin{abstract}
Sustituir este texto por el de su resumen en ingl\'es.
\end{abstract}

\section*{Introducci\'on}

Este documento es una muestra de un art\'{\i}culo que se
publicar\'a en las actas del E.A.C.A.'99.
Reemplazar el texto por el suyo propio
en castellano o en ingl\'es.
Poner la bibliograf\'{\i}a al final,
y a continuaci\'on las direcciones de los autores.

\section{T\'{\i}tulo secci\'on primera}

Texto secci\'on primera.

\section{T\'{\i}tulo secci\'on segunda}

Texto secci\'on segunda.

\section{Etc...}

\end{document}


