2013-03-17 23:22:25 +01:00
2013-03-17 23:22:25 +01:00
2012-10-03 21:24:22 +02:00
2012-10-03 21:24:22 +02:00
2012-06-18 14:38:42 -07:00
2012-10-03 21:23:52 +02:00
2013-03-17 23:22:25 +01:00

TeXDoclet

TeXDoclet is a Java doclet implementation that generates a LaTeX file from you Java code documentation.

The doclet is based on the doclet originally created by Greg Wonderly of C2 technologies Inc. and its revision by Soeren Caspersen of XO Software.

See http://doclet.github.com for more information.

Build

mvn clean install

Run

You have to specify that javadoc has to use another doclet than the default doclet by giving the following options to the javadoc call :

javadoc -docletpath <path to>TeXDoclet.jar \
	-doclet org.stfm.texdoclet.TeXDoclet \
	<TeXDoclet parameters>

Example :

javadoc -docletpath target/TeXDoclet.jar \
	-doclet org.stfm.texdoclet.TeXDoclet \
	-noindex \
	-tree \
	-hyperref \
	-texinit texdoclet_include/preamble.tex \
	-imagespath ".." \
	-output texdoclet_output/TeXDoclet.tex \
	-title "TeXDoclet Java Documentation" \
	-author "Greg Wonderly \and S\"oren Caspersen \and Stefan Marx" \
	-sourcepath src/main/java \
	-subpackages org

See createDocs.sh scripts in /examples subdirectory for more examples.

Print help (TeXDoclet + javadoc help) :

javadoc -docletpath target/TeXDoclet.jar -doclet org.stfm.texdoclet.TeXDoclet

or (TeXDoclet help only) :

java -jar target/TeXDoclet.jar -h

Previous versions

License

TeXDoclet is free software and available under the terms of BSD-2-Clause License. For more information see LICENSE.txt.

Description
No description provided
Readme 224 KiB
Languages
Java 99.6%
HTML 0.4%