Path: utzoo!attcan!uunet!ginosko!gem.mps.ohio-state.edu!rpi!batcomputer!cornell!uw-beaver!uw-entropy!mica!charlie From: charlie@mica.stat.washington.edu (Charlie Geyer) Newsgroups: comp.text Subject: Re: Redefining of Latex-commands. Message-ID: <2284@uw-entropy.ms.washington.edu> Date: 8 Oct 89 00:52:24 GMT References: <12425@boulder.Colorado.EDU> <25678@santra.UUCP> Sender: news@uw-entropy.ms.washington.edu Reply-To: charlie@mica.stat.washington.edu (Charlie Geyer) Distribution: comp Organization: UW Statistics, Seattle Lines: 34 Summary: Expires: Sender: Followup-To: In article <25678@santra.UUCP> f31958a@kaira.hut.fi (Mika Pekka Markus R{s{nen) writes: >I face the following problem: The \chapter-command of Latex uses too large >font size while making the chapter text and that doesn't fit to the style of >text. Is there any easy way to redefine the \chapter-command in such >a way that latex will use a other font size. I will looking for getting >some advise from someone smarter than I. The quick and dirty way to fix this -- assuming that you don't want any type that size in your document -- is to redefine \Huge and \huge to be smaller, like this \let\Huge=\LARGE \let\huge=\LARGE or, perhaps \let\Huge=\Large \let\huge=\Large \let\LARGE=\Large Between the \documentstyle and \begin{document} commands. Otherwise you will have to redefine the commands \@makechapterhead \@makeschapterhead that make the chapter headings and are defined in rep10.sty, bk10.sty, rep11.sty, and so forth. Copy the definitions into "foo.sty" and change the sizes to what you want. Anything in LaTeX can be redefined, but much of it only in a style file. So you have to make your own style file. See pages 85-87 in the LaTeX manual if you want to do this.