Re: [Doxygen-users] LaTeX environment cases: no line break

2013-12-23 Thread Jannick
Stefan Pendl gmail.com> writes: > > Am 23.12.2013 12:49, schrieb Jannick: > > I think this package is one of the basic ones for LaTeX documents with > > formulae. > Jannick, > > ... and that is the point, if you don't use formulas, you don't need

Re: [Doxygen-users] Include external latex documentation

2013-12-23 Thread Jannick
Jannick gmail.com> writes: > > Hi, > > I suspect this is an evergreen issue, but I could find anything in the > archive so far: > > How can I add external latex documents into the doxygen documentation? I > think this should be appear as some include statement in re

Re: [Doxygen-users] LaTeX environment cases: no line break

2013-12-23 Thread Jannick
Dimitri van Heesch gmail.com> writes: > > Thx for your quick reply. Meanwhile solved: LaTeX package amsmath required > > which could be added as the list of standard packages I believe. > > Why should that be done if it is only used by your particular formula? > Note that you can use EXTRA_PACK

Re: [Doxygen-users] LaTeX environment cases: no line break

2013-12-22 Thread Jannick
Dimitri van Heesch gmail.com> writes: > > \f[ > > x=\begin{cases} > > a & \varepsilon=0\\ > > b & \varepsilon=1\\ > > c & \varepsilon=2 > > \end{cases} > > \f] > > > > Happy to file a bug if needed. Just give me a shout. > > Yes, please do, and please attach a self-contained example (source+con

[Doxygen-users] LaTeX environment cases: no line break

2013-12-21 Thread Jannick
It appears the the LaTeX cases environment is not correctly compiled since there is no line break after the first line in the pdf output, but in the html output (using mathjax) there is. Here an example: \f[ x=\begin{cases} a & \varepsilon=0\\ b & \varepsilon=1\\ c & \varepsilon=2 \end{cases} \f]

[Doxygen-users] Dependencies across namespaces (with example)

2013-08-24 Thread Jannick
It appears that this posting did not make its way to gmane via email, thus posted again (directly via gmane): What is the config to have Doxygen show the call and caller graphs across namespaces? Here a sandbox example where the call edge A:fa -> B.fb should be generated by Doxygen. If this is no

Re: [Doxygen-users] class inheritance issue (with example)

2013-08-23 Thread Jannick
Jannick gmail.com> writes: > > Dimitri van Heesch gmail.com> writes: > > > > > Since member variable 'd' is (implicitly) private, make sure HAVE_DOT and > EXTRACT_PRIVATE are both set to YES. > > > > Regards, > > Dimitri > &g

Re: [Doxygen-users] class inheritance issue (with example)

2013-08-22 Thread Jannick
Dimitri van Heesch gmail.com> writes: > > > On Aug 22, 2013, at 13:37 , Jannick gmail.com> wrote: > > > Hi, > > > > given the .cpp used as single doxygen input > > > > struct D { > > int d; > > }; > > > &g

[Doxygen-users] class inheritance issue (with example)

2013-08-22 Thread Jannick
Hi, given the .cpp used as single doxygen input struct D { int d; }; class A { int a; }; class B : public A { int b; }; class C : public B { int c; D d; }; the class dependency diagram does not show the dotted arrow C -> D (cf. example http://www.ibm.com/developerworks/aix/library

[Doxygen-users] Include external latex documentation

2013-05-23 Thread Jannick
Hi, I suspect this is an evergreen issue, but I could find anything in the archive so far: How can I add external latex documents into the doxygen documentation? I think this should be appear as some include statement in refman.tex. Unfortunately I could not figure out what the statement in the c

Re: [Doxygen-users] [1.8.4/LaTeX] collision with \usepackage{attachfile}

2013-05-23 Thread Jannick
Albert gmail.com> writes: Dear Albert, > Dear Jannick, > Looks like a cache problem of your browser, the site you mentioned gives the right syntax:doxygen -w latex header.tex footer.tex doxygen.sty Albert Thank you. You are right

Re: [Doxygen-users] [1.8.4/LaTeX] collision with \usepackage{attachfile}

2013-05-22 Thread Jannick
Stefan Pendl gmail.com> writes: > > Am 19.05.2013 19:31, schrieb Jannick: > > Hi, > > > > with the today's version 1.8.4 the attachfile LaTeX package collides with > > the hyperref package. The error disappeared after moving > > \usepackage{attachfil

[Doxygen-users] [1.8.4/LaTeX] collision with \usepackage{attachfile}

2013-05-19 Thread Jannick
Hi, with the today's version 1.8.4 the attachfile LaTeX package collides with the hyperref package. The error disappeared after moving \usepackage{attachfile} after the hyperref block. I don't know to amend this without editing the refman.tex file every time. Any support is highly appreciated.

Re: [Doxygen-users] C++/VBA: Full function tree

2012-07-29 Thread Jannick
Jannick gmail.com> writes: > First of all thank you very much for all your effort in developing Doxygen. > Being a newbie this will help me a lot. > > A twofold question after having played around with the configs for days now: > > 1 - How can I make Doxygen draw a

[Doxygen-users] C++/VBA: Full function tree

2012-07-28 Thread Jannick
First of all thank you very much for all your effort in developing Doxygen. Being a newbie this will help me a lot. A twofold question after having played around with the configs for days now: 1 - How can I make Doxygen draw a full call tree of the functions (!) of a c++ program? What I could man