\documentclass[12pt]{article} %---include different packages----------- %\usepackage[dvips]{graphics} %\usepackage{color} %\usepackage{graphicx} %\usepackage{latexsym} %\usepackage{amsfonts} %\usepackage{amssymb} %\usepackage{amsthm} %\input psfig.tex %----define page layout------------ %****************************newcommands********************* \newcommand{\be}{\begin{enumerate}} \newcommand{\ee}{\end{enumerate}} %****************************definitions********************* \def\title #1{\begin{center}{\Large {\bf #1}}\end{center}} \baselineskip=16pt \topmargin -1.5in \oddsidemargin -20 pt \evensidemargin -20 pt \setlength{\textheight}{750pt} \setlength{\textwidth}{450pt} %**************************begin document************************** \begin{document} \vspace*{4mm} \title{\LaTeX\, Examples: \\ Enumerate} \vspace*{10mm} \begin{enumerate} \item If, for example, you were making a test or a homework assignment, you can use the ``enumerate'' commands to write the questions. \item Each ``item'' will be given its own designated number. \item If you had a question with multiple parts, you can specify them by starting another ``enumerate'' command. \be \item This could be the first part of the question. \item This could be the second. \item And so on. \ee \end{enumerate} \end{document}