Perhaps this is overkill, but it can't hurt....

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36001 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2010-11-02 15:42:45 +00:00
parent 48ffa78c9a
commit 2a0fcda936

View File

@ -384,11 +384,12 @@ public:
PDFOptions & pdfoptions();
PDFOptions const & pdfoptions() const;
// do not change these values. we rely upon them.
enum MathOutput {
MathML = 0,
HTML,
Images,
LaTeX
HTML = 1,
Images = 2,
LaTeX = 3
};
/// what to use for math output. present choices are above
MathOutput html_math_output;