Created
May 4, 2017 19:13
-
-
Save jonls/9be1f4dffface170aea6189063ed62c6 to your computer and use it in GitHub Desktop.
Generate PDF of XeTeX typeset math
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Generate PDF of XeTeX typeset math. | |
xelatex <<EOF | |
\documentclass[border=1pt]{standalone} | |
\usepackage{unicode-math} | |
\setmathfont{Cambria Math} | |
\begin{document} | |
$\displaystyle | |
$1 | |
$ | |
\end{document} | |
EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment