summaryrefslogtreecommitdiffstats
path: root/src/latexgen.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #545 from albert-github/feature/bug_774138Dimitri van Heesch2016-11-281-1/+1
|\ | | | | Bug 774138 - Please add HTML classes to "Definition at..." & "Referenced by..." for CSS
| * Bug 774138 - Please add HTML classes to "Definition at..." & "Referenced ↵albert-github2016-11-131-1/+1
| | | | | | | | | | | | | | by..." for CSS Added class= to html output for "Definition at..." resulting in p.definition in the css file and for "Referenced by .. " and "References ..." resulting in p.definition in css file. (also corrected some error messages).
* | Fix: replace deprecated {\bf with \textbf{ in LaTeX generatorJürgen Hunold2016-11-101-3/+3
|/ | | | | The newest version of scrbook (from Ubuntu 16.10) otherwise bails out with "scrbook Error: undefined old font command `\bf'"
* Bug 773231 - Underscores in type or member name cause unwanted hyphenation ↵Dimitri van Heesch2016-10-231-6/+11
| | | | in PDF output Data Fields
* Unified display of enum values across output formats and languagesDimitri van Heesch2016-08-311-6/+80
|
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2016-08-281-3/+3
|\
| * Bug 710611 - Missing Page References in the Index Chapters of the LaTex/PDF ↵albert-github2016-08-221-3/+3
| | | | | | | | | | | | output In a pagref the path should not be present.
* | Bug 769736 - doxygen generates incorrect documentation for C enum in latexDimitri van Heesch2016-08-211-1/+1
|/
* Style fixes and added numbering to overloaded membersDimitri van Heesch2016-07-301-9/+14
|
* Modified (readability) layout for member title in HTML and LaTexPkLab.net2016-06-221-9/+9
|
* Unify handling of extra packages in formula.cpp and latexgen.cpp so ↵Thadeus Fleming2016-05-201-15/+1
| | | | formula.cpp handles package arguments correctly
* Fix order of member initilaizationChristoph Grüninger2016-01-231-1/+1
|
* Problem jumping to line number in source code due to wrong hypertarget namealbert-github2016-01-171-1/+1
| | | | | When having a line like "Definition at line 30 of file test.cpp." in the LaTeX document with source code the test.cpp is linked to the file but the 30 isn't (in HTML it is). Problem is that in the hypertarget the extension is still present. This patch corrects this.
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2016-01-171-1/+2
|\
| * Latex page numberingalbert-github2016-01-091-1/+2
| | | | | | | | | | | | In the documentation generated by doxygen the table of contents does not start with page number i but with iii, by setting the pagenumbering}{roman} after the clearemptydoublepage titlepage this is corrected. In the beginning of the documentation we set the page numbering to "alph" so it won't interfere with the numbers in the table of contents and the real documentation. For the doxygen manual similar reasoning is true, furthermore the table of contents was on the left side page (when printed double sided), yhis is corrected as well.
* | Changed configuration mechanism to directly access options in order to ↵Dimitri van Heesch2016-01-171-77/+77
|/ | | | improve performance
* Made paragraph spacing more flexible in the LaTeX output to prevent page ↵Dimitri van Heesch2015-12-121-1/+1
| | | | overflows
* Fixed problem with latex and PDF bookmarksDimitri van Heesch2015-11-221-73/+10
|
* Bug 744938 - PATCH: add option to build latex without timestampsDimitri van Heesch2015-10-311-8/+16
|
* Template enhancements and various other small fixesDimitri van Heesch2015-09-081-1/+1
|
* Repaired breaking @include for LaTeX outputDimitri van Heesch2015-08-301-1/+3
|
* Started with generating LaTeX output via the template engineDimitri van Heesch2015-08-271-212/+229
|
* Improved handling of <caption> in tables for LaTeX output.Dimitri van Heesch2015-08-081-1/+4
|
* Using tabu package for LaTeX tablesDimitri van Heesch2015-07-121-4/+4
|
* Doxygen LaTeX / PDF links point to page 1albert-github2015-04-111-3/+3
| | | | | | | Based in the message: http://stackoverflow.com/questions/29551138/doxygen-latex-pdf-links-point-to-page-1 In case the CREATE_SUDIRS is set to YES the name of the link was pre=pended with the *sub dir) path, this has been removed.
* Merge pull request #304 from albert-github/feature/bug_659590Dimitri van Heesch2015-03-051-1/+4
|\ | | | | Bug 659590 - EXTRA_PACKAGES can't handle package options
| * Bug 659590 - EXTRA_PACKAGES can't handle package optionsalbert-github2015-03-041-1/+4
| | | | | | | | | | Create the possibility to specify options with the EXTRA_PACKAGES command. It is possible to specify the package by just its name or in the syntax as required by the LaTeX \usepackage command ([<package-option-list>]{<package-list>}[<version>])
* | Bump copyright yearDimitri van Heesch2015-02-261-1/+1
|/
* Bug 742427 - latex compilation: \backmatter incompatible with COMPACT_LATEX=YESalbert-github2015-01-061-3/+7
| | | | Removed \backmatter in case of COMPACT_LATEX
* various fixes and restructuringDimitri van Heesch2014-12-221-2/+2
|
* Merge branch 'feature/bug_size_latex' of ↵Dimitri van Heesch2014-12-201-22/+23
|\ | | | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_size_latex Conflicts: src/doctokenizer.h src/latexgen.cpp
| * Limit images sizes and make more uniform (LaTeX)albert-github2014-11-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Merge pull request #253 from albert-github/feature/bug_687576Dimitri van Heesch2014-12-091-2/+23
|\ \ | | | | | | Bug 687576 - Add support for LATEX_EXTRA_STYLESHEET
| * | Bug 687576 - Add support for LATEX_EXTRA_STYLESHEETalbert-github2014-11-291-2/+23
| |/ | | | | | | Added the possibility for LATEX_EXTRA_STYLESHEET analogous to HTML_EXTRA_STYLESHEET. Special attention has been paid to the extension as ".sty" is automatically added by the \usepackage
* | Bug ?? for page numbers in the latex indicesalbert-github2014-11-291-1/+1
|/ | | | Due to the fact that the path was not stripped from the file name in case CREATE_SUBDIRS was set to YES there was a reference to a non existing page reference. In the corresponding hypertarget and label the path was already stripped.
* Introduced template directory for template and resource files and resource ↵Dimitri van Heesch2014-11-131-25/+2
| | | | compiler & manager
* Package mathptmx gives discrepancy between pdf and HTML formulasalbert-github2014-10-051-1/+0
| | | | | When using the mathcal command in formulas the mathptmx package gives in the different output version different letters. When the mathptmx, more exuberant, type of fonts are to be used they can be added by means of the EXTRA_PACKAGES option for the dot version.
* Different latex problemsalbert-github2014-09-031-14/+4
| | | | | | | | | | | | | | - Bibliography refers to wrong page in the toc In case of LaTeX the reference in the toc tab to the Bibliography page is not correct. According to e.g. http://lookherefirst.wordpress.com/2008/10/05/add-the-bibliography-in-the-table-of-contents/ when using the hyperref package the reference of the toc should be after the \bibliography entry. See to it that the Bibliography page starts at an odd page (like all other chapters) - See to it that the Index page starts at an odd page (like all other chapters) - Not all items are shown in the Index / Index generation crashes (Bug_733323) / Index is not shown The \hypertarget definition contains on 2 places the entire string (including section references and index references) in the caption part. In all other places the caption is empty and the caption part is not used (as a reference) in the \hyperlink command. The caption has been made empty/
* Docbook output improvementsDimitri van Heesch2014-06-201-5/+5
| | | | | | 1. New Feature: Adapted Class Graph generation for DOCBOOK 2. Fixed DOCBOOK Code documentation formatting 3. Fixed Doxygen to handle FULL_PATH_NAMES for DOCBOOK generation
* \usepackage{fixltx2e} must come before use \usepackage{float}Mattias Ellert2014-06-041-1/+1
| | | | | | The \usepackage{doxygen} statement adds float as a depenency. If the order is wrong the latex generation fails with: LaTeX Error: Unknown float option `H'
* Update latexgen.cppjannick02014-05-211-0/+1
| | | added reset of var Dir_Old at the end.
* make.bat: change current directoryjannick02014-05-211-1/+3
| | | amendment for switching between drives and flipping back to initial cur dir at end of make.bat
* make.bat: change current directoryjannick02014-05-211-0/+1
| | | | | First thing after calling make.bat: switch current directory to folder make.bat resides in. Purpose: easy external call of make.bat. /J.
* Bug 172072 - $title doesn't work in LateX headeralbert-github2014-04-201-2/+2
| | | | | | | | In case $title is used in the latex header or footer it is now replaced with the empty string (it was left inside, resulting in non translatable LaTeX code), the documentation has been updated too. See also: Bug 668004 - LATEX_HEADER should share common information with HTML_HEADER Bug 401327 - LATEX_HEADER: $title does not get expanded
* Improve rendering of sub and superscripts in LaTeXDimitri van Heesch2014-03-281-0/+1
|
* Updated copyrightDimitri van Heesch2014-02-111-1/+1
|
* Recognize all HTML4 special character entitiesalbert-github2014-02-081-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In doxygen a limited number of HTML4 special character entities are recognized, with this patch the full list of HTML4 special character entities (see http://www.w3.org/TR/html4/sgml/entities.html) is supported (as far as they can be represented in the output format). - doxygen_manual.tex - latexgen.cpp Added wasysym package to support per thousand sign (perthousand command from textcomp didn't work properly) Added option for textcomp package so currency symbol would work properly - htmlcmds.doc Adjusted documentation, listing all entities - compound.xsd - xmlgen.cpp Removed in xsd file all references for special HTML4 character entities and placed placeholder so doxygen (in xmlgen.cpp)can automatically add the right element names. - util.cpp - util.h Define all entities with their representation for all output formats. Define access routines to the different representations Mapping (for recognition of the entities) based on running through the list of available entities, after validation of the order of the entities. A few entities contain now besides letters also numbers at the end. - docparser.h Define symbols for all entities as well as a helper struct and enum. The member m_letter is not used anymore and thus removed. All existing symbols were renamed so no confusion (i.e. errors when forgetting to rename some symbols) can occur. Obsolete references to letter removed, all letters with accents etc. are explicitly defined and not through the generic accent name plus an extra letter. - docparser.cpp Adjust used symbols to their new names. Remove references to letter (as used for accents etc.) Replace list of explicitly supported entities with call to symbol code access routine. - docbookvisitor.cpp - htmldocvisitor.cpp - latexdocvisitor.cpp - mandocvisitor.cpp - perlmodgen.cpp - printdocvisitor.h - rtfdocvisitor.cpp - textdocvisitor.cpp - xmldocvisitor.cpp Replace list of explicitly supported entities with call to access routine and use returned value to output.
* Merge pull request #95 from albert-github/feature/bug_latex_index_1Dimitri van Heesch2014-02-031-4/+15
|\ | | | | Enabling possibility to have { and } in (latex) index items
| * Enabling possibility to have { and } in (latex) index itemsalbert-github2014-01-151-4/+15
| | | | | | | | | | | | | | | | | | In the doxygen manual the index items for \{ and \} were missing due to the missing support for the usage of { and } in parts of the code. This patch fixes this problem by introducing 2 new latex commands. See also http://tex.stackexchange.com/questions/153291/index-unmatched-braces-in-latex Further improvements in the index are: - consistency in different places - correction of index for \:: - placing \~ on a more logical place (together with other special characters, ~ is in the ASCII table after a-z whilst other characters are before this range)
* | Use hook arrow for hyphens in symbol names in the LaTeX output.Dimitri van Heesch2014-01-121-0/+1
|/