StartingPoint RecentChanges

FeatureList

x^23 --> $x^{23}$

::Automatic addition of {}s and $s around some subscripts and superscripts.

::Automatic addition of $$s around math mode symbols, and around single characters on either side of them.

::Efficient matrix format, with columns separated by whitespace, and rows delimited by semicolons.

::Transposes matrices written in the form [...]'. Among other things, this allows you to write column vectors as [i j l]'.

***<pre>[[[2,2,"a_{$i,$j}"]]]

--->

\left[ \begin{array}{ll} a_{1,1} & a_{1,2} \\ a_{2,1} & a_{2,2} \end{array} \right]

</pre>

***<pre>[[[3,3, sub Ack { my($M, $N) = @_; return( $N + 1 ) if ($M == 0); return( Ack($M - 1, 1) ) if ($N == 0); Ack($M - 1, Ack($M, $N - 1)); }

return Ack($i,$j); ]]]

--->

\left[ \begin{array}{lll} 3 & 4 & 5 \\ 5 & 7 & 9 \\ 13 & 29 & 61 \end{array} \right] </pre>

::Scriptable matrices allow you to compactly write matrices whose entries are the result of evaluating an embedded Perl script at each matrix entry. (to use this feature, you must use the -e flag like this: easylatex -e input_filename.txt).

--->

\begin{align*} a \\b \\c \\d \end{align*} </pre>

::Adds \\ (linefeeds) to multi-line math mode regions.

--->

\begin{align} 1 + 1 &=& 2 \\1 &=& 2 - 1 \\0 &=& 2 - 1 - 1 \\0 &=& 2 - 2 \end{align}

</pre>

::Adds \\s and column formatting (&s) to lists of equations

::Formats numerical fractions