Path: utzoo!censor!geac!torsqnt!news-server.csri.toronto.edu!cs.utexas.edu!swrinde!zaphod.mps.ohio-state.edu!julius.cs.uiuc.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: Abolition of Math Italic? Message-ID: <1990Dec7.175830.20672@csrd.uiuc.edu> Date: 7 Dec 90 17:58:30 GMT References: <1990Dec7.050746.11274@athena.cs.uga.edu> Sender: news@csrd.uiuc.edu (news) Organization: UIUC Center for Supercomputing Research and Development Lines: 22 mcovingt@athena.cs.uga.edu ( Michael A. Covington) writes: > I know I can switch to regular italic in any particular > instance using \it or \mbox as the case may be, but what I'd like > is to make Math Italic go away, with one broad stroke. This is a broad stroke: \everymath{\it\textfont1=\the\font} \everydisplay=\everymath I think LaTeX doesn't use the \evrymath and \everydisplay itself, so this may be sufficient. Otherwise put the sequence of commands in a convenient small macro. But are you sure that you don't use any other symbols from the math italic font? Otherwise you could do this: \mathcode`a="0061 and so on for all letters. The "00 is the crucial part, the 61 is the hexadecimal ascii code for small 'a'. Victor.