On Mon, Aug 26, 2002 at 04:22:01AM +0800, Marvin T. Pascual wrote:
> On Mon, 2002-08-26 at 03:24, Renaud MICHEL wrote:
> >
> > > How can I change the parenthesis to a dot right beside the number?
> > 
> > Just redefine them both
> > \renewcommand{\labelenumi}{\arabic{enumi}.}
> > \renewcommand{\labelenumii}{\labelenumi\arabix{enumii}.}
> 
> I got errors when I changed the previous ERT commands with the commands
> stated above.

Because there is a typo there: \arabix instead of \arabic.

PS: A better way to change the enumarate style is is to do the following:
(this is needed only if you use references to labels in the list)
  \renewcommand{\theenumi}{\arabic{enumi}}
  \renewcommand{\theenumii}{\arabic{enumii}}
  \newcommand\labelenumii{\theenumi.\theenumii}
  \renewcommand\p@enumii{\theenumi.}

> > > > Redefine the command \contentsname
> > > > \renewcommand{\contentsname}{Table of Contents}
> > >
> > > I did it already but still it doesn't work.  Any other ideas?
> 
> Nothing happens.

Use
\usepackage{babel}
\addto\captionsenglish{
  \renewcommand{\contentsname}{Table of Contents}
}

(replace the string english by the language you use in the document)

Reply via email to