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
| /* glpk.h (GLPK API) */ | |
| /*********************************************************************** | |
| * This code is part of GLPK (GNU Linear Programming Kit). | |
| * | |
| * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, | |
| * 2009, 2010, 2011, 2013, 2014 Andrew Makhorin, Department for Applied | |
| * Informatics, Moscow Aviation Institute, Moscow, Russia. All rights | |
| * reserved. E-mail: <[email protected]>. | |
| * |
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 | |
| $ |
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 chemical formula. | |
| xelatex <<EOF | |
| \documentclass[border=1pt]{standalone} | |
| \usepackage{unicode-math} | |
| \setmathfont{Cambria Math} | |
| \usepackage{chemformula} | |
| \setchemformula{font-spec=Cambria} | |
| \begin{document} | |
| \ch{$1} |
OlderNewer