General ⇒ Is there any C++ LATEX Lib?
Is there any C++ LATEX Lib?
i am new to Latex.
I want to know do there existing some LATEX LIB that allow me to generate a image of customized equations in C++ environment?
Thank you.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Is there any C++ LATEX Lib?
There is a fairly good Java library for LaTeX called JLaTeXMath, and you could use the Java Native Interface (JNI) to have its classes be available to your C++ program. One nice thing is that it is self-contained; in particular it doesn't require LaTeX to be installed. Using JNI is very straightforward and might be the best way to go for your purposes.
Re: Is there any C++ LATEX Lib?
A very easy way to call Java from C++ is to use GIWS (it is intensively used in Scilab):
http://forge.scilab.org/index.php/p/giws/
Calixte