diff options
author | albert-github <albert.tests@gmail.com> | 2019-01-04 14:45:50 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2019-01-04 14:45:50 (GMT) |
commit | f3e0d5b9dabaf9fa2e05469cd42836477de08de4 (patch) | |
tree | 1c547e046fc3838a729a955004f9bfaae6d725f4 /testing/012/indexpage.xml | |
parent | 5d66d2ea14a173edb3d6b7ffaabd0196392fcb0f (diff) | |
download | Doxygen-f3e0d5b9dabaf9fa2e05469cd42836477de08de4.zip Doxygen-f3e0d5b9dabaf9fa2e05469cd42836477de08de4.tar.gz Doxygen-f3e0d5b9dabaf9fa2e05469cd42836477de08de4.tar.bz2 |
issue #6733 invalid cite anchor id when using crossref
The crossreference possibility was not properly taken into account in bibtex conversion for other formats than LaTeX.
- doxygen.bst: use correct labels (i.e. add 'CITEREF_' in case of crossreferences to the giver name)
- cite.cpp: add the crossreferences to the citation dictionary (to overcome warning message).
- extending test 012
Diffstat (limited to 'testing/012/indexpage.xml')
-rwxr-xr-x[-rw-r--r--] | testing/012/indexpage.xml | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/testing/012/indexpage.xml b/testing/012/indexpage.xml index 73fb669..e682540 100644..100755 --- a/testing/012/indexpage.xml +++ b/testing/012/indexpage.xml @@ -1,12 +1,13 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version=""> - <compounddef id="indexpage" kind="page"> - <compoundname>index</compoundname> - <title>My Project</title> - <briefdescription> - </briefdescription> - <detaileddescription> - <para>See <ref refid="citelist_1CITEREF_knuth79" kindref="member">[1]</ref> for more info. </para> - </detaileddescription> - </compounddef> -</doxygen> +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="">
+ <compounddef id="indexpage" kind="page">
+ <compoundname>index</compoundname>
+ <title>My Project</title>
+ <briefdescription>
+ </briefdescription>
+ <detaileddescription>
+ <para>See <ref refid="citelist_1CITEREF_knuth79" kindref="member">[3]</ref> for more info.</para>
+ <para>Oter references with crosreference see <ref refid="citelist_1CITEREF_Be09" kindref="member">[1]</ref> and <ref refid="citelist_1CITEREF_BertholdHeinzVigerske2009" kindref="member">[2]</ref> for more info. </para>
+ </detaileddescription>
+ </compounddef>
+</doxygen>
|