Help get this topic noticed by sharing it on Twitter Twitter, Facebook Facebook, or email.
jonas.einarsson
indifferent I’m looking forward to real latex support

How to: Latex in Prezi while waiting for real latex support

While waiting for official latex support, I do the following.

Create a tex-file like this:

\documentclass[12pt,a4paper,notitlepage]{article}
\usepackage{amsmath}
\usepackage[active,pdftex,displaymath,tightpage]{preview}
\usepackage[pdftex, ignoreall, textwidth=5cm]{geometry}
\begin{document}
\pagestyle{empty}
\[
\int_0^\infty x\arctan x \mathrm{\,d}x = \textrm{???}
\]
\end{document}

and compile it with pdflatex. This will render you a pdf that is convenient to include in your Prezi.

Here's a test prezi showing the result: http://prezi.com/fuvyh3amhfjr/

The main point of this is of course that the equations are vector graphics and thus nicely zoomable by Prezi, as opposed to making bitmap equations.

Two notes:
This is the minimal tex - use whatever packages you need to get your work done. If you do not want math specifically, use environment 'preview', see manual of the preview package for details.

To not get full page width I use the geometry package (see line 4) and manually specify image width, you will have to change this according to your content, or exclude the line and live with full width whitespace. If anyone figures out a nice way to get around this, please write a line here. For now, just adapt the textwidth=5cm to whatever width you need..
13 people like
this idea
+1
Reply