/usr/share/perl5/LaTeXML/Package/natbib.sty.ltxml is in latexml 0.7.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 | # -*- CPERL -*-
# /=====================================================================\ #
# | natbib | #
# | Implementation for LaTeXML | #
# |=====================================================================| #
# | Part of LaTeXML: | #
# | Public domain software, produced as part of work done by the | #
# | United States Government & not subject to copyright in the US. | #
# |---------------------------------------------------------------------| #
# | Bruce Miller <bruce.miller@nist.gov> #_# | #
# | http://dlmf.nist.gov/LaTeXML/ (o o) | #
# \=========================================================ooo==U==ooo=/ #
package LaTeXML::Package::Pool;
use strict;
use LaTeXML::Package;
use LaTeXML::Util::KeyVal;
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
# natbib
# following natbib.pdf document
# The basic support function for citation styles is in LaTeX.pool
# Other formatting support is in Post::MakeBibliography
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
#======================================================================
# 5. Package Options
# The kind of braces around citations
DeclareOption('round', sub { setCitationStyle(round=>1); });
DeclareOption('curly', sub { setCitationStyle(curly=>1); });
DeclareOption('square', sub { setCitationStyle(square=>1); });
DeclareOption('angle', sub { setCitationStyle(angle=>1); });
# The kind of separator between multiple citations
DeclareOption('semicolon', sub { setCitationStyle(semicolon=>1); });
DeclareOption('colon', sub { setCitationStyle(semicolon=>1); }); # SIC!
DeclareOption('comma', sub { setCitationStyle(comma=>1); });
# The kind of citation
DeclareOption('authoryear',sub { setCitationStyle(authoryear=>1); });
DeclareOption('numbers', sub { setCitationStyle(numbers=>1); });
DeclareOption('super', sub { setCitationStyle(super=>1); });
# sorting options
DeclareOption('sort', sub {});
DeclareOption('sort&compress',sub {});
DeclareOption('compress', sub {});
DeclareOption('longnamesfirst',sub {});
DeclareOption('sectionbib', sub {});
DeclareOption('nonamebreak',sub {});
# They _say_ round & semicolon but ...
#ExecuteOptions('square','comma','authoryear');
ExecuteOptions('round','semicolon','authoryear');
ProcessOptions();
#======================================================================
# 2.3 Basic Citation Commands
# Leverage the definitions in LaTeX.pool.
# Note that LaTeX's \cite command is treated almost equivalent to \citet in authoryear mode,
# but like \citep in numbers mode.
DefMacro('\cite[] Semiverbatim', sub {
my($gullet,$post,$keys)=@_;
my($open,$close,$ns)=map(LookupValue($_),qw(CITE_OPEN CITE_CLOSE CITE_NOTE_SEPARATOR));
$post = undef unless $post && $post->unlist;
if(LookupValue('CITE_STYLE') eq 'numbers'){
Invocation(T_CS('\@@cite'),
Tokens($open,
Invocation(T_CS('\@@bibref'),T_OTHER("Number"),$keys,undef,undef),
($post ? ($ns,T_SPACE,$post):()),
$close)); }
else {
Invocation(T_CS('\@@cite'),
Invocation(T_CS('\@@bibref'),
T_OTHER("Authors Phrase1YearPhrase2"),
$keys,
Invocation(T_CS('\@@citephrase'),$open),
Invocation(T_CS('\@@citephrase'),
Tokens(($post ? ($ns,T_SPACE,$post):()), $close)))); }
});
DefMacro('\citet OptionalMatch:* [][] Semiverbatim', sub {
my($gullet,$star,$pre,$post,$keys)=@_;
my($open,$close,$ns)=map(LookupValue($_),qw(CITE_OPEN CITE_CLOSE CITE_NOTE_SEPARATOR));
if(!$post){ ($pre,$post)=(undef,$pre); }
$pre = undef unless $pre && $pre->unlist;
$post = undef unless $post && $post->unlist;
my $author = ($star ? "FullAuthors" : "Authors");
if(LookupValue('CITE_STYLE') eq 'numbers'){
Invocation(T_CS('\@@cite'),
Tokens(($pre ? ($pre,T_SPACE):()),
Invocation(T_CS('\@@bibref'),
T_OTHER("$author Phrase1NumberPhrase2"),
$keys,
Invocation(T_CS('\@@citephrase'),$open),
Invocation(T_CS('\@@citephrase'),$close))->unlist,
($post ? ($ns->unlist,T_SPACE,$post->unlist):()))); }
else {
Invocation(T_CS('\@@cite'),
Invocation(T_CS('\@@bibref'),
T_OTHER("$author Phrase1YearPhrase2"),
$keys,
Invocation(T_CS('\@@citephrase'),
Tokens($open,($pre ? ($pre,T_SPACE):()))),
Invocation(T_CS('\@@citephrase'),
Tokens(($post ? ($ns,T_SPACE,$post):()),$close)))); }
});
DefMacro('\citep OptionalMatch:* [][] Semiverbatim', sub {
my($gullet,$star,$pre,$post,$keys)=@_;
my($open,$close,$ns,$ay)=map(LookupValue($_),qw(CITE_OPEN CITE_CLOSE
CITE_NOTE_SEPARATOR CITE_AY_SEPARATOR));
if(!$post){ ($pre,$post)=(undef,$pre); }
$pre = undef unless $pre && $pre->unlist;
$post = undef unless $post && $post->unlist;
my $author = ($star ? "FullAuthors" : "Authors");
if(LookupValue('CITE_STYLE') eq 'numbers'){
Invocation(T_CS('\@@cite'),
Tokens($open,($pre ? ($pre,T_SPACE):()),
Invocation(T_CS('\@@bibref'),T_OTHER("Number"),$keys, undef,undef),
($post ? ($ns,T_SPACE,$post):()),$close)); }
else {
Invocation(T_CS('\@@cite'),
Tokens($open->unlist,($pre ? ($pre,T_SPACE):()),
Invocation(T_CS('\@@bibref'),
T_OTHER("${author}Phrase1Year"),
$keys,
Invocation(T_CS('\@@citephrase'),$ay),
undef),
($post ? ($ns,T_SPACE,$post):()),$close)); }
});
#======================================================================
# 2.4 Extended Citation Commands
DefMacro('\@@cite@noparens',sub {
AssignValue(CITE_OPEN=>Tokens());
AssignValue(CITE_CLOSE=>Tokens()); });
# The next two are the same as \citet, \citep, but redefine open & close to empty.
DefMacro('\citealt OptionalMatch:* [][] Semiverbatim', sub {
my($gullet,$star,$pre,$post,$keys)=@_;
(T_CS('\bgroup'),T_CS('\@@cite@noparens'),
Invocation(T_CS('\citet'),$star,$pre,$post,$keys)->unlist,
T_CS('\egroup')); });
DefMacro('\citealp OptionalMatch:* [][] Semiverbatim', sub {
my($gullet,$star,$pre,$post,$keys)=@_;
(T_CS('\bgroup'),T_CS('\@@cite@noparens'),
Invocation(T_CS('\citep'),$star,$pre,$post,$keys)->unlist,
T_CS('\egroup')); });
DefMacro('\citenum Semiverbatim', sub {
my($gullet,$keys)=@_;
Invocation(T_CS('\@@cite'),
Invocation(T_CS('\@@bibref'),T_OTHER("Number"),$keys,undef,undef)); });
# Sorta right, but would like to avoid the nested <ltx:cite>!
# maybe can neutralize \@@cite?
DefMacro('\citetext','\@@cite');
DefMacro('\citeauthor OptionalMatch:* Semiverbatim', sub {
my($gullet,$star,$keys)=@_;
my $author = ($star ? "FullAuthors" : "Authors");
Invocation(T_CS('\@@cite'),
Invocation(T_CS('\@@bibref'),T_OTHER($author),$keys,undef,undef)); });
DefMacro('\citefullauthor Semiverbatim', sub {
my($gullet,$star,$keys)=@_;
Invocation(T_CS('\@@cite'),
Invocation(T_CS('\@@bibref'),T_OTHER("FullAuthors"),$keys,undef,undef)); });
DefMacro('\citeyear Semiverbatim', sub {
my($gullet,$keys)=@_;
Invocation(T_CS('\@@cite'),
Invocation(T_CS('\@@bibref'),T_OTHER("Year"),$keys,undef,undef)); });
DefMacro('\citeyearpar Semiverbatim', sub {
my($gullet,$keys)=@_;
my($open,$close)=map(LookupValue($_),qw(CITE_OPEN CITE_CLOSE));
Invocation(T_CS('\@@cite'),
Tokens($open,
Invocation(T_CS('\@@bibref'),T_OTHER("Year"),$keys,undef,undef),
$close)); });
#======================================================================
# 2.5 Forcing Upper Cased Name
# These are SUPPOSED to capitalize the first letter, .. but
DefMacro('\Citet','\citet');
DefMacro('\Citep','\citep');
DefMacro('\Citealt','\citealt');
DefMacro('\Citealp','\citealp');
DefMacro('\Citeauthor','\citeauthor');
#======================================================================
# 2.6 Citation Aliasing
# Citation aliasing is achieved with
# \defcitealias{key}{text}
# \citetalias{key} ==>> text
# \citepalias{key} ==>> (text)
# should end the defined key with \@extra@b@citeb ???
DefPrimitive('\defcitealias Semiverbatim {}', sub {
my($gullet,$key,$text)=@_;
DefMacroI(T_CS('\al@'.ToString($key)),undef,$text); });
# These use the above defined text to fill in the bibref
# (which will still be a link to the bibitem!)
DefMacro('\citetalias Semiverbatim', sub {
my($gullet,$key)=@_;
my($open,$close)=map(LookupValue($_),qw(CITE_OPEN CITE_CLOSE));
Invocation(T_CS('\@@cite'),
Invocation(T_CS('\@@bibref'),
T_OTHER("Phrase1"),
$key,
Invocation(T_CS('\@@citephrase'),T_CS('\al@'.ToString($key))))); });
DefMacro('\citepalias Semiverbatim', sub {
my($gullet,$key)=@_;
my($open,$close)=map(LookupValue($_),qw(CITE_OPEN CITE_CLOSE));
Invocation(T_CS('\@@cite'),
Tokens($open,
Invocation(T_CS('\@@bibref'),
T_OTHER("Phrase1"),
$key,
Invocation(T_CS('\@@citephrase'),T_CS('\al@'.ToString($key)))),
$close)); });
#======================================================================
# 2.9 Selecting Citation Punctuation
DefKeyVal('natbib','authoryear','','true');
DefKeyVal('natbib','numbers','','true');
DefKeyVal('natbib','super','','true');
DefKeyVal('natbib','round','','true');
DefKeyVal('natbib','square','','true');
DefKeyVal('natbib','open','');
DefKeyVal('natbib','close','');
DefKeyVal('natbib','semicolon','');
DefKeyVal('natbib','comma','');
DefKeyVal('natbib','citesep','');
DefKeyVal('natbib','aysep','');
DefKeyVal('natbib','yysep','');
DefKeyVal('natbib','notesep','');
AssignValue(CITE_AY_SEPARATOR=>T_OTHER(','));
sub setCitationStyle {
my(@pairs)=@_;
while(@pairs){
my($key,$value)=(shift(@pairs),shift(@pairs));
$key = ToString(Digest($key)) if ref $key;
if ($key eq 'authoryear'){ AssignValue(CITE_STYLE=>'authoryear'); }
elsif($key eq 'numbers'){ AssignValue(CITE_STYLE=>'numbers'); }
elsif($key eq 'super'){ AssignValue(CITE_STYLE=>'super'); }
elsif($key eq 'round'){ AssignValue(CITE_OPEN=>T_OTHER('('));
AssignValue(CITE_CLOSE=>T_OTHER(')')); }
elsif($key eq 'square'){ AssignValue(CITE_OPEN=>T_OTHER('['));
AssignValue(CITE_CLOSE=>T_OTHER(']')); }
elsif($key eq 'curly'){ AssignValue(CITE_OPEN=>T_OTHER('{'));
AssignValue(CITE_CLOSE=>T_OTHER('}')); }
elsif($key eq 'angle'){ AssignValue(CITE_OPEN=>T_OTHER('<'));
AssignValue(CITE_CLOSE=>T_OTHER('>')); }
elsif($key eq 'open'){ AssignValue(CITE_OPEN=>$value); }
elsif($key eq 'close'){ AssignValue(CITE_CLOSE=>$value); }
elsif($key eq 'semicolon'){ AssignValue(CITE_SEPARATOR=>T_OTHER(';')); }
elsif($key eq 'comma'){ AssignValue(CITE_SEPARATOR=>T_OTHER(',')); }
elsif($key eq 'aysep'){ AssignValue(CITE_AY_SEPARATOR=>$value); }
elsif($key eq 'yysep'){ AssignValue(CITE_YY_SEPARATOR=>$value); }
elsif($key eq 'notesep'){ AssignValue(CITE_NOTE_SEPARATOR=>$value); }
else {
Warn(":unexpected:$key Unexpected $key=$value while setting Citation Style"); }}
return; }
DefPrimitive('\setcitestyle RequiredKeyVals:natbib', sub {
setCitationStyle($_[1]->getPairs); });
DefPrimitive('\bibpunct[]{}{}{}{}{}{}', sub {
my($stomach,$notesep,$open,$close,$sep,$style,$aysep,$yysep)=@_;
$style = ToString(Digest($style));
AssignValue(CITE_OPEN=>$open);
AssignValue(CITE_CLOSE=>$close);
AssignValue(CITE_SEPARATOR=>$sep);
AssignValue(CITE_STYLE=>($style eq 'n' ? 'numbers' : ($style eq 's' ? 'super' : 'authoryear')));
AssignValue(CITE_AY_SEPARATOR=>$aysep);
AssignValue(CITE_YY_SEPARATOR=>$yysep);
AssignValue(CITE_NOTE_SEPARATOR=>$notesep) if $notesep;
return; });
# NOTE that if this appears at the end next to the bibliography.... it's TOO LATE!
# The doc says it loads newbib.cfg, but I don't see that...
# \citestyle{newbib}
DefMacro('\bibstyle{}', sub {
my $style = T_CS('\bibstyle@'.ToString($_[1]));
(LookupDefinition($style) ? ($style) : (T_CS('\relax'))); });
# \AtBeginDocument{\global\let\bibstyle=\@gobble}
Let(T_CS('\@citestyle'),T_CS('\bibstyle'));
DefMacro('\citestyle{}','\@citestyle{#1}\let\bibstyle\@gobble');
DefMacro('\bibstyle@chicago', '\bibpunct{(}{)}{;}{a}{,}{,}');
DefMacro('\bibstyle@named', '\bibpunct{[}{]}{;}{a}{,}{,}');
DefMacro('\bibstyle@agu', '\bibpunct{[}{]}{;}{a}{,}{,~}'); #Amer. Geophys. Union
DefMacro('\bibstyle@copernicus', '\bibpunct{(}{)}{;}{a}{,}{,}'); #Copernicus Publications
Let(T_CS('\bibstyle@egu'),T_CS('\bibstyle@copernicus'));
Let(T_CS('\bibstyle@egs'),T_CS('\bibstyle@copernicus'));
DefMacro('\bibstyle@agsm', '\bibpunct{(}{)}{,}{a}{}{,}\gdef\harvardand{\&}');
DefMacro('\bibstyle@kluwer', '\bibpunct{(}{)}{,}{a}{}{,}\gdef\harvardand{\&}');
DefMacro('\bibstyle@dcu', '\bibpunct{(}{)}{;}{a}{;}{,}\gdef\harvardand{and}');
DefMacro('\bibstyle@aa', '\bibpunct{(}{)}{;}{a}{}{,}'); # Astronomy & Astrophysics
DefMacro('\bibstyle@pass', '\bibpunct{(}{)}{;}{a}{,}{,}'); #Planet. & Space Sci
DefMacro('\bibstyle@anngeo', '\bibpunct{(}{)}{;}{a}{,}{,}'); #Annales Geophysicae
DefMacro('\bibstyle@nlinproc', '\bibpunct{(}{)}{;}{a}{,}{,}'); #Nonlin.Proc.Geophys.
DefMacro('\bibstyle@cospar', '\bibpunct{/}{/}{,}{n}{}{}');
DefMacro('\bibstyle@esa', '\bibpunct{(Ref.~}{)}{,}{n}{}{}');
DefMacro('\bibstyle@nature', '\bibpunct{}{}{,}{s}{}{\textsuperscript{,}}');
DefMacro('\bibstyle@plain', '\bibpunct{[}{]}{,}{n}{}{,}');
Let(T_CS('\bibstyle@alpha'),T_CS('\bibstyle@plain'));
Let(T_CS('\bibstyle@abbrv'),T_CS('\bibstyle@plain'));
Let(T_CS('\bibstyle@unsrt'),T_CS('\bibstyle@plain'));
DefMacro('\bibstyle@plainnat', '\bibpunct{[}{]}{,}{a}{,}{,}');
Let(T_CS('\bibstyle@abbrvnat'),T_CS('\bibstyle@plainnat'));
Let(T_CS('\bibstyle@unsrtnat'),T_CS('\bibstyle@plainnat'));
#======================================================================
# 2.12 Other Formatting Options
# mostly ignored...
DefMacro('\bibsection','');
DefMacro('\bibpreamble','');
DefMacro('\bibfont','');
DefMacro('\citenumfont','');
DefMacro('\bibnumfmt{}','#1');
DefRegister('\bibhang',Dimension(0));
DefRegister('\bibsep',Dimension(0));
#======================================================================
# 2.13 Automatic Indexing of Citations
# Ignored, but could be done...
# However, it is basically equivalent to backrefs which are
# automatically handled in MakeBibliography, anyway...
RawTeX('\newif\ifciteindex');
DefMacro('\citeindextrue','');
DefMacro('\citeindexfalse','');
DefMacro('\citeindextype','');
#======================================================================
# 2.17 Long Author List on First Citation
# Ignored (for now...)
DefMacro('\shortcites Semiverbatim','');
#======================================================================
# Less Documented
# For manually formatted bibliographies, the following magical incantations
# will be recognized to deliniate the author and year:
# \bibitem[Jones et al.(1990)]{key}...
# \bibitem[Jones et al.(1990)Jones, Baker, and Williams]{key}...
# \bibitem[Jones et al., 1990]{key}...
# \bibitem[\protect\citeauthoryear{Jones, Baker, and Williams}{Jones et al.}{1990}]{key}...
# \bibitem[\protect\citeauthoryear{Jones et al.}{1990}]{key}...
# \bibitem[\protect\astroncite{Jones et al.}{1990}]{key}...
# \bibitem[\protect\citename{Jones et al., }1990]{key}...
# \harvarditem[Jones et al.]{Jones, Baker, and Williams}{1990}{key}...
##DefMacro('\bibitem','\refstepcounter{enumiv}\@ifnextchar[{\@lbibitem}{\@lbibitem[\the@bibitem]}');
DefMacro('\bibitem','\refstepcounter{@bibitem}\@ifnextchar[{\@lbibitem}{\@lbibitem[\the@bibitem]}');
RawTeX(<<'EOTeX');
%%%
\def\citeauthoryear#1#2#3(@)(@)\@nil#4{%
\if\relax#3\relax
\NAT@wrout{\the@bibitem}{#2}{#1}{}{#4}\else
\NAT@wrout{\the@bibitem}{#3}{#2}{#1}{#4}\fi}
\def\astroncite#1#2(@)(@)\@nil#3{%
\NAT@wrout{\the@bibitem}{#2}{#1}{}{#3}}
\def\citename#1#2(@)(@)\@nil#3{%
\expandafter\NAT@apalk#1#2, \@nil{#3}}
\newcommand\harvarditem[4][]{%
\if\relax#1\relax\bibitem[#2(#3)]{#4}\else\bibitem[#1(#3)#2]{#4}\fi }
%%%%
\def\@lbibitem[#1]#2{%
\@@lbibitem{#2}\NAT@ifcmd#1(@)(@)\@nil{#2}\newblock}
\newcommand\NAT@ifcmd{\futurelet\NAT@temp\NAT@ifxcmd}
\newcommand\NAT@ifxcmd{\ifx\NAT@temp\relax\else\expandafter\NAT@bare\fi}
\def\NAT@bare#1(#2)#3(@)#4\@nil#5{%
\if @#2%
\expandafter\NAT@apalk#1, , \@nil{#5}\else
\NAT@wrout{\the@bibitem}{#2}{#1}{#3}{#5}\fi}
\def\NAT@apalk#1, #2, #3\@nil#4{%
\if\relax#2\relax\NAT@wrout{#1}{}{}{}{#4}\else\NAT@wrout{\the@bibitem}{#2}{#1}{}{#4}\fi}
%%%%
EOTeX
# By this time, \NAT@wrout should look like:
# \NAT@wrout{number}{year}{authors}{fullauthors}{bibkey}
# So, we'll do one extra step, and format the refnum form
DefMacro('\NAT@wrout{}{}{}{} Semiverbatim', sub {
my($gullet,$number,$year,$authors,$fullauthors,$key)=@_;
my($style,$open,$close)=map(LookupValue($_),qw(CITE_STYLE CITE_OPEN CITE_CLOSE));
$style = 'number' unless $authors->unlist && $year->unlist;
if($style eq 'number'){
Invocation(T_CS('\NAT@@wrout'),$number,$year,$authors,$fullauthors,
Tokens($open,$number,$close),
$key)->unlist; }
else {
Invocation(T_CS('\NAT@@wrout'),$number,$year,$authors,$fullauthors,
Tokens($authors,T_SPACE,$open,$year,$close),
$key)->unlist; }});
DefConstructor('\NAT@@wrout{}{}{}{}{} Semiverbatim',
"?#1(<ltx:bibtag role='number'>#1</ltx:bibtag>)"
."?#2(<ltx:bibtag role='year'>#2</ltx:bibtag>)"
."?#3(<ltx:bibtag role='authors'>#3</ltx:bibtag>)"
."?#4(<ltx:bibtag role='fullauthors'>#4</ltx:bibtag>)"
."?#5(<ltx:bibtag role='refnum'>#5</ltx:bibtag>)",
# Allow plain & in here ???
bounded=>1, beforeDigest=>sub{ Let(T_ALIGN,T_CS('\&')); }
);
# Similar to the one defined in LaTeX.pool, but the bibtag's have been setup above.
DefConstructor('\@@lbibitem Semiverbatim',
"<ltx:bibitem key='#key' xml:id='#id'>",
afterDigest=>sub {
my $key = CleanBibKey($_[1]->getArg(1));
my $id = ToString(Expand(T_CS('\the@bibitem@ID')));
$_[1]->setProperties(key=>$key, id=>$id); });
#======================================================================
# These macros allow you to get the pieces used in the current style
# but don't seem to be used in natbib, so redefining them does nothing.
DefMacro('\citestarts',sub { LookupValue('CITE_OPEN')->unlist; });
DefMacro('\citeends', sub { LookupValue('CITE_CLOSE')->unlist; });
DefMacro('\betweenauthors', 'and');
DefMacro('\harvardleft', sub { LookupValue('CITE_OPEN')->unlist; });
DefMacro('\harvardright', sub { LookupValue('CITE_CLOSE')->unlist; });
DefMacro('\harvardyearleft', sub { LookupValue('CITE_OPEN')->unlist; });
DefMacro('\harvardyearright', sub { LookupValue('CITE_CLOSE')->unlist; });
DefMacro('\harvardand', 'and');
DefConstructor('\harvardurl Semiverbatim',
"<ltx:ref href='#href'>#1</ltx:ref>",
properties=>sub { (href=>CleanURL(ToString($_[1]))); });
Let(T_CS('\citeN'),T_CS('\cite'));
Let(T_CS('\shortcite'),T_CS('\cite'));
Let(T_CS('\citeasnoun'),T_CS('\cite'));
DefMacro('\natexlab{}', '#1'); # ????
1;
|