Releases: szhorvat/MaTeX
Releases · szhorvat/MaTeX
v1.7.0
v1.6.3
v1.6.2
v1.6.1
v1.6.0
-
MaTeX
now threads over lists. A list is batch-processed using a single run of LaTeX, which is much faster than element-wise processing. Implemented by Andreas Ahlrichs.Note that this changes behaviour slightly. Previous versions of MaTeX compiled
MaTeX[{1, x^2, x/2}]
as a single expression. Now each element of the list is converted to a separate result. To restore the old behaviour, applyTeXForm
explicitly:MaTeX[TeXForm[{1, x^2, x/2}]
. -
Expressions with head
TeXForm
are now automatically handled. -
Bug fixes: Better handling of CR/LF line endings and character encodings.
v1.5.0
v1.4.0
- Separated
"Preamble"
and"BasePreamble"
options. The default preamble is now in"BasePreamble"
. The"Preamble"
option can be set without needing to worry about the default. - Package symbols are protected
- MaTeX now follows the standard Mathematica package structure. This means that it now consists of multiple files. Move the entire MaTeX directory (and not just
MaTeX.m
) into$UserBaseDirectory/Applications
to install.
v1.3.0
v1.2.0
- Added
ContentPadding
option:ContentPadding -> True
ensures that the the output height is at least one line height - Added
LineSpacing
option - The size of vertical borders is slightly different now: use
LineSpacing -> {0, 14.4}
to reproduce the older behaviour - Bug fixes in line height and baseline calculation