Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!uunet!deimos!eecea!khc From: khc@eecea.eece.ksu.edu (Ken Carpenter) Newsgroups: comp.text Subject: Re: Looking for style for numbering pages by chapter Summary: Can be done with simple LaTeX commands Message-ID: <916@eecea.eece.ksu.edu> Date: 30 Dec 89 05:01:21 GMT References: <915@eecea.eece.ksu.edu> Reply-To: khc@eecea.UUCP (Ken Carpenter) Distribution: usa Organization: Kansas State University, Manhattan Lines: 7 The way to get page numbering by chapter, which also gets included in the table of contents, is to put the following line just before the first \chapter command: \renewcommand{\thepage}{\thechapter-\arabic{page}} and then place the following command before each succeeding \chapter: \setcounter{page}{1} Sorry to have bothered the net with such a simple question.