Linked by Andy Roberts on Mon 6th Jun 2005 18:19 UTC
Permalink for comment
To read all comments associated with this story, please click here.
To read all comments associated with this story, please click here.
- Dell Launches Adamo 'For the Rest of Us'
posted 2009-12-08 - Canadian Recording Industry Faces Massive Infringment Claims
posted 2009-12-08 - Google Chrome for Mac Beta Released; Linux Beta Released Too
posted 2009-12-08 - One Third of Netbooks Ship with Linux
posted 2009-12-08 - Google Announces New Location-based Services
posted 2009-12-07 - Fusion Garage Announces Joo Joo, Tells Their Side of the Story
posted 2009-12-07 - Codezero Microkernel v0.2 Released
posted 2009-12-07 - Fusion Garage Plans Media Event, To Show Off CrunchPad
posted 2009-12-04 - Microsoft Amends Browser Ballot Proposal Once Again
posted 2009-12-04 - Ten Brands That Will Disappear in 2010
posted 2009-12-04 - Thunderbird 3 Released
posted 2009-12-09 - How to Build and Maintain a Tiered WSUS Infrastructure
posted 2009-12-08 - Building the Dream Google Smartbook
posted 2009-12-08 - Google Acquires AppJet
posted 2009-12-08 - The Machine SID Duplication Myth
posted 2009-12-08 - KDE Software Compilation 4.4 Beta Released
posted 2009-12-07 - Virt-Manager 0.8.1 Released
posted 2009-12-07 - Apple Quietly Bumps Some Mac Pro, Xserve BTO Options
posted 2009-12-04 - Intel's Nvidia Dispute Said to Be Focus of FTC Review
posted 2009-12-04 - Intel Shows Off 48-Core Chip
posted 2009-12-03
Recent Original Stories
- Window Maker: Your NeXT Window Manager posted 2009-12-03
- Programming: Notepad or Visual? posted 2009-11-29
- Episode 29: Warranty Void posted 2009-11-29
Recent Comments
Headlines
Random Comments
- RE: KDE posted 2005-08-22 06:32:43 by Anonymous
- RE[3]: From TFA.... posted 2005-11-29 17:01:58 by Tom K
- Too bad posted 2005-11-30 01:48:34 by ronaldst
- RE: Higher price? posted 2006-02-28 22:12:15 by CaptainPinko
- RE: typical Bill Gates posted 2007-04-14 08:51:14 by Soulbender
Random Stories
- Book Review: The Book of IMAP posted 2008-08-26
- Mandrake Linux 10 Preview posted 2004-01-06
- Gentoo Linux: Your Friendly Quick Installation Guide posted 2004-04-03
Random OS Link




I remember taking the course on systems/network performance. The first assignment was to write lots of formulas and to include some charts/graphics. This is where I had a hell of the time using Microsoft tools.
1. Setting up the math formulas can be pain in a neck. Suppose you need a greek letter. You have to find the menu option, select that greek letter. How about making sure the font is appropriate, the size is correct? Difficult!
2. Including the graphics: what if the graphic doesn't fit at the remaining space of the page? So it will be moved somewhere. But how can you control it? Difficult again.
So I had a hell of the time, and fortunately instructor told us to try LaTeX. I've tried and got hooked immediately, and been using it ever since. The beauty of LaTeX is that it is a mark-up language. You just put all the staff into the ascii file, and compile it, as described in the article, to get DVI.
So, for instance, to put nicely spaced formula for, say, the law of sines I write
[
sin (alpha + beta) = sinalphacosbeta + cosalphasinbeta
]
Here the pair [ and ] delimits the 'math mode'. Math mode uses different spacing. Next note that alpha and beta will be typeset as a greek letters alpha and beta. Finally, note that I don't write 'sin' and 'cos' but rather 'sin' and 'cos'. LaTeX will use different fonts for 'sin' and 'cos' and put some small amount of space between, say, 'sin' and 'alpha'. The formula is centered in the middle of the line, and there is some space left at the top and bottom. The end result is nice and readable formula.
A second example is incluing the graphic. In LaTeX you need to save your graphic as EPS (extended postscript) file, and then include it into the text, with the syntax --- somethin like this: (not precise, I don't remember exactly right now):
begin{figure}[htbp]
includegraphics{parameters like file name, and resizing}
title
end{figure}
Parameters [htbp] means 'here, top, bottom, page'. LaTeX try to include graphics 'here' (that is, where it is defined), next at the top of page, next at the bottom, and finally move to next page. LaTeX has very sophisticated algorithm to figure out the most appropriate location of the graphics, and also provides some knobs to tweak that algorithm to your liking. Since this is EPS format, you can provide resizing parameters on a fly, like make the end result 1.5 larger than the original EPS file.
So the bottom line: if you write some documents which involve lots of formulas and lots of graphics/charts you have to include, give LaTeX a try.