Dear Iain,
On Thu, 16 May 2002, Iain Buchanan wrote:
> Greetings Again!
>
> I have traced a doxygen generated latex output crash to 'undefined control
> sequence'. Does anyone know why I am getting this response?
You get this LaTeX error message because
\hypertarget{group__GenMgrReg}{...}
is contained in the created .tex file but not defined. This macro is
a part of the hyperref package and creates a link in the .dvi and .pdf
file.
> It occurs in a
> file included in latex with the \input command. I've created that object by
> adding some groups to the source (which comes under the 'modules' tab in
> html output).
>
> Can someone tell me if this is a bug in which case I will single down the
> source to recreate it, or is it just because I'm using the wrong version of
> something???
Indeed, if you get this message someone should fix this. First you can
set
USE_PDFLATEX = NO
in the configuration file. Another solution is to add hyperref to
EXTRA_PACKAGES:
EXTRA_PACKAGES = hyperref
If this fails too (should not happen!!!), you can add the following
LaTeX macro to your .tex file:
\newcommand{\hypertarget}[2]{#2}
> Many thanks in advance,
> Iain
>
> options:
> MikTeX 2.1 + Ghostscript 7.04 + USE_PDFLATEX = YES
>
> output from latex (when used on the group__GenMgrReg.tex file):
>
> LaTeX2e <2001/06/01>
> Babel <v3.7h> and hyphenation patterns for english, french, german, ngerman,
> du
> mylang, nohyphenation, loaded.
> ! Undefined control sequence.
> l.1 \hypertarget
> {group__GenMgrReg}{
>
PS: LaTeX is a typesetting program and one of the best in the world. You
will not find a better program if you write mathematical articles or text
containing chess documentation, music, ...
Ref.: http://www.dante.de, http://www.tug.org.
Jens
|