%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 
% Base document for             articles 
% submitted to
% Matemàtiques. Revista Matemática de la 
% Universitat de València
%

\documentclass{rmuv}
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\begin{document}


%%%%% To be entered at RMUV
%
% Uncomment line below only when doing final typesetting,
%\finaltypesetting
% \journame{Matemàtiques}
% \articlenumber{}
% \yearofpublication{}
% \volume{}
% \cccline{}
% \received{}
% \revised{}
% \accepted{}

% communication line, use: \commline{Communicated by...}
% \commline{Communicated by... }

% \authorrunninghead{}
% \titlerunninghead{}

%\setcounter{page}{261} %%

%% <<== End of commands to be entered at RFMUV


%%  Authors, start here ==>>

%\draft % Optional, will cause a line at the bottom of each page
%% with the words `Draft' and the time and date that the article
%% was LaTeXed. Will also double space text.


\title{}

%\subtitle{}

\author{}
\affil{}

\email{}

%%%%%%%%%%%%
%% More than one author with separate affiliations:
%
% \author{Author name}
% \affil{Affiliation}
% \email{email address}
% \and

% \author{Author name}
% \affil{Affiliation}
% \email{email address}
%%%%%%%%%%%%

%% \thanks command:
%% Can use \thanks{} in title to have footnote number appear and
%% footnote at the bottom of the page. i.e.,
%% \title{This is the title\thanks{Supported by grant no....}}

%% In \authors or \affil, can use \thanks{} to have asterisk,
%%   dagger or double dagger appear
%%   and text appear at the bottom of the title page. i.e.,

%\authors{Smith and Garcia\thanks{Supported in part by
% a Subprogram of the...}}

%%%%%%%%%%%%


%optional
%% dedication line, (Dedicated to the memory of Garcia)
%\dedication{Dedicated to...}

\abstract{}

% text should be lower case, unless caps are necessary for meaning
\keywords{}

\begin{article}

%optional
% for those that like to start with section zero:
%\zerosection{Introduction}

Here is the body of the article.

%% End of article:

%% optional
% Appendices

% Appendix without title:
%\appendix{}

% Appendix with title:
%\appendix{Title}

% Appendix with letter:
%\appendix{B}

% Appendix with letter and title:
%\appendix{C}
%\appendixtitle{This is an appendix title}

%% optional
\begin{acknowledgment}
text...
\end{acknowledgment}

%% Not optional, necessary:
\begin{references}
\bibitem{supply citation label here}
Text of bib entry...
\end{references}

%% This command is necessary! ==>>
\end{article}
\end{document}



%% Convenient List of Commands, and instructions ==>>

%% Section headings:
\section{}
\subsection{}
\subsubsection{}
\paragraph{}

%% Can use \\ to break lines in section.

\section{}
\subsection{}
\subsubsection{}
\paragraph{}

%% Use section commands with * to get section title with no number:
\section*{}
\subsection*{}
\subsubsection*{}

%%% Math commands:

Math command, to make symbol bold that normally isn't made bold
with \mathbf{}, i.e.,
\begin{equation}\bbf{\omega}\end{equation}

Mathletter, for lettered equations
\begin{equation}
123 \mathletter{a}
\end{equation}

You may name any equation with a particular number using \specialeqnum{}
The following equation will follow the previous sequence.
\begin{equation}
345
\specialeqnum{102'}
\end{equation}

%% Figure and table captions:

\caption{Here is a short figure caption}
\letteredcaption{a}{This is a lettered caption.}
\continuedcaption
\letteredcontinuedcaption{b}

%% for figure caption with no text, will produce FIG. 1
\begin{figure}[ht]
\vskip12pt
\caption{}
\end{figure}

For side by side captions, you can use \sidebyside{}{},
within either figure or table:

 \begin{figure}[ht]
(optional space)
 \sidebyside{\caption{First Figure Caption.}}
 {\caption{Second Figure Caption.}}
 \end{figure}


%% Table needs \hline before column headers, after column headers and
%% at end of the table.
\begin{table}[ht]
\caption{Table caption should be on top of the table.}
%% way to get table to spread out to width of page:
\begin{tabular*}{\textwidth}{@{\extracolsep{\fill}}lcr}
\hline
one&two&three\cr
\hline
one&two&three\cr
one&two&three\cr
\hline
\end{tabular*}
\end{table}

May use \tablenotes{}
\begin{tabular*}{4in}{@{\extracolsep{\fill}}ccc}
...
\end{tabular*}
\tablenotes{
\qquad\llap{*} This is the first note.

\qquad\llap{**} This is the second note.

\qquad\llap{***} This is the third note.
}
\end{table}

%% Listing, may also nest lists:

\begin{itemize}
\item
Text...

\item
Text...
\end{itemize}

\begin{enumerate}
\item
Text...

\item
Text...
\end{enumerate}

\begin{Description}
\item[Heading]
Text...

\item[Heading]
Text...
\end{Description}

%Might use Description for Steps:

\begin{Description}
\item[Step 1.]
Text...

\item[Step 2.]
Text...
\end{Description}




\begin{extract}
This is an example of an extract.
This is an example of an extract.
This is an example of an extract.
\end{extract}

\begin{theorem}
This is a theorem
\end{theorem}

%% for theorem with title:
\begin{theorem}[Theorem Title]
This is a theorem
\end{theorem}

\begin{proof}
This is the proof.
\end{proof}

% For proof with title:
\begin{proof}[This is a special proof]
This is a special proof that includes a title.
\end{proof}

\begin{corollary}
This is the corollary.
\end{corollary}

\begin{proposition}
Here is a sample proposition.
\end{proposition}

\begin{lemma}
This is a lemma.
\end{lemma}

\begin{remark}
This is a remark.
\end{remark}

\begin{definition}
This is the way a definition looks.
\end{definition}

% Unnumbered Theorem Type Environments
% Looks like Theorem, but no counter:
\begin{proclaim}{Title}
text...
\end{proclaim}

% Title in italic, text in roman:
\begin{demo}{Title}
text...
\end{demo}




Algorithms:
May supply title in [] brackets.
Use \ to start line, \\ for blank line.
May \label{} and \ref{} a numbered line.

For numbered lines:
\begin{algorithm}
...
\end{algorithm}

For numbered lines, and title
\begin{algorithm}[Title]
...
\end{algorithm}

For unnumbered lines:
\begin{nonumalgorithm}
...
\end{nonumalgorithm}

or

\begin{nonumalgorithm}[Title of Algorithm]
...
\end{nonumalgorithm}

%%%%%%%%%%%%
%% Appendices

%% Appendix without title:
\appendix{}

%% Appendix with title:
\appendix{Title}

%% Appendix with letter:
\appendix{B}

%% Appendix with letter and title:
\appendix{C}
\appendixtitle{This is an appendix title}
Here is another appendix.
%%%%%%%%%%%%

\begin{acknowledgment}
text...
\end{acknowledgment}

Bibliography Citations:
Here is a test of bibliographic citations: \cite{andches},
\cite{lacey,spartaprob}.

\begin{references}
\bibitem{andches}
Anderson, Terry L., and Fred S. McChesney. (n.d.). ``Raid or Trade?
An Economic Model of Indian-WhiteRelations,'' Political Economy Research
Center Working Paper 93--1.

\bibitem{lacey}
Lacey, W.K. (1968). {\it History of Socialism}. Ithaca, NY: Cornell
University Press.

\bibitem{spartaprob}
Oliva, Pavel. (1971). {\it Sparta and Her Social Problems.} Amsterdam: Adolf
M. Hakkert.

\bibitem{greekcomm}
Zimmern, Alfred. (1961). {\it The Greek Commonwealth: Politics and Economics
in Fifth-Century Athens,}\/ 5th ed. New York: Galaxy Book, Oxford University
Press.
\end{references}
