Is there a way to generate a latex document from my java sourcefile's documentation? I don't want to include LaTeX Elements in my documentation comments, I simply want to create LaTeX files instead of HTML.

Thanks

link|improve this question

67% accept rate
Do you want to write LaTeX in your Javadoc, or to produce a LaTeX document from your javadoc html website ? For the first, I think Harry solution fit your need. For the second ... – Riduidel May 3 '11 at 12:48
They mention java.net/projects/texdoclet, but how do I use/install it? – Konstantin Weitz May 3 '11 at 12:48
feedback

2 Answers

up vote 3 down vote accepted

Texdoclet seems to be what you need. As for how to use it: just like any other doclet.

link|improve this answer
Do you know the class I have to specify for the option? – Konstantin Weitz May 3 '11 at 13:00
@Konstantin: no, but it should be easy to find if you look inside the JAR. – Michael Borgwardt May 3 '11 at 13:02
It does't break, but all I get are html files. javadoc -d out -docletpath /home/konne/Downloads/texdoclet.jar * – Konstantin Weitz May 3 '11 at 13:15
@Konstantin: you have to use both the -doclet and the -docletpath options. The first is to tell javadoc which doclet class to use, the second tells it where to find that class. – Michael Borgwardt May 3 '11 at 13:20
Thanks it is kind of working. It tells me ! LaTeX Error: Environment texdocclass undefined.. But I guess you don't know how to solve this. – Konstantin Weitz May 3 '11 at 13:52
show 1 more comment
feedback

An alternative to Texdoclet is the ltxdoclet I created.

I think the main difference is that it also includes the source code, not only the Javadoc comments, though you can switch this off.

It is not very well documented on the github site - just download the code and do ant pdfdoku for an example output (ant latexdoku if you only want the LaTeX files). (It is documented in german, though.)

I really should add a readme file there.


For now, here is the jar file - download it somewhere, and then use

 javadoc -docletpath ltxdoclet.jar -doclet de.dclj.paul.ltxdoclet.DocletStart -help

to see a list of options available. (This will be in german, if you have no english locale. Prefix it with "LC_ALL=en_US" or similar on bash to get the english version, or have a look at help_en.txt instead if you don't know german.)

I'm working on a webpage with some more documentation, but I'm not sure when it will be ready.


Now we have a webpage, too. It links the jar file, and also as an example the javadocs when applied to itself.

link|improve this answer
Would like to use it but don't have ant around right now – Konstantin Weitz May 3 '11 at 14:20
@Konstantin: I uploaded a jar file for you. – Paŭlo Ebermann May 3 '11 at 18:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.