]> git.lyx.org Git - lyx.git/blob - lib/layouts/natbib.module
LyXHTML linking from citation to bib entry for LyX 2.1 (fixes #8490).
[lyx.git] / lib / layouts / natbib.module
1 # \DeclareLyXModule[natbib.sty]{Natbib}
2 # DescriptionBegin
3 #   Loads the LaTeX package natbib, a citation engine. Natbib supports
4 #   both author-year and numerical styles for citations, automatic sorting
5 #   and merging of numerical citations, annotations, capitalization of the
6 #   `van' part of author names, shortened and full author lists, and more.
7 # DescriptionEnd
8 # Excludes: basic | jurabib
9 # Category: Citation engine
10
11 # Author: Julien Rioux <jrioux@lyx.org>
12
13 Format 43
14
15 Requires natbib
16
17 CiteEngineType authoryear|numerical
18 DefaultBiblio  plainnat
19
20 CiteEngine authoryear
21         Citet*[][]
22         Citep*[][]
23         Citealt*[][]
24         Citealp*[][]
25         Citeauthor*[]
26         citeyear[]
27         citeyearpar[][]
28         nocite
29 End
30
31 CiteEngine numerical
32         Citep*[][]
33         Citealp*[][]
34         Citet*[][]
35         Citealt*[][]
36         Citeauthor*
37         citeyearpar[][]
38         citeyear
39         nocite
40 End
41
42 CiteFormat default
43         # translatable bits
44         _notcited not cited
45         _addtobib Add to bibliography only.
46
47         # macros
48         !open [
49         !sep ,
50         !close ]
51
52         !startlink {!<a href='#LyXCite-%key%'>!}
53         !endlink {!</a>!}
54
55         !nextauthor {%next%[[%!sep% %!startlink%%!abbrvauthor%%!endlink%%!nextauthor%]]}
56         !nextkey {%next%[[%!sep% %key%%!nextkey%]]}
57         !nextyear {%next%[[%!sep% %!startlink%%!year%%!endlink%%!nextyear%]]}
58
59         !abbrvauthor {%abbrvauthor%[[%abbrvauthor%]][[??]]}
60         !textbefore {%textbefore%[[%textbefore% ]]}
61         !textafter {%textafter%[[, %textafter%]]}
62         !year {%year%[[%year%]][[??]]}
63
64         # cite styles
65         citet %!citet%%!textafter%%!close%
66         citealt %!citealt%%!textafter%
67         citeyearpar %!open%%!textbefore%%!startlink%%!year%%!endlink%%!nextyear%%!textafter%%!close%
68         nocite {%dialog%[[%_addtobib%]][[%key%%!nextkey% (%_notcited%)]]}
69 End
70
71 CiteFormat authoryear
72         !citet %!startlink%%!abbrvauthor%%!endlink% %!open%%!textbefore%%!year%%!nextcitet%
73         !citealt %!startlink%%!abbrvauthor% %!textbefore%%!year%%!endlink%%!nextcitealt%
74         !citealp %!startlink%%!abbrvauthor%, %!year%%!endlink%%!nextcitealp%
75
76         !nextcitet {%next%[[%!close%%!sep% %!citet%]]}
77         !nextcitealt {%next%[[%!sep% %!citealt%]]}
78         !nextcitealp {%next%[[%!sep% %!citealp%]]}
79
80         cite %!citet%%!textafter%%!close%
81         citep %!open%%!textbefore%%!citealp%%!textafter%%!close%
82         citealp %!textbefore%%!citealp%%!textafter%
83         citeauthor %!startlink%%!abbrvauthor%%!endlink%%!nextauthor%%!textafter%
84         citeyear %!startlink%%!year%%!endlink%%!nextyear%%!textafter%
85 End
86
87 CiteFormat numerical
88         !citet %!abbrvauthor% %!open%%!textbefore%{%dialog%[[#ID]][[%!startlink%#%key%%!endlink%]]}%!nextcitet%
89         !citealt %!abbrvauthor% %!textbefore%{%dialog%[[#ID]][[%!startlink%#%key%%!endlink%]]}%!nextcitealt%
90
91         !hashkey {%dialog%[[#ID]][[%!startlink%#%key%%!endlink%%!nexthashkey%]]}
92
93         !nextcitet {%next%[[%!close%%!sep% %!citet%]]}
94         !nextcitealt {%next%[[%!sep% %!citealt%]]}
95         !nexthashid {%next%[[%!sep% #ID%!nexthashid%]]}
96         !nexthashkey {%next%[[%!sep% %!startlink%#%key%%!endlink%%!nexthashkey%]]}
97
98         cite %!open%%!textbefore%%!hashkey%%!textafter%%!close%
99         citep %!open%%!textbefore%%!hashkey%%!textafter%%!close%
100         citealp %!textbefore%%!hashkey%%!textafter%
101         citeauthor %!startlink%%!abbrvauthor%%!endlink%%!nextauthor%
102         citeyear %!startlink%%!year%%!endlink%%!nextyear%
103 End