
Now all we have to do is dump x (generated when we build the paper It's definition looks something like this: /** * file CTheoreticalModel.h * author Joe Author * date * brief Definition file for CTheoreticalModel class */ # ifndef CTHEORETICALMODEL_H_ # define CTHEORETICALMODEL_H_ /** * brief Theoretical Model derived in section 2, on page 1 * * This is a detailed description of the model */ class CTheoreticalModel # endif /* CTHEORETICALMODEL_H_ */ Let's say you had some c++ class that implemented your model and
#Doxygen latex to pdf code#
Let's also assume that you've been good, and have been documenting your code Some of your classes (if it's object oriented) may implement certain models.įor an example, lets say this is your paper: In that case, some of your functions may implement certain equations. You go and write some code to simulate or demonstrate some elements of that

In particular, let's say that you're a grad student, in the process of writingĪ paper (and of course, you used LaTex… because, well, why wouldn't you?) and Perhaps, even many such papers or reports. In that case, you may actually want your documentation to reference a paper, However, let's say that (hypothetically of course) you're anĪcademic… and the code you write implements some theoretical design or model.

Library in your code and you want to include the library's documentation with

Is the ability to reference external documentation. So, anyone who uses Doxygen to document their code knows that it's pretty much
