Convert Mathematica cells to TeX, retaining formatting.
This package provides functions converting Mathematica cells to specific type of TeX code, compatible with mmacells package. Compilation of this TeX code results in output resembling FrontEnd appearance of converted cells.
You can find usage examples in answer to "How best to embed various cell groups into a latex project?" question on Mathematica Stack Exchange.
To install newest version of CellsToTeX package, in Mathematica version 10 or newer, evaluate following code:
PacletInstall@"http://github.com/jkuczm/MathematicaCellsToTeX/releases/download/v0.2.2/CellsToTeX-0.2.2.paclet"
Note that above requires allowing Mathematica to use the Internet.
To load CellsToTeX package evaluate:
Needs@"CellsToTeX`"
To uninstall CellsToTeX package evaluate:
PacletUninstall@"CellsToTeX"
If in your setup Mathematica doesn't have Internet access,
or you're using version older than 10, download
CellsToTeX-0.2.2.paclet
file and evaluate PacletInstall
with path to downloaded file:
PacletInstall@"path/to/downloaded/CellsToTeX-0.2.2.paclet"
To load CellsToTeX package evaluate:
Needs@"CellsToTeX`"
To uninstall CellsToTeX package evaluate:
PacletUninstall@"CellsToTeX"
To use package directly from the Web, without installation, evaluate:
Import@"https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/master/NoInstall.m"
This package contains extensive automatic test suite. Package is tested with all Mathematica major and minor versions from 8.0 to 11.0 on Linux. Since it doesn't contain any OS specific code it should work with above versions on all operating systems.
There's also no obvious reason for package not to work on older (6.0+) and newer (11.1+) versions of Mathematica, but it was not tested with these versions.
If you find any bugs or have feature request please create an issue on GitHub.
Feel free to fork and send pull requests.
All contributions are welcome!
This package is released under The MIT License.
Parts of code of this project are a derivative of code written by Leonid Shifrin in Exception checking and trapping techniques with Throw and Catch thread on Mathematica Stack Exchange, used under Creative Commons Attribution-ShareAlike 3.0 Unported License.
Parts of code of this project are a derivative of code written by John Fultz in answer to "How can I get the unchanged Box form of an arbitrary expression?" question on Mathematica Stack Exchange, used under Creative Commons Attribution-ShareAlike 3.0 Unported License.
Releases of this package will be numbered using Semantic Versioning guidelines.