Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!zaphod.mps.ohio-state.edu!uwm.edu!ux1.cso.uiuc.edu!csrd.uiuc.edu!s41.csrd.uiuc.edu!eijkhout From: eijkhout@s41.csrd.uiuc.edu (Victor Eijkhout) Newsgroups: comp.text.tex Subject: Re: LaTeX logo in TeX Message-ID: <1991Mar20.213735.27656@csrd.uiuc.edu> Date: 20 Mar 91 21:37:35 GMT References: <66552@eerie.acsu.Buffalo.EDU> <66567@eerie.acsu.Buffalo.EDU> <15524@june.cs.washington.edu> Sender: news@csrd.uiuc.edu (news) Organization: UIUC Center for Supercomputing Research and Development Lines: 28 graham@cs.washington.edu (Stephen Graham) writes: >Simpler yet, find the definition of \LaTeX in latex.tex and stick >it in your document (or plain.tex, should you so wish and be able to >do so. Simpler, but not better. That is, I hope Karl has done a better job of programming this Logo than Leslie... >\def\L{{\rm L\kern-.36em\raise.3ex\hbox{\sc a}\kern-.15em > T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}} See, this switches to \rm. Which gives you a *roman* LaTeX logo in section headings that are otherwise *bold*. Ugly. Furthermore, it uses \sc, which may not exist at all sizes. See here a better way. This works as good as your font selection mechanism is, and you can probably extrapolate from it. \def\LaTeX{{\count0=\fam$\fam=\count0\relax L\kern-.36em\raise.3ex\hbox{$\fam=\count0\relax\scriptstyle A$} \kern-.15em \TeX$}} \LaTeX, \bf \LaTeX. \end Victor.