Tagged Questions

8
votes
5answers
934 views

Convert latex to html in Java or C++?

There are many tools for converting latex into html. I'm looking for a Java or C++ program to do this. It will need to run on multiple operating systems. The solution will be used on academic ...
7
votes
2answers
137 views

Perl-style quotes for long strings in C++

Is there a way in C++ to quote a string without having to escape with backslashes? For example, I would like a way to store some Latex code in a string, such as \documentclass{article}. I could do ...
6
votes
4answers
344 views

(La)Tex math parsing for C/C++

I would like to convert parse (la)tex math expressions, and convert them to (any kind of!) scripting language expression, so I can evaluate expressions. What libraries do you recommend ?
2
votes
2answers
483 views

Making PNG|jpeg from LaTeX in C or C++

I'm looking for a library (or a cleverer solution) in C or C++ that would make an image file (PNG|jpeg) from LaTeX code. The use of packages is a prerequisite. For now I'm thinking of compiling a ...
1
vote
0answers
102 views

Drawing control-theory block diagrams with Doxygen

I'm working on a C++ project in the field of automatics I'd like to start documenting. I'm rather decided for Doxygen. But, apart of documenting particular fields of data and drawing class-hierarchy ...
0
votes
1answer
85 views

Doxygen empty pages and bad margins

i got serious problems with doxygen generatin pdf file. First of all i got blank/empty pages I don`t know why i unchecked the option SEPARATE_MEMBER_PAGES (set to 0). I looked through the files and ...
0
votes
1answer
264 views

How to adjust \listing package width in Latex Editor (LEd)

I am trying to use the \listing package to include some .cpp files into my article. I add: \usepackage{listings} And then I use \lstinputlisting[language=c++]{File.cpp} The problem is that the ...