Rob MacLeod
One of the most annoying weaknesses of Apple Keynote, Microsoft Powerpoint and most other slide making programs I know is making equations that look as good as we are used to in LATEX. This set of tips will provide at least a couple pathways for this process. There are many others and I welcome additional suggestions and support code. All the tools I mention here are either ubiquitous or have equivalents that are.
The best way to handle equations on the Mac is to use this outstanding utility available at pierre.chachatelier.fr/programmation/latexit_en.php from Pierr Chatellier. The steps are easy and give you that one more bit of justification you were looking for to buy a Mac in the first place.
\begin{equation}
while ``Text'' works
better with \egnarray
type things.
If you are stuck without a Mac (my condolences) there are other options that are more tedious. The basic idea here is to use LATEX to make the equations and then grab them from the screen and convert them to transparent gif or png files so that they float over whatever background is in the Powerpoint slide. Here are the steps, which work only on a Unix computer as long as all the utilities required are available.
The program www.technion.ac.il/~zvikabh/software/iguanatex/ IguanaTex is billed as ``A Free LaTeX Add-In for PowerPoint''. I have not tried it but it comes recommended (Thanks Nik Hoepker).
Below is a solution from Scott Hoge, who is a LaTeX whiz and wanted to find a nice way to use a Linux or Windows computer for making equations.
Following the outline on Rob's page, one can generate the latex equations in a tex file, one equation per file. Then, run dvips with the -E option, to generate .eps output files. Then, use epstool www.cs.wisc.edu/~ghost/gsview/epstool.htm to add in a BMP or TIFF preview image to the eps file. Word/Powerpoint can the load the .eps file.
for example:
eq1.tex:
\documentclass{article} \pagestyle{empty} \begin{document} \[ A x =b \] \end{document} latex eq1.tex dvips -E -o eq1.eps eq1.tex epstool -t6p --gs-args "-dTextAlphaBits=4 -dGraphicsAlphaBits=4" --dpi 300 eq1.eps eq1_v2.epswill produce an eps file with a tiff6p preview image at 300 dots-per-inch, with 4 bit of anti-aliasing. (This could be scripted into a nice little tool, me thinks.)
For Word usage, the cool thing is that the bit map is used on the screen preview, but the eps file is used when sent to a postscript printer (or ghostscript).
Apparently, epstool has been around since 1995, as part of the gsview package.
If you have additional suggestions for this process or other programs to suggest for the conversions, please send me an email
Rob MacLeod
(macleod@cvrti.utah.edu)
This document was generated using the LaTeX2HTML translator Version 2008 (1.71)
Copyright © 1993, 1994, 1995, 1996,
Nikos Drakos,
Computer Based Learning Unit, University of Leeds.
Copyright © 1997, 1998, 1999,
Ross Moore,
Mathematics Department, Macquarie University, Sydney.
The command line arguments were:
latex2html -split 3 -no_white -link 3 -no_navigation -no_math -show_section_numbers -local_icons equations-ppt
The translation was initiated by Rob Macleod on 2012-06-23