| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
In pull request #6832 a fix was made for section captions that ran into the margins. For sections that should not appear in the the TOC (i.e. `*`-ed sections) this led to showing a `*`, this has been corrected.
|
|\
| |
| | |
Indentation of paragraphs in LaTeX
|
| |
| |
| |
| |
| | |
Looking in the documentation at e.g. the commands `\class` or `\image` we see that the start of some paragraph titles in LaTeX is a bit to the left of the normal indentation.
Corrected the leftmargin setting (consistent with other settings).
|
|/
|
|
|
|
| |
In the PDF version of the doxygen manual we see that for the `\image` command the chapter title the text runs into the margin (due to an unbreakable part).
With this fix the problem is solved.
(see also: https://tex.stackexchange.com/questions/474055/section-title-running-into-margin and , for the ifstar part, https://tex.stackexchange.com/questions/376375/using-ifstar-to-define-a-star-variant)
|
|
|
|
|
|
|
|
| |
Some small improvements in the different formats based on the problems signaled with the issue
- doxygen.css make exceptions in line with other tables (i.e. the appearance of the name of the exception)
- doxygen.sty, rtfdocvisitor.cpp between items in e.g. Precondition, Postcondition, Note place a paragraph distance (like in main text)
- docbookvisitor.cpp handle title of Rcs and User sections correctly
.
|
|
|
|
| |
In LaTeX the `<hr>` was implemented as a"new paragraph", now as a horizontal line.
|
|\
| |
| |
| | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_inline_image
|
| |
| |
| |
| | |
Create the possibility of inline images with the `\image` command by means of the option `inline`.
|
|\ \
| |/
|/|
| | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_667993
|
| |
| |
| |
| | |
Added underline possibility and strike through possibility for the different output formats insofar it is possible (other similar possibilities are not always possible for all output formats either).
|
| |
| |
| |
| |
| |
| | |
- In case a corrupted character is found LaTeX shows this as a U+FFFD , the character in the code is 0xef 0xbf oxbd. This character was in the LaTex Code already replaced with `\ucr` but this didn't work properly with TexLive 2015 and the code is now detected i the doxygen code and directly replaced `\ucr`
- other special characters are now handled, in a way that works in all engines, by means of `\newunicodechar`
- the size of the `\ucr` was not set in case it was used in 'running text' and not inside e.g. a code section.
|
|\ \
| |/
|/| |
Small problems when having code in LaTeX output
|
| |
| |
| |
| | |
Also part in doxygen.sty made valid for plain latex
|
|/
|
|
|
|
| |
When code is used inside a problem occurs with \discretionary
- Inside a table \discretionary is disabled when code is used.
- \newline should not be appended to a code line (is already implicitly done by the command).
|
|
|
|
|
| |
Removing the automatic line breaking after 108 characters (also didn't work properly with e.g. executive paper size).
Due to new implementation some character encodings had to be changed as well as well as handling of the single quote in formulas.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Doxygen test 54, when generating LaTeX / PDF, gave the error message:
Runaway argument?
Second paragraph of the param description. \end {DoxyVerb} \\ \hline \ETC.
! Paragraph ended before \verbatim@ was complete.
<to be read again>
\par
l.41 \end{DoxyParams}
The tabu package documentation (and Stack Exchange LaTeX) give some hints in to the problem about the verbatim command in the different environments and has been implemented here for the longtabu table.
|
|
|
|
| |
in PDF output Data Fields
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
In case an image is included in a table and this image has a caption the generation of a PDF stops with the message:
! Misplaced \noalign.
\caption ->\noalign
\bgroup \@ifnextchar [{\egroup \LT@c@ption \@firstofone ...
l.45 \end{longtabu}
This problem has in general been described in: http://tex.stackexchange.com/questions/85919/adding-a-caption-to-a-graphic-inside-a-longtable
In this patch the suggestion from this reference is implemented by defining \doxyfigcaption and using this where a caption is required.
|
|
|
|
| |
overflows
|
| |
|
|\ |
|
| |
| |
| |
| | |
Too be consistent between HTML, LaTeX and RTF the items should all be left aligned in the param table.
|
|/ |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This patch adjusts some problems regarding image sizes in LaTeX output of doxygen (a.o. Bug 738299 - When using msc or PlantUML, the default latex for the created image should include [width=\linewidth]) this has been done is such a way that all the "image" commands (i.e. image, dot, dotfile, msc, mscfile, diafile, startuml) operate in a similar way / have the same possibilities.
- commands.doc
Adjusted documentation to reflect changes.
- cmdmapper.cpp
- cmdmapper.h
Added utility function to map command id back to command name
- doctokenizer.h
- doctokenizer.l
Handle Caption and Size indication. Required also that some other rules had to be tightened a bit (like usage of {} in startuml and usage of "" for captions. This was already described in the documentation in this way).
- docparser.cpp
- docparser.h
Created routine to uniformly handle the Caption and size indications and store them in a general way.
- latexgen.cpp
Replaced graphicx package by adjustbox package (includes graphicx) to support "min width" etc.
- doxygen.sty templates\latex
Added commands to make commands with and without caption behave similar.
- docbookvisitor.cpp
- docbookvisitor.h
- htmldocvisitor.cpp
- latexdocvisitor.cpp
- latexdocvisitor.h
- printdocvisitor.h
- xmldocvisitor.cpp
Created routine to uniformly handle the Caption and size indications in a general way.
- indexpage.xml (testing\022)
- indexpage.xml (testing\031)
- class_receiver.xml (testing\037)
- class_sender.xml (testing\037)
Adjusted example output.
|
|
compiler & manager
|