Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!sdd.hp.com!zaphod.mps.ohio-state.edu!maverick.ksu.ksu.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: Novice Math Mode Question Message-ID: <1990Oct10.233815.20072@csrd.uiuc.edu> Date: 10 Oct 90 23:38:15 GMT References: <1990Oct10.043029.22597@math.lsa.umich.edu> Sender: news@csrd.uiuc.edu (news) Organization: UIUC Center for Supercomputing Research and Development Lines: 23 dbuchtal@math.lsa.umich.edu (Dave Buchthal) writes: >I'm struggling to learn TeX, and after grappling with my FM for >several days, I can't find the answer to a simple question. >I wish to display math formulae, as one does in display mode >in TeX ($$...$$), but I wish precise control over the position >of my formulae, as I get with math mode ($...$). I want to >be able to list formulae left justified on a page, or in columns. >Any suggestions? If you can write macros you should try the following approach: don't use $$...$$ but for instance \hbox{$\displaystyle ... $} which works for a lot of applications. You can then enclose two formulas next to each other, or shift the box by \parindent, or whatever. You'll get problems with \eqalign, tho', but you can solve these if you know sufficiently about alignments. Good luck. >Dave Buchthal Victor.