]> git.lyx.org Git - lyx.git/blob - lib/layouts/natbib.module
cf2c0d8cd82dc39d43c25025090c498514455c42
[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         !nextauthor {%next%[[%!sep% %!abbrvauthor%%!nextauthor%]]}
53         !nextkey {%next%[[%!sep% %key%%!nextkey%]]}
54         !nextyear {%next%[[%!sep% %!year%%!nextyear%]]}
55
56         !abbrvauthor {%abbrvauthor%[[%abbrvauthor%]][[??]]}
57         !textbefore {%textbefore%[[%textbefore% ]]}
58         !textafter {%textafter%[[, %textafter%]]}
59         !year {%year%[[%year%]][[??]]}
60
61         # cite styles
62         citet %!citet%%!textafter%%!close%
63         citealt %!citealt%%!textafter%
64         citeyearpar %!open%%!textbefore%%!year%%!nextyear%%!textafter%%!close%
65         nocite {%dialog%[[%_addtobib%]][[%key%%!nextkey% (%_notcited%)]]}
66 End
67
68 CiteFormat authoryear
69         !citet %!abbrvauthor% %!open%%!textbefore%%!year%%!nextcitet%
70         !citealt %!abbrvauthor% %!textbefore%%!year%%!nextcitealt%
71         !citealp %!abbrvauthor%, %!year%%!nextcitealp%
72
73         !nextcitet {%next%[[%!close%%!sep% %!citet%]]}
74         !nextcitealt {%next%[[%!sep% %!citealt%]]}
75         !nextcitealp {%next%[[%!sep% %!citealp%]]}
76
77         cite %!citet%%!textafter%%!close%
78         citep %!open%%!textbefore%%!citealp%%!textafter%%!close%
79         citealp %!textbefore%%!citealp%%!textafter%
80         citeauthor %!abbrvauthor%%!nextauthor%%!textafter%
81         citeyear %!year%%!nextyear%%!textafter%
82 End
83
84 CiteFormat numerical
85         !citet %!abbrvauthor% %!open%%!textbefore%{%dialog%[[#ID]][[#%key%]]}%!nextcitet%
86         !citealt %!abbrvauthor% %!textbefore%{%dialog%[[#ID]][[#%key%]]}%!nextcitealt%
87
88         !hashkey {%dialog%[[#ID]][[#%key%%!nexthashkey%]]}
89
90         !nextcitet {%next%[[%!close%%!sep% %!citet%]]}
91         !nextcitealt {%next%[[%!sep% %!citealt%]]}
92         !nexthashid {%next%[[%!sep% #ID%!nexthashid%]]}
93         !nexthashkey {%next%[[%!sep% #%key%%!nexthashkey%]]}
94
95         cite %!open%%!textbefore%%!hashkey%%!textafter%%!close%
96         citep %!open%%!textbefore%%!hashkey%%!textafter%%!close%
97         citealp %!textbefore%%!hashkey%%!textafter%
98         citeauthor %!abbrvauthor%%!nextauthor%
99         citeyear %!year%%!nextyear%
100 End