Inserting infinity symbol in Powerpoint 2010

microsoft-powerpoint

I am trying to include an infinity symbol in a Powerpoint 2010 file on a Windows 7 machine. I have tried copying symbols from the internet, which works fine until I try to increase the font. At that point the right-half of the symbol becomes much larger than the left half.

I have also tried using an infinity symbol from the MSWord 'character map'. That symbol is 221E in the Unicode (hex) section of the map. However, even with that symbol the size of the right-half is noticeably larger than the left-half in Powerpoint. Is that how the symbol should appear? If not, please suggest a way to obtain a symmetric infinity symbol in Powerpoint.

I realize that LaTeX might be the solution, but do not have LaTeX installed on this machine.

Perhaps I should simply take a screenshot of a suitable symbol and paste in a jpeg file of the symbol into Powerpoint.

Thanks for any other suggestions.

Best Answer

221e is the correct unicode value for the infinity math symbol (∞). It should be displayed correctly, given you use a font that contains the symbol.

It seems to be a bug either in the font you use or in PowerPoint itself. Since you tried different fonts, it might be a bug in PowerPoint.

Inserting a graphic

If you decide to insert a graphic, don't use a JPEG file. JPEGs are meant for photorealistic images only and produce ugly artifacts when used for text. Use a vector format instead, e.g. SVG. If everything else fails, fail back to a high resolution PNG, which is a pixel format. In contrast to JPEG it does not produce artifacts at character borders.

If you use LaTeX, then I would advice to use the standalone class. This class crops the image automatically. The resulting PDF file can then be converted to an SVG file e.g. using inkscape:

inkscape \
  --without-gui \
  --export-ignore-filters \
  --export-plain-svg=output.svg \
  input.pdf

Given that you choose a math font in LaTeX that matches your presentation font, this is the best result you can get in PowerPoint. And it's all vector graphics and scalable.

If you do this regularly, I would recommend to have a look at the LaTeX beamer class for presentations.

Related Question