wiki:LatexFormulaMacro

Version 20 (modified by figaro, 7 years ago) (diff)

Moved example to functional description

Render Latex formula to image

Notice: This plugin is unmaintained and available for adoption.

Description

This plugin allows you to render a mathematical formula as an image using Latex, dvips, and ImageMagick.

The images are named based on a SHA1 hash of the formula and parameters, so that images don't have to be regenerated every time they are viewed.

To create the image from the formula text, the following is performed:

  1. Create .tex file in temporary directory.
  2. Run latex on .tex file to produce .dvi file.
  3. Run dvips on .dvi file to produce .eps file.
  4. Run convert on .eps file to produce .jpg file.

By default, the Latex code is rendered in math mode. This allows for quick math expressions. There is also a built-in macro called "mat" which is used for formatting matrices, like this:

[[formula(\mat{R'\\G'\\B'} = \mathbf{A} \mat{R\\G\\B} + \mathbf{x})]]

which will produce the following formula:

Matrix equation

For more complicated usage, use the {{{ ... }}} format and the "nomode" command to disable the display-math mode:

  {{{
  #!formula
  #nomode
   A more complicated equation should be typeset in {\em displayed math\/} mode,
   like this:
   \[
   z \left( 1 \ +\ \sqrt{\omega_{i+1} + \zeta -\frac{x+1}{\Theta +1} y + 1} 
   \ \right)
   \ \ \ =\ \ \ 1
   \]
  }}}

and no formula will be displayed.

See also tagged:LaTeX

Bugs/Feature Requests

Existing bugs and feature requests for LatexFormulaMacro are here.

If you have any issues, create a new ticket.

defect

3 / 7

enhancement

4 / 5

task

2 / 2

Download

Download the zipped source from here.

Source

You can check out LatexFormulaMacro from here using Subversion, or browse the source with Trac.

Installation

Requirements:

  • Latex
  • dvips
  • convert (from the ImageMagic package)
  • ghostscript

General instructions on installing Trac plugins can be found on the TracPlugins page.

Recent Changes

17863 by rjollos on 2020-10-07 01:11:34
Revert r17862 on 0.11 directory

Refs #13887.

17862 by rjollos on 2020-10-07 01:10:00
Make compatible with Trac 1.2

Fixes #13887.

16975 by rjollos on 2017-11-18 10:06:44
Add metadata
(more)

Author/Contributors

Author: vgough
Maintainer: none (needsadoption)
Contributors:

Attachments (1)

Download all attachments as: .zip