Reputation: 12397
My question is similar to this one.
Doxygen is outputing a warning while trying to generate docs for HTML:
warning: reached end of file while inside a f$ block! The command that should end the block seems to be missing!
I understand what this means, but I have lots of LaTeX in this particular document. Unfortunately, the line number of the error is just the last line in the file, and Doxygen doesn't output the the \f$
that opened the math mode.
Is there a way to get Doxygen to output this, rather than me having to scour the file for a missing or malformed \f$
? Something that might produce more verbose errors?
Upvotes: 1
Views: 1063
Reputation: 6707
When generating for Latex with Doxygen, it is indeed not obvious to spot errors. One solution is to get down into the latex
generated folder, and try these steps:
$ make
), and look for pdflatex compiler output,refman.tex
into some Latex IDE (say, Texstudio or equivalent) and try to compile from there.$ pdflatex -halt-on-error refman.tex
). This way, it will stop immediately at the error location.Upvotes: 1