1
# -*- CPERL -*-
2
# /=======================================================\ #
3
# | biblatex.sty - Implementation for LaTeXML | #
4
# | | #
5
# |=======================================================| #
6
# | Part of LaTeXML : http://dlmf.nist.gov/LaTeXML/ | #
7
# | Copyright (c) 2006 arXMLiv group | #
8
# | Released under the GNU Public License | #
9
# \=======================================================/ #
10
11
package LaTeXML::Package::Pool;
12
use strict;
13
use LaTeXML::Package;
14
15
DefConstructor('\printbibliography []',
16
"<ltx:bibliography files='local'>"# files='#1' xml:id='#id'>"
17
. "<ltx:title>References</ltx:title>"# font='#titlefont' _force_font='1'>#title</ltx:title>"
18
."</ltx:bibliography>");
19
DefConstructor('\bibliography Semiverbatim','',
20
afterDigest=>sub { $_[0]->begingroup; # wrapped so redefns don't take effect!
21
beginBibliography($_[1]);
22
$_[0]->endgroup; });
23
24
DefConstructor('\addbibresource Semiverbatim','',
25
afterDigest=>sub { $_[0]->begingroup; # wrapped so redefns don't take effect!
26
beginBibliography($_[1]);
27
$_[0]->endgroup; });
28
29
1;