tony-blake / mathpix

Query the mathpix API to convert math images to LaTeX

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mathpix

Project Status: Active - The project has reached a stable, usable state and is being actively developed. CRAN_Status_Badge packageversion Last-changedate

Linux/Mac Travis Build Status AppVeyor Build Status codecov

Downloads GitHub forks GitHub stars Twitter

Installation

devtools::install_github("jonocarroll/mathpix")

Authentication

Obtain a Mathpix API key by e-mailing support@mathpix.com then set the following values in your ~/.Renviron file

MATHPIX_APP_ID=yourID
MATHPIX_APP_KEY=yourKEY

I have included a general API key with this package, but misuse of it will result in it being cancelled. There is also a trial API key which can be invoked using the trial = TRUE argument to some functions.

Usage

If you have an image you would rather properly encode in LaTeX, for example

then simply calling

mathpix("./integral.jpg")

(with the appropriate path to the file) will insert a LaTeX block into your document which will render what the image represents

$$
 \int \frac { 4 x } { \sqrt { x ^ { 2 } + 1 } } d x  
$$

which renders to

Even complicated, hand-drawn figures work

mathpix("./inst/matrix_3x3.jpg")
$$
 A = \left( \begin{array} { l l l } { 2 } & { 7 } & { 3 } \\ { 3 } & { 5 } & { 2 } \\ { 9 } & { 4 } & { 1 } \\ \end{array} \right)  
$$

If you also wish to generate the images (although rmarkdown will gladly do this for you) this can be achieved using

render_latex(latex, fileDir)

where latex is the LaTeX generated by mathpix() (or any other escaped LaTeX) and fileDir is the (optional) directory where you wish to save the image (by default, a temp file). This requires that you have pdflatex set up correctly and available on your machine.

API Documentation

Refer to http://docs.mathpix.com/

About

Query the mathpix API to convert math images to LaTeX


Languages

Language:R 100.0%