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 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645
|
% \iffalse meta-comment
%<*internal>
\iffalse
%</internal>
%<*readme>
notes2bib - Integrating notes into the bibliography
===================================================
The `notes2bib` package defines a new type of note, bibnote,
which will always be added to the bibliography. The package
allows footnotes and endnotes to be moved into the bibliography
in the same way. The package can be used with natbib and
biblatex as well as plain LaTeX citations. Both sorted and
unsorted bibliography styles are supported.
Installation
------------
The package is supplied in `.dtx` format and as a pre-extracted
`.zip` file, `notes2bib.tds.zip`. The later is most convenient
for most users: simply unzip this in your local `texmf`
directory. If you want to unpack the `.dtx` yourself, running
`tex notes2bib.dtx` will extract the package whereas `latex
notes2bib.dtx` will extract it and also typeset the
documentation.
The package requires LaTeX3 support as provided in the
`l3kernel` and `l3packages` bundles. Both of these are available
on [CTAN](http://www.ctan.org/) as ready-to-install `.zip`
files. Suitable versions are available in MiKTeX 2.9 and TeX
Live 2012 (updating the relevant packages online may be
necessary). LaTeX3, and so `notes2bib`, requires the e-TeX
extensions: these are available on all modern TeX systems.
Typesetting the documentation requires a number of packages in
addition to those needed to use the package. This is mainly
because of the number of demonstration items included in the
text. To compile the documentation without error, you will
need the packages:
- `csquotes`
- `helvet`
- `mathpazo`
- `listings`
%</readme>
%<*internal>
\fi
\def\nameofplainTeX{plain}
\ifx\fmtname\nameofplainTeX\else
\expandafter\begingroup
\fi
%</internal>
%<*install>
\input l3docstrip.tex
\keepsilent
\askforoverwritefalse
\preamble
---------------------------------------------------------------
notes2bib --- Integrating notes into the bibliography
Maintained by Joseph Wright
E-mail: joseph.wright@morningstar2.co.uk
Released under the LaTeX Project Public License v1.3c or later
See http://www.latex-project.org/lppl.txt
---------------------------------------------------------------
\endpreamble
\postamble
Copyright (C) 2007-2011,2013 by
Copyright (C) 2007-2013 by
Joseph Wright <joseph.wright@morningstar2.co.uk>
It may be distributed and/or modified under the conditions of
the LaTeX Project Public License (LPPL), either version 1.3c of
this license or (at your option) any later version. The latest
version of this license is in the file:
http://www.latex-project.org/lppl.txt
This work is "maintained" (as per LPPL maintenance status) by
Joseph Wright.
This work consists of the file notes2bib.dtx
and the derived files notes2bib.ins,
notes2bib.pdf and
notes2bib.sty.
\endpostamble
\usedir{tex/latex/notes2bib}
\generate{
\file{\jobname.sty}{\from{\jobname.dtx}{package}}
}
%</install>
%<install>\endbatchfile
%<*internal>
\usedir{source/latex/notes2bib}
\generate{
\file{\jobname.ins}{\from{\jobname.dtx}{install}}
}
\nopreamble\nopostamble
\usedir{doc/latex/notes2bib}
\generate{
\file{README.txt}{\from{\jobname.dtx}{readme}}
}
\ifx\fmtname\nameofplainTeX
\expandafter\endbatchfile
\else
\expandafter\endgroup
\fi
%</internal>
%<*driver|package>
\RequirePackage{xparse}
%</driver|package>
%<*driver>
\documentclass[full]{l3doc}
\usepackage{csquotes,helvet,notes2bib}
\usepackage[final]{listings}
\usepackage[osf]{mathpazo}
\begin{document}
\DocInput{\jobname.dtx}
\end{document}
%</driver>
% \fi
%
%\makeatletter
%
%^^A For creating examples with nice highlighting of code, and so
%^^A on; based on the system used in the listings source (lstsample).
%\lst@RequireAspects{writefile}
%\newsavebox{\LaTeXdemo@box}
%\lstnewenvironment{LaTeXdemo}[1][code and example]{^^A
% \global\let\lst@intname\@empty
% \expandafter\let\expandafter\LaTeXdemo@end
% \csname LaTeXdemo@#1@end\endcsname
% \@nameuse{LaTeXdemo@#1}^^A
%}{^^A
% \LaTeXdemo@end
%}
%\newcommand*\LaTeXdemo@new[3]{^^A
% \expandafter\newcommand\expandafter*\expandafter
% {\csname LaTeXdemo@#1\endcsname}{#2}^^A
% \expandafter\newcommand\expandafter*\expandafter
% {\csname LaTeXdemo@#1@end\endcsname}{#3}^^A
%}
%\newcommand*\LaTeXdemo@common{^^A
% \setkeys{lst}{
% basicstyle = \small\ttfamily,
% basewidth = 0.51em,
% gobble = 3,
% keywordstyle = \color{blue},
% language = [LaTeX]{TeX},
% moretexcs = {
% bibnote ,
% bibnotemark ,
% bibnotesetup ,
% bibnotetext ,
% printbibnotes
% }
% }^^A
%}
%\newcommand*\LaTeXdemo@input{^^A
% \MakePercentComment
% \catcode`\^^M=10\relax
% \small
% \begingroup
% \setkeys{lst}{
% SelectCharTable=\lst@ReplaceInput{\^\^I}{\lst@ProcessTabulator}
% }^^A
% \leavevmode
% \input{\jobname.tmp}^^A
% \endgroup
% \MakePercentIgnore
%}
%\LaTeXdemo@new{code and example}{^^A
% \setbox\LaTeXdemo@box=\hbox\bgroup
% \lst@BeginAlsoWriteFile{\jobname.tmp}^^A
% \LaTeXdemo@common
%}{^^A
% \lst@EndWriteFile
% \egroup
% \begin{center}
% \ifdim\wd\LaTeXdemo@box>0.48\linewidth\relax
% \hbox to\linewidth{\box\LaTeXdemo@box\hss}^^A
% \begin{minipage}{\linewidth}
% \LaTeXdemo@input
% \end{minipage}
% \else
% \begin{minipage}{0.48\linewidth}
% \LaTeXdemo@input
% \end{minipage}
% \hfill
% \begin{minipage}{0.48\linewidth}
% \hbox to\linewidth{\box\LaTeXdemo@box\hss}^^A
% \end{minipage}
% \fi
% \end{center}
%}
%\LaTeXdemo@new{code only}{^^A
% \LaTeXdemo@common
%}{^^A
%}
%
%\providecommand*\opt[1]{\texttt{#1}}
%
%\makeatother
%
%\GetFileInfo{\jobname.sty}
%
%\changes{v1.0}{2007/08/30}{Initial public release}
%\changes{v2.0}{2009/09/24}{Second version of package using \pkg{expl3}
% internally}
%
%\title{^^A
% \pkg{notes2bib} --- Integrating notes into the bibliography^^A
% \thanks{^^A
% This file describes version \fileversion, last revised
% \filedate.^^A
% }^^A
%}
%\author{^^A
% Joseph Wright\thanks{E-mail: joseph.wright@morningstar2.co.uk}^^A
%}
%\date{Released \filedate}
%
%\maketitle
%
%\begin{abstract}
% The \pkg{notes2bib} package defines a new type of note, \cs{bibnote},
% which will always be added to the bibliography. The package allows
% footnotes and endnotes to be moved into the bibliography in the same
% way. The package can be used with \pkg{natbib} and \pkg{biblatex} as
% well as plain LaTeX citations. Both sorted and unsorted bibliography
% styles are supported.
%\end{abstract}
%
%\tableofcontents
%
%\begin{documentation}
%
%\section{Introduction}
%
% In most subject areas, bibliographic citations and notes are
% separate entities. However, in some parts of the physical sciences
% (chemistry and physics) it is usual for references to the
% literature and notes to be given together in a \enquote{References and
% Notes} section. By default, this requires that \BibTeX\ users
% create a notes database for each document that they write. This is
% also true if complex references are needed, which cannot be handled
% automatically.
%
% The aim of the \pkg{notes2bib} package is to make integration of notes
% into the bibliography easy. Notes can be written as normal in the
% LaTeX source, and are automatically moved to the bibliography. The
% package is compatible with sorted and unsorted bibliography styles.
% The package has been designed for use with numerical citations,
% although it will work with other systems.
%
%\section{Installation}
%
%\changes{v2.0b}{2010/01/08}{Better documentation for unpacking and
% installation}
% The package is supplied in \file{dtx} format and as a pre-extracted
% zip file, \file{\jobname.tds.zip}. The later is most convenient for
% most users: simply unzip this in your local texmf directory and
% run \texttt{texhash} to update the database of file locations. If
% you want to unpack the \file{dtx} yourself, running
% \texttt{tex \jobname.dtx} will extract the package whereas
% \texttt{latex \jobname.dtx} will extract it and also typeset the
% documentation.
%
% The package requires LaTeX3 support as provided in the
% \pkg{l3kernel} and \pkg{l3packages} bundles. Both of these are available
% on \href{http://www.ctan.org}{\textsc{ctan}} as ready-to-install
% zip files. Suitable versions are available in MiKTeX 2.9 and
% TeX Live 2011 (updating the relevant packages online may be
% necessary). LaTeX3, and so \pkg{notes2bib}, requires the e-TeX
% extensions: these are available on all modern \TeX\ systems.
%
% Typesetting the documentation requires a number of packages in
% addition to those needed to use the package. This is mainly
% because of the number of demonstration items included in the text. To
% compile the documentation without error, you will need the packages:
% \begin{itemize}
% \item \pkg{csquotes}
% \item \pkg{helvet}
% \item \pkg{mathpazo}
% \item \pkg{listings}
%\end{itemize}
%
%\section{Using the package}
%
% The package should be loaded as normal in the preamble. The package
% recognises a number of options, which can also be used in teh document
% body. These are described later in this document.
%\begin{LaTeXdemo}[code only]
% \usepackage[<options>]{notes2bib}
%\end{LaTeXdemo}
%
%\DescribeMacro {\bibnote}
%\begin{syntax}
% \cs{bibnote} \oarg{name} \marg{text}
%\end{syntax}
% The basic function provided by \pkg{notes2bib} is the \cs{bibnote}
% macro. This is used in exactly the same way as footnotes, taking
% a mandatory argument, the \meta{text} of the note, and an optional
% argument, a \meta{name} for the note. The \meta{text} will be saved to
% a \BibTeX\ database file for later inclusion in the bibliography, and
% a reference will be placed in the body text at the position of the
% note.
%\begin{LaTeXdemo}
% A very simple example of a bibliography note
% \bibnote{Note for the first example}.
%\end{LaTeXdemo}
% When used without the optional \meta{name} argument, each note is
% given an automatically-generated name. If notes need to be referred to
% again in a document, the optional argument avoids the need to
% understand the detail of the automated system.
%\begin{LaTeXdemo}
% An example of a named note \bibnote[labelled]{Note for the second
% example}. The text can then continue and reference the note again
% later \bibnotemark[labelled].
%\end{LaTeXdemo}
%
% Verbatim text cannot be added directly to notes (in the same way that
% it cannot be used in footnotes). This means that the normal care
% will be needed with verbatim-like material.
%\begin{LaTeXdemo}
% The next note contains some awkward text
% \bibnote{Some \texttt{\textbackslash verb}-like output}.
%\end{LaTeXdemo}
%
%\DescribeMacro {\bibnotemark}
%\begin{syntax}
% \cs{bibnotemark} \oarg{name}
%\end{syntax}
%\DescribeMacro \bibnotetext
%\begin{syntax}
% \cs{bibnotetext} \oarg{name} \marg{text}
%\end{syntax}
% In common with \cs{footnote}, the basic \cs{bibnote} macro has
% companion macros \cs{bibnotemark} and \cs{bibnotetext}. In contrast
% to the LaTeX2e kernel \cs{footnote} macro, \cs{bibnote} is naturally
% robust and so \cs{bibnotemark} and \cs{bibnotetext} should be needed
% much more rarely than the \cs{footnote} versions.
%
% As with the related \cs{footnote} functions, \cs{bibnotemark} can be
% used alone or will recognise an optional argument giving the
% \meta{name} of the note. \cs{bibnotetext} also recognises the same
% optional \meta{name} argument as well as the mandatory \meta{text}.
%\begin{LaTeXdemo}
% A note without a name \bibnotemark\ can be given with some
% text \bibnotetext{Text for the fourth example}. Note can also be
% given names \bibnotemark[named], which are then used for the
% text\bibnotetext[named]{More text for the fourth example}.
%\end{LaTeXdemo}
%
% The \cs{bibnotemark} macro can also be used to cross-reference notes
% given earlier in the document. This method is preferred for
% referencing notes over using the \cs{cite} macro as
% \cs{bibnotemark} will cope correctly with out-of-order notes
% (see Section~\ref{out-of-order}).
%\begin{LaTeXdemo}
% See notes \bibnotemark[labelled] and \bibnotemark[named].
%\end{LaTeXdemo}
%
%\DescribeMacro {\printbibnotes}
%\begin{syntax}
% \cs{printbibnotes}
%\end{syntax}
% In most cases, there will be both notes and references in a document.
% The notes will be printed along with cited literature in the
% bibliography, produced using the \cs{bibliography} macro (or
% \cs{printbibliography} when using \pkg{biblatex}). However, it is
% possible to print only the notes in a document using the
% \cs{printbibnotes} macro.
% \bibliographystyle{unsrt}
%\begin{LaTeXdemo}
% \printbibnotes
%\end{LaTeXdemo}
%
%\DescribeMacro {\bibnotesetup}
%\begin{syntax}
% \cs{bibnotesetup} \marg{key--value list}
%\end{syntax}
% The behaviour of \pkg{notes2bib} can be altered by setting one or
% more package options. These are given as arguments to the
% \cs{bibnotesetup} function, which takes a \meta{key--value list} and
% uses this to set up the package. With the exception of the
% \opt{file-name} option, all of the settings can be altered in the
% preamble or the document body. The various package options are
% described below.
%
%\subsection{Auto-generated note names}
%
%\DescribeOption {note-name}
% When no explicit label is given for a note, one is generated
% automatically by the package. This consists of two parts, a name and
% a number. The text of the name can be set up using the
% \opt{note-name} option. This should not contain any spaces, as
% \BibTeX\ does not support records with spaces in names. The numerical
% part of the label is always generated automatically, and is the
% number of the note. The standard setting for \opt{note-name} is
% \opt{Note}.
%
%\DescribeOption {refsection-name}
%\DescribeOption {refsection-separator}
% When using \pkg{biblatex}'s \texttt{refsection} system, additional
% information is added to all labels from the second \texttt{refsection}
% onward (\emph{i.e.}~to all except \texttt{refsection} 0). This
% additional text is added before the note name, and always includes the
% \texttt{refsection} number. The settings \opt{refsection-name} and
% \opt{refsection-separator} determine the exact text added:
% \opt{refsection-name} comes before the \texttt{refsection} number and
% has default \opt{Refsection}, while \opt{refsection-separator} comes
% after it and has default value \opt{-}.
%
%\subsection{Underlying citation system}
%
%\DescribeOption {cite-function}
% \pkg{notes2bib} works by making the text of notes into citations.
% To do this, each note has to be \enquote{cited} in the appropriate
% place. \pkg{notes2bib} does not carry out any low-level citation
% itself: instead, a general citation macro is called. The nature of
% the function is set up using the \opt{cite-function} option,
% which should be set to a citation macro taking one mandatory
% argument. The initial setting is \opt{cite-function = \cs{cite}}.
%
%\subsection{Controlling the temporary database}
%
%\DescribeOption {file-name}
% The file name used for the database of notes is set using the
% \opt{file-name} option. The standard setting is to call the file
% |notes2bib-\jobname|, which may not be appropriate (for example, file
% names containing spaces may be problematic). Setting the
% \opt{file-name} option will alter the name of the file, with the
% file extension fixed as \file{bib}. In contrast to the other package
% options, this value can only be set in the preamble.
%
%\DescribeOption {record-type}
% Each note is written to the database as a standard \BibTeX\ record.
% The type of record created is set using the \opt{record-type}
% option. Usually, this will be set to \opt{misc}; \pkg{biblatex} v1.1a
% upwards provides the \opt{bibnote} record type, and this is used if
% available. Some \BibTeX\ styles have dedicated support for notes: if
% so, the appropriate value should be set for this option.
%
%\DescribeOption {note-field}
% The database field used to store the text of the note is available
% for change \emph{via} the \opt{note-field} option. The standard
% setting is \opt{note}.
%
%\DescribeOption {keyword-entry}
% Some styles (most notably \pkg{biblatex}) recognise keywords in
% \BibTeX\ records, stored in a \texttt{keywords} field. To allow the
% selective printing of notes, \pkg{notes2bib} includes a keyword in
% each note record. The keyword is set using the \opt{keyword-entry}
% option: the standard setting is \opt{note}.
%
%\subsection{Ordering notes in relation to citations}
%\label{out-of-order}
%
%\DescribeOption {placement}
% The standard method used by \pkg{notes2bib} places notes into the
% bibliography with no particular control of the relative position of
% notes with respect to citations. For unsorted bibliography styles,
% this will result in the notes appearing mixed in with citations.
% However, \pkg{notes2bib} can create notes so that they appear before
% or after citations, with both sorted an unsorted bibliography styles.
% This is controlled by the \opt{placement} option, which recognises
% the values \opt{before}, \opt{after} and \opt{mixed}. Setting
% \opt{placement = before} places notes before citations, with
% the \opt{after} setting forcing notes to appear after citation.
% The standard setting is \opt{placement = mixed}, which will result
% in mixing of notes and citations.
%
% When notes are placed in the bibliography without any change of order,
% it is possible to cross-reference to them using the standard \cs{cite}
% macro. However, when notes are out of the normal order this can lead
% to problems. These can be avoided by using the \cs{bibnotemark} macro
% to cross-reference notes. As this method will always work correctly,
% it is the recommended method for referencing notes under all
% circumstances.
%
%\DescribeOption {presort-before}
%\DescribeOption {presort-mixed}
%\DescribeOption {presort-after}
%\DescribeOption {sort-key-before}
%\DescribeOption {sort-key-mixed}
%\DescribeOption {sort-key-after}
% There are a number of different mechanisms used by \pkg{notes2bib} to
% achieve the desired ordering. Most standard \BibTeX\ styles recognise
% a \texttt{key} field, which can be used to override sorting by author
% or title. This is used by \pkg{notes2bib}, with the note name prefixed
% by a string to force the sort order. The appropriate strings are
% stored using the options \opt{sort-key-before}, \opt{sort-key-mixed}
% and \opt{sort-key-after}. These have standard settings
% \opt{aaa}, \opt{\meta{blank}} and \opt{zzz}, respectively. When the
% \pkg{biblatex} package is in use, a more powerful method is available
% to control sorting: the \texttt{presort} field. Data to be written
% to this field is set up using the \opt{presort-before},
% \opt{presort-mixed} and \opt{presort-after} options. Here, the
% standard values are \opt{ml}, \opt{mm} and \opt{mn}, respectively.
% These standard values will probably be appropriate in almost all
% cases.
%
%\subsection{Converting footnotes and endnotes}
%
%\DescribeOption {convert-endnotes}
%\DescribeOption {convert-footnotes}
% It is possible to convert both \cs{footnote} and \cs{endnote}
% entries in a file into \cs{bibnote} entries in a flexible manner.
% This behaviour is controlled using the \opt{convert-endnotes} and
% \opt{convert-footnotes} options; both recognise the values
% \opt{true} and \opt{false}. The original definitions for the
% appropriate macros are stored by \pkg{notes2bib}, and so it is
% possible to switch this behaviour on and off.
%
%\DescribeMacro {\thanks}
% The package is designed so that converting footnotes to bibliographic
% notes will not affect the \cs{thanks} macro. Thus the option
% \opt{convert-footnotes = true} can be given before \cs{maketitle}
% with no implication for and \cs{thanks}.
%
%\subsection{Using unsorted bibliography styles}
%
%\changes{v2.0b}{2010/01/08}{Improvements to details concerning
% \opt{use-sort-key} option}
%\DescribeOption {use-sort-key}
% Some bibliography styles (most notably those using the
% author--date system) may not work well with the settings
% of the package as supplied. Some of the data written by
% \pkg{notes2bib} can be misunderstood by styles such as
% \file{unsrtnat}. To suppress creating a \texttt{key} field in the
% database, the option \opt{use-sort-key} should be set to \opt{false}
% with these problematic styles. At the same time, it may be necessary
% to alter the \opt{note-name} option to a blank value.
%\begin{LaTeXdemo}[code only]
% \bibnotesetup{
% note-name = ,
% use-sort-key = false
% }
%\end{LaTeXdemo}
%
%\section{Data written to the \texttt{aux} file}
%
% \pkg{notes2bib} writes some information to the \file{aux} file, so
% that it is available between runs. The functions added to the
% file are not needed directly by the user, but are documented here
% for completeness. However, it may be necessary to worry about the
% \file{aux} file when splitting bibliographies.
%
%\DescribeMacro {\recordnotes}
% \begin{syntax}
% \cs{recordnotes}
% \end{syntax}
% When notes are placed out-of-order in in a document (using
% \opt{placement = before} or \opt{placement = after}) \pkg{notes2bib}
% has to record information in the current \file{aux} file. When using
% multiple bibliographies, this will not necessarily happen totally
% automatically. To force \pkg{notes2bib} to write the current
% out-of-order notes to the \file{aux} file, the macro
% \cs{recordnotes} is available. It should be used immediately
% before changing between auxiliary files.
%
%\DescribeMacro {\TotalNotes}
%\begin{syntax}
% \cs{TotalNotes} \marg{number}
%\end{syntax}
% Records the total number of auto-numbered notes in a run. This
% information is needed to check if zero-filling is needed for the
% numbers used.
%
%\DescribeMacro {\NotesAfterCitations}
% \begin{syntax}
% \cs{NotesAfterCitations} \marg{note-list}
% \end{syntax}
%\DescribeMacro {\NotesBeforeCitations}
% \begin{syntax}
% \cs{NotesBeforeCitations} \marg{note-list}
% \end{syntax}
% These functions record the notes which have been placed outside of
% the normal order by the package. This information is used to check
% for changes in note order between LaTeX runs, so that the need for
% re-running LaTeX and BibTeX can be detected.
%
%\section{Notes for upgrading from version one}
%
% Documents which compile with version one of \pkg{notes2bib} should
% work equally well with version two. The package recognises the
% older options and user functions (for example \cs{niibsetup}). These
% are not documented here as all new documents should use the improved
% structures provided here. As some auxiliary file functions have been
% altered, it may be necessary to delete \file{aux} files for documents
% processed initially with older versions of \pkg{notes2bib}.
%
%\end{documentation}
%
%\begin{implementation}
%
%\section{Implementation}
%
%\changes{v2.0a}{2009/11/01}{Changed all \cs{cs_set:Nn}, \emph{etc}.\
% to \cs{cs_set:Npn}, \emph{etc}.\ to match \pkg{expl3} changes}
%\changes{v2.0b}{2010/01/09}{A few missed \cs{cs_set:Nn}, \cs{cs_set:Nx},
% \emph{etc}.\ changed}
%\changes{v2.0b}{2010/01/09}{Reformatted code to reflect style settled
% on by LaTeX3 Project}
%\changes{v2.0c}{2010/02/09}{Switch from \cs{iow_space:} to
% \cs{c_space_tl}}
%\changes{v2.0c}{2010/02/09}{Collect all notes into a token register
% and write in one go to file (using a pooled stream)}
%\changes{v2.0c}{2010/02/09}{Items \cs{AtBeginDocument} and
% \cs{AtEndDocument} now set up directly (no functions needed)
% unless the function is required for other reasons}
%\changes{v2.0c}{2010/03/30}{Make internal functions protected}
%\changes{v2.0c}{2010/03/30}{Change token registers to token list
% variables}
%\changes{v2.0g}{2011/06/30}{Switch from \cs{intexpr_\ldots} to
% \cs{int_\ldots} functions}
%\changes{v2.0j}{2012/11/07}{Change internal prefix}
%
% \begin{macrocode}
%<*package>
% \end{macrocode}
%
% \begin{macrocode}
%<@@=notestobib>
% \end{macrocode}
%
% Version data to start with.
% \begin{macrocode}
\ProvidesExplPackage
{notes2bib} {2013/07/11} {2.0k}
{Integrating notes into the bibliography}
\RequirePackage{l3keys2e}
% \end{macrocode}
%
%\subsection{Variables and constants}
%
%\begin{macro}{\c_@@_file_message_tl}
% A short piece of text that is added to the top of an auto-generated
% file. Setting this up as a constant means that it can be changed
% (for example for translation) if necessary.
% \begin{macrocode}
\tl_new:N \c_@@_file_message_tl
\tl_set:Nn \c_@@_file_message_tl {
\iow_char:N \% ~
This~is~an~auxiliary~file~used~by~the~'notes2bib'~package.
\iow_newline:
\iow_char:N \% ~
This~file~may~safely~be~deleted.
\iow_newline:
\iow_char:N \% ~
It~will~be~recreated~as~required.
\iow_newline:
}
% \end{macrocode}
%\end{macro}
%
%\begin{macro}{\g_@@_after_clist}
%\begin{macro}{\g_@@_before_clist}
% Notes to be placed either before or after citations need to be tracked
% by the module. Simple comma lists will achieve this.
% \begin{macrocode}
\clist_new:N \g_@@_after_clist
\clist_new:N \g_@@_before_clist
% \end{macrocode}
%\end{macro}
%\end{macro}
%
%\begin{macro}{\g_@@_all_after_clist}
%\begin{macro}{\g_@@_all_before_clist}
% As notes after citations can be flushed, there is a need for a second
% list which is never emptied.
% \begin{macrocode}
\clist_new:N \g_@@_all_after_clist
\clist_new:N \g_@@_all_before_clist
% \end{macrocode}
%\end{macro}
%\end{macro}
%
%\begin{macro}{\g_@@_note_int}
% A counter for the automatically-created notes is needed. This is a
% global value (life will get very complicated if not).
% \begin{macrocode}
\int_new:N \g_@@_note_int
% \end{macrocode}
%\end{macro}
%
%\begin{macro}{\l_@@_presort_tl}
%\begin{macro}{\l_@@_sortkey_tl}
% The text used for sorting citations is stored here: it is never set
% directly, as it depends on the type of sorting taking place.
% \begin{macrocode}
\tl_new:N \l_@@_presort_tl
\tl_new:N \l_@@_sortkey_tl
% \end{macrocode}
%\end{macro}
%\end{macro}
%
%\begin{macro}{\g_@@_previous_after_clist}
%\begin{macro}{\g_@@_previous_before_clist}
% For comparison purposes, the lists of out-of-order notes from the
% previous LaTeX run are needed.
% \begin{macrocode}
\clist_new:N \g_@@_previous_after_clist
\clist_new:N \g_@@_previous_before_clist
% \end{macrocode}
%\end{macro}
%\end{macro}
%
%\begin{macro}{\g_@@_previous_notes_int}
% The total number of notes created is needed, as this is used to see
% if any zero-padding is required for the numbers. Of course, for this
% to work there has to be a second LaTeX run.
% \begin{macrocode}
\int_new:N \g_@@_previous_notes_int
% \end{macrocode}
%\end{macro}
%
%\begin{macro}{\g_@@_notes_tl}
% Used to collect up the note text for writing in a single block
% at the end of the document.
% \begin{macrocode}
\tl_new:N \g_@@_notes_tl
% \end{macrocode}
%\end{macro}
%
%\begin{macro}{\l_@@_sortkey_field_tl}
% The key for sorting is called \texttt{key} by standard \BibTeX\ and
% \texttt{sortkey} by \pkg{biblatex}. It keeps everything clearer if
% the appropriate name is stored in a token list. The value itself is
% set up later.
% \begin{macrocode}
\tl_new:N \l_@@_sortkey_field_tl
% \end{macrocode}
%\end{macro}
%
%\begin{macro}{\g_@@_total_notes_int}
% Tracks the total number of notes created, so that the module can tell
% if any have been used.
% \begin{macrocode}
\int_new:N \g_@@_total_notes_int
% \end{macrocode}
%\end{macro}
%
%\subsection{Control options}
%
%\begin{macro}{\@@_cite:w}
% The underlying function for citation starts off with no value:
% this is then set up by the key--value settings given next.
% \begin{macrocode}
\cs_new_nopar:Npn \@@_cite:w { }
% \end{macrocode}
%\end{macro}
%
%\begin{macro}{\g_@@_filename_tl}
%\begin{macro}{\l_@@_keyword_tl}
%\begin{macro}{\l_@@_note_field_tl}
%\begin{macro}{\l_@@_note_name_tl}
%\begin{macro}{\l_@@_presort_after_tl}
%\begin{macro}{\l_@@_presort_before_tl}
%\begin{macro}{\l_@@_presort_mixed_tl}
%\begin{macro}{\l_@@_record_type_tl}
%\begin{macro}{\l_@@_refsection_name_tl}
%\begin{macro}{\l_@@_refsection_sep_tl}
%\begin{macro}{\l_@@_record_type_tl}
%\begin{macro}{\l_@@_sortkey_after_tl}
%\begin{macro}{\l_@@_sortkey_before_tl}
%\begin{macro}{\l_@@_sortkey_mixed_tl}
%\begin{macro}{\l_@@_write_sortkey_bool}
% The various package options are created.
% \begin{macrocode}
\keys_define:nn { notes2bib } {
cite-function .code:n =
{ \AtBeginDocument { \cs_set_eq:NN \@@_cite:w #1 } } ,
file-name .tl_gset_x:N = \g_@@_filename_tl ,
convert-endnotes .choice: ,
convert-endnotes
/ false .code:n =
{ \AtBeginDocument { \@@_from_bibnote:n { endnote } } } ,
convert-endnotes
/ true .code:n =
{ \AtBeginDocument { \@@_to_bibnote:n { endnote } } } ,
convert-footnotes .choice: ,
convert-footnotes
/ false .code:n =
{ \AtBeginDocument { \@@_from_bibnote:n { footnote } } } ,
convert-footnotes
/ true .code:n =
{ \AtBeginDocument { \@@_to_bibnote:n { footnote } } } ,
keyword-entry .tl_set:N = \l_@@_keyword_tl ,
note-field .tl_set:N = \l_@@_note_field_tl ,
note-name .tl_set:N = \l_@@_note_name_tl ,
placement .choice: ,
placement
/ after .code:n =
{
\cs_set_eq:NN \@@_mark_note:n \@@_mark_note_after:n
\tl_set_eq:NN \l_@@_presort_tl \l_@@_presort_after_tl
\tl_set_eq:NN \l_@@_sortkey_tl \l_@@_sortkey_after_tl
},
placement
/ before .code:n =
{
\cs_set_eq:NN \@@_mark_note:n \@@_mark_note_before:n
\tl_set_eq:NN \l_@@_presort_tl \l_@@_presort_before_tl
\tl_set_eq:NN \l_@@_sortkey_tl \l_@@_sortkey_before_tl
},
placement
/ mixed .code:n =
{
\cs_set_eq:NN \@@_mark_note:n \@@_mark_note_mixed:n
\tl_set_eq:NN \l_@@_presort_tl \l_@@_presort_mixed_tl
\tl_set_eq:NN \l_@@_sortkey_tl \l_@@_sortkey_mixed_tl
},
presort-after .tl_set:N = \l_@@_presort_after_tl ,
presort-before .tl_set:N = \l_@@_presort_before_tl ,
presort-mixed .tl_set:N = \l_@@_presort_mixed_tl ,
record-type .tl_set:N = \l_@@_record_type_tl ,
refsection-name .tl_set:N = \l_@@_refsection_name_tl ,
refsection-separator .tl_set:N = \l_@@_refsection_sep_tl ,
sort-key-after .tl_set:N = \l_@@_sortkey_before_tl ,
sort-key-before .tl_set:N = \l_@@_sortkey_after_tl ,
sort-key-mixed .tl_set:N = \l_@@_sortkey_mixed_tl ,
use-sort-key .bool_set:N = \l_@@_write_sortkey_bool ,
}
% \end{macrocode}
%\end{macro}
%\end{macro}
%\end{macro}
%\end{macro}
%\end{macro}
%\end{macro}
%\end{macro}
%\end{macro}
%\end{macro}
%\end{macro}
%\end{macro}
%\end{macro}
%\end{macro}
%\end{macro}
%\end{macro}
%
% Default values for the keys are set up. Many of these probably never
% change, but done in this way the package is much more flexible.
% \begin{macrocode}
\keys_set:nn { notes2bib } {
cite-function = \cite ,
file-name = notes2bib-\jobname ,
keyword-entry = note ,
note-field = note ,
note-name = Note ,
presort-after = mn ,
presort-before = ml ,
presort-mixed = mm ,
record-type = misc ,
refsection-name = Refsection ,
refsection-separator = - ,
sort-key-after = zzz ,
sort-key-before = aaa ,
use-sort-key = true
}
% \end{macrocode}
%
%\changes{v2.0d}{2011/01/08}{Use new \cs{bibnote} record type with
% \pkg{biblatex} v1.1a or later}
%\changes{v2.0e}{2011/01/18}{Add back references to bibnotes}
% A few options need to be altered or deactivated at the start of
% the document.
% \begin{macrocode}
\AtBeginDocument {
\@ifpackageloaded { biblatex }
{
\@ifpackagelater { biblatex } { 2011/01/08 }
{
\keys_set:nn { notes2bib }
{ record-type = bibnote }
\DeclareBibliographyDriver { bibnote }
{
\usebibmacro { begentry }
\printfield { note }
\setunit { \bibpagerefpunct }
\newblock
\usebibmacro { pageref }
\usebibmacro { finentry }
}
}
{ }
}
{ }
\keys_define:nn { notes2bib }
{
cite-function .code:n =
{ \cs_set_eq:NN \@@_cite:w #1 } ,
file-name .code:n =
{ \msg_info:nnn { notes2bib } { preamble-only } { file-name } },
convert-endnotes / false .code:n =
{ \@@_from_bibnote:n { endnote } } ,
convert-endnotes / true .code:n =
{ \@@_to_bibnote:n { endnote } } ,
convert-footnotes / false .code:n =
{ \@@_from_bibnote:n { footnote } } ,
convert-footnotes / true .code:n =
{ \@@_to_bibnote:n { footnote } } ,
}
}
\msg_new:nnn { notes2bib } { preamble-only }
{ The~option~'#1'~can~only~be~used~in~the~preamble. }
% \end{macrocode}
%
%\subsection{Support for \pkg{biblatex} \texttt{refsection} system}
%
%\begin{macro}{\@@_insert_refsection:}
%\changes{v2.0d}{2011/01/08}{Added support for refsections}
% When using \pkg{biblatex}, it's possible that \texttt{refsection}s are
% in use. If so, to ensure that labels are always unique the
% \texttt{refsection} number is added to the label.
% \begin{macrocode}
\cs_new_nopar:Npn \@@_insert_refsection: { }
\AtBeginDocument {
\@ifpackageloaded { biblatex }
{
\cs_set_nopar:Npn \@@_insert_refsection:
{
\int_compare:nNnT { \value { refsection } } > { 0 }
{
\tl_use:N \l_@@_refsection_name_tl
\arabic { refsection }
\tl_use:N \l_@@_refsection_sep_tl
}
}
}
{ }
}
% \end{macrocode}
%\end{macro}
%
%\subsection{Options from version one}
%
%\changes{v2.0k}{2013/07/11}{Drop use of \texttt{.meta:x} key property}
% The new option names are preferred, but the old ones still need to
% work correctly.
% \begin{macrocode}
\keys_define:nn { notes2bib } {
cite .code:n =
{
\use:x
{ \keys_set:nn { notes2bib } { cite-function = \exp_not:c {#1} } }
} ,
debug .code:n = { } ,
endnotes .meta:n = { convert-footnotes = #1 } ,
etex .code:n = { } ,
field .meta:n = { note-field = #1 } ,
footnotes .meta:n = { convert-footnotes = #1 } ,
head .meta:n = { placement = before } ,
keyhead .meta:n = { sort-key-before = #1 } ,
keytail .meta:n = { sort-key-after = #1 } ,
keynone .meta:n = { sort-key-mixed = #1 } ,
keyword .meta:n = { keyword-entry = #1 } ,
log .meta:n = { } ,
name .meta:n = { note-name = #1 } ,
prefix .meta:n = { file-name = #1 \jobname } ,
presorthead .meta:n = { presort-before = #1 } ,
presorttail .meta:n = { presort-after = #1 } ,
presortnone .meta:n = { presort-mixed = #1 } ,
record .meta:n = { record-type = #1 } ,
sort .choice: ,
sort / head .meta:n = { placement = before } ,
sort / none .meta:n = { placement = after } ,
sort / tail .meta:n = { placement = mixed } ,
tail .meta:n = { placement = after } ,
writekey .meta:n = { use-sort-key = #1 }
}
% \end{macrocode}
%
%\subsection{Utility functions}
%
%\begin{macro}{\@@_note_name:}
% When note citations are generated automatically, the text to indicate
% a note plus the number of the current note needs to be turned into
% something printable. The value tests here mean that if there are more
% than nine notes, notes 1--9 have the number padded to get proper
% sorting. This needs two passes, as the total number of notes is only
% available at the end of the LaTeX run.
% \begin{macrocode}
\cs_new_nopar:Npn \@@_note_name: {
\@@_insert_refsection:
\tl_use:N \l_@@_note_name_tl
\int_compare:nNnT \g_@@_previous_notes_int > \c_nine
{ \int_compare:nNnT \g_@@_note_int < \c_ten { 0 } }
\int_to_arabic:n { \g_@@_note_int }
}
% \end{macrocode}
%\end{macro}
%
%\begin{macro}{\@@_filesw:}
% Making sorting work means messing about with \cs{if@filesw}. The
% function created here is used to store the current status of the
% flag.
% \begin{macrocode}
\cs_new_nopar:Npn \@@_filesw: { }
% \end{macrocode}
%\end{macro}
%
%\subsection{Marking notes in the text}
%
%\begin{macro}{\@@_mark_note:n}
%\begin{macro}{\@@_mark_note:x}
% The function to mark note positions is initially declared with no
% expansion. The real meaning will be set by the key--value setting,
% and depends on the placement of notes compared with real citations.
% \begin{macrocode}
\cs_new:Npn \@@_mark_note:n #1 { }
\cs_generate_variant:Nn \@@_mark_note:n { x }
% \end{macrocode}
%\end{macro}
%\end{macro}
%
%\begin{macro}{\@@_mark_note_after:n}
%\begin{macro}[aux]{\@@_mark_note_after_aux:n}
% For notes which come after citations, the entry is recorded and an
% auxiliary is called. The nature of the second function is dependent
% on the other packages loaded.
% \begin{macrocode}
\cs_new_protected:Npn \@@_mark_note_after:n #1 {
\int_gincr:N \g_@@_total_notes_int
\clist_gput_right:Nx \g_@@_after_clist {#1}
\@@_mark_note_after_aux:n {#1}
}
\cs_new:Npn \@@_mark_note_after_aux:n #1 { }
% \end{macrocode}
%\end{macro}
%\end{macro}
%
%\begin{macro}{\@@_mark_note_before:n}
% Notes to appear before all citations are simple recorded, as they will
% be set up on the next LaTeX run.
% \begin{macrocode}
\cs_new_protected:Npn \@@_mark_note_before:n #1 {
\int_gincr:N \g_@@_total_notes_int
\clist_gput_right:Nx \g_@@_before_clist {#1}
\@@_cite:w {#1}
}
% \end{macrocode}
%\end{macro}
%
%\begin{macro}{\@@_mark_note_mixed:n}
% Mixed citations are very easy to handle: just use whatever cite
% command is current.
% \begin{macrocode}
\cs_new_protected:Npn \@@_mark_note_mixed:n #1 {
\int_gincr:N \g_@@_total_notes_int
\@@_cite:w {#1}
}
% \end{macrocode}
%\end{macro}
%
%\subsection{Writing note text to the database}
%
%\begin{macro}{\@@_write_field:nn}
%\begin{macro}{\@@_write_field:Vn}
% To keep the auto-generated database readable, there needs to be some
% formatting. This is provided by using a dedicated function to
% write the various fields to it. Although the \texttt{V} variant is
% not technically needed (writing expands everything), it helps to keep
% the intention of the code here clearer.
% \begin{macrocode}
\cs_new:Npn \@@_write_field:nn #1#2 {
\c_space_tl \c_space_tl #1 \c_space_tl = \c_space_tl {#2} ,
\iow_newline:
}
\cs_generate_variant:Nn \@@_write_field:nn { V }
% \end{macrocode}
%\end{macro}
%\end{macro}
%
%\begin{macro}{\@@_write_note:nn}
%\changes{v2.0b}{2010/01/09}{Add \cs{else:} branch to handle case
% where \cs{if@filesw} is false}
%\begin{macro}[aux]{\@@_write_note_aux:nn}
%\begin{macro}{\@@_write_note:xn}
% The writing function takes two arguments: the name of the note, and
% the text itself. There is a need to check on the LaTeX2e system to
% turn off writing, with a hand-over so there is no problem with
% balancing ifs.
% \begin{macrocode}
\cs_new_protected_nopar:Npn \@@_write_note:nn {
\if@filesw
\exp_after:wN \@@_write_note_aux:nn
\else:
\exp_after:wN \use_none:nn
\fi:
}
\cs_new_protected:Npn \@@_write_note_aux:nn #1#2 {
\tl_gput_right:Nx \g_@@_notes_tl
{
@ \l_@@_record_type_tl
{
#1 , \iow_newline:
\@@_write_field:Vn \l_@@_note_field_tl { \exp_not:n {#2} }
\bool_if:NT \l_@@_write_sortkey_bool
{
\@@_write_field:Vn \l_@@_sortkey_field_tl
{ \l_@@_sortkey_tl #1 }
}
\@@_write_field:nn { keywords } { \l_@@_keyword_tl }
\@@_write_field:nn { presort } { \l_@@_presort_tl }
}
\iow_newline:
\iow_newline:
}
}
\cs_generate_variant:Nn \@@_write_note:nn { x }
% \end{macrocode}
%\end{macro}
%\end{macro}
%\end{macro}
%
%\subsection{Handling out of order notes}
%
%\begin{macro}{\@@_record_notes:}
%\begin{macro}[aux]{\@@_flush_notes_aux:}
% Notes after citations are not written to the \file{aux} file when
% given, but are held in a queue. This is flushed here, which means
% actually doing the citation and also recording the notes so they
% are available in the next LaTeX run. The list is also transferred
% to a secondary one, which is used for comparison purposes right at the
% end of the document.
% \begin{macrocode}
\cs_new_protected_nopar:Npn \@@_record_notes: {
\if@filesw
\exp_after:wN \@@_flush_notes_aux:
\fi
}
\cs_new_protected_nopar:Npn \@@_flush_notes_aux: {
\clist_if_empty:NF \g_@@_before_clist
{
\iow_now:Nx \@auxout
{ \NotesBeforeCitations { \exp_not:V \g_@@_before_clist } }
\clist_gput_right:NV \g_@@_all_before_clist \g_@@_before_clist
\clist_gclear:N \g_@@_before_clist
}
\clist_if_empty:NF \g_@@_after_clist
{
\iow_now:Nx \@auxout
{ \NotesAfterCitations { \exp_not:V \g_@@_after_clist } }
\exp_args:NV \nocite \g_@@_after_clist
\clist_gput_right:NV \g_@@_all_after_clist \g_@@_after_clist
\clist_gclear:N \g_@@_after_clist
}
}
% \end{macrocode}
%\end{macro}
%\end{macro}
%
%\subsection{Interchanging note types}
%
%\begin{macro}{\@@_to_bibnote:n}
% Converting other notes to bibliography notes is simple: just set
% them equal.
% \begin{macrocode}
\cs_new_protected_nopar:Npn \@@_to_bibnote:n #1 {
\cs_set_eq:cN {#1} \bibnote
\cs_set_eq:cN { #1 mark } \bibnotemark
\cs_set_eq:cN { #1 text } \bibnotetext
}
% \end{macrocode}
%\end{macro}
%
%\begin{macro}{\@@_from_bibnote:n}
% The reverse process needs the original definitions, which are saved
% by the module for later recovery.
% \begin{macrocode}
\cs_new_protected_nopar:Npn \@@_from_bibnote:n #1 {
\cs_set_eq:cc {#1} { @@_ #1 :w }
\cs_set_eq:cc { #1 mark } { @@_ #1 mark:w }
\cs_set_eq:cc { #1 text } { @@_ #1 text:w }
}
% \end{macrocode}
%\end{macro}
%
%\begin{macro}{\@@_endnote:w}
%\begin{macro}{\@@_endnotemark:w}
%\begin{macro}{\@@_endnotetext:w}
%\begin{macro}{\@@_footnote:w}
%\begin{macro}{\@@_footnotemark:w}
%\begin{macro}{\@@_footnotetext:w}
% At the start of the document, the definitions for endnotes and
% footnotes are saved so that footnotes and endnotes can be turned into
% bibliography notes and back again.
% \begin{macrocode}
\AtBeginDocument {
\cs_set_eq:NN \@@_endnote:w \endnote
\cs_set_eq:NN \@@_endnotemark:w \endnotemark
\cs_set_eq:NN \@@_endnotetext:w \endnotetext
\cs_set_eq:NN \@@_footnote:w \footnote
\cs_set_eq:NN \@@_footnotemark:w \footnotemark
\cs_set_eq:NN \@@_footnotetext:w \footnotetext
}
% \end{macrocode}
%\end{macro}
%\end{macro}
%\end{macro}
%\end{macro}
%\end{macro}
%\end{macro}
%
%\subsection{Package-dependent code}
%
%\begin{macro}{\@@_create_print_notes:}
%\begin{macro}{\@@_print_notes:}
% The method for printing notes depends on whether \pkg{biblatex} is
% in use. If it is, then a selective call to \cs{printbibliography} is
% made. Otherwise, the original \cs{bibliography} function is called,
% and passed the name of the notes file.
% \begin{macrocode}
\AtBeginDocument {
\@ifpackageloaded { biblatex }
{
\cs_new_protected_nopar:Npn \@@_print_notes:
{
\cs_set_nopar:Npx \@@_create_print_notes:
{
\printbibliography
[ keyword = \exp_not:V \l_@@_keyword_tl ]
}
\@@_create_print_notes:
}
}
{
\cs_new_protected_nopar:Npn \@@_print_notes:
{ \exp_args:NV \@@_bibliography:n \g_@@_filename_tl }
}
}
\cs_new_nopar:Npn \@@_create_print_notes: { }
% \end{macrocode}
%\end{macro}
%\end{macro}
%
%\begin{macro}{\@@_attach_bibliography:}
%\changes{v2.0d}{2011/01/08}{Use new \cs{bibliography*} function with
% \pkg{biblatex} v1.1a or later}
%\changes{v2.0f}{2011/02/23}{Use new \cs{addglobalbib} function with
% \pkg{biblatex} v1.2 or later}
%\changes{v2.0h}{2011/09/09}{Use \cs{addglobalbib} function irrespective
% of load order}
%\begin{macro}{\bibliography}
%\begin{macro}{\@@_bibliography:n}
% Getting the database created here to be scanned by \BibTeX\ is
% dependant on whether \pkg{biblatex} is being used. If it is, and it is
% already loaded, then the data can be added now. On the other hand, if
% it is not already loaded a check is made at the end of the preamble.
% The \cs{bibliography} function has to be patched if \pkg{biblatex} is
% not in use.
% \begin{macrocode}
\cs_new_nopar:Npn \@@_attach_bibliography: {
\@ifpackageloaded { biblatex }
{
\@ifpackagelater { biblatex } { 2011/01/08 }
{
\@ifpackagelater { biblatex } { 2011/02/12 }
{
\exp_args:No \addglobalbib
{ \g_@@_filename_tl .bib }
}
{ \exp_args:NNV \bibliography * \g_@@_filename_tl }
}
{ \exp_args:NV \bibliography \g_@@_filename_tl }
}
{
\cs_new_eq:NN \@@_bibliography:n \bibliography
\RenewDocumentCommand \bibliography { m }
{
\int_compare:nNnTF \g_@@_total_notes_int = \c_zero
{ \@@_bibliography:n {##1} }
{
\cs_set_nopar:Npx \@@_attach_bibliography:
{
\exp_not:N \@@_bibliography:n
{
\exp_not:n {##1} , \exp_not:V \g_@@_filename_tl
}
}
\@@_attach_bibliography:
}
}
}
}
\@ifpackageloaded { biblatex }
{
\@ifpackagelater { biblatex } { 2011/01/08 }
{
\@ifpackagelater { biblatex } { 2011/02/12 }
{
\exp_args:No \addglobalbib
{ \g_@@_filename_tl .bib }
}
{ \exp_args:NNV \bibliography * \g_@@_filename_tl }
}
{ \exp_args:NV \bibliography \g_@@_filename_tl }
}
{ \AtBeginDocument { \@@_attach_bibliography: } }
% \end{macrocode}
%\end{macro}
%\end{macro}
%\end{macro}
%
% \pkg{biblatex} uses the name \texttt{sortkey} for a key to sort by,
% whereas other style call the same concept \texttt{key}.
% \begin{macrocode}
\AtBeginDocument {
\@ifpackageloaded { biblatex }
{ \tl_set:Nn \l_@@_sortkey_field_tl { sortkey } }
{ \tl_set:Nn \l_@@_sortkey_field_tl { key } }
}
% \end{macrocode}
%
% To get the correct ordering for notes, writing to the \file{aux} file
% needs to be turned on and off. With \pkg{biblatex}, there is a
% convenient hook for this. Otherwise, everything has to happen after
% the citation command.
% \begin{macrocode}
\AtBeginDocument {
\@ifpackageloaded { biblatex }
{
\cs_set:Npn \@@_mark_note_after_aux:n #1
{
\AtNextCite { \@fileswfalse }
\@@_cite:w {#1}
}
}
{
\cs_set:Npn \@@_mark_note_after_aux:n #1
{
\cs_set_eq:NN \@@_filesw: \if@filesw
\@fileswfalse
\@@_cite:w {#1}
\cs_set_eq:NN \if@filesw \@@_filesw:
}
}
}
% \end{macrocode}
%
%\begin{macro}{\@@_aux_hook:}
% If the \pkg{cite} package is loaded, then there is a hook to
% reset the \file{aux} file after the citation. This means that moving
% punctuation will still work under these circumstances. However, the
% way \pkg{cite} sets things up is a little complicated. The link needs
% to be made at the end of the \cs{document} macro.
% \begin{macrocode}
\AtBeginDocument {
\@ifpackageloaded { cite }
{
\cs_set:Npn \@@_mark_note_after_aux:n #1
{
\cs_set_eq:NN \@@_filesw: \if@filesw
\@fileswfalse
\cs_set_nopar:Npn \@@_aux_hook:
{
\cs_set_eq:NN \if@filesw \@@_filesw:
\cs_set_nopar:Npn \@@_aux_hook: { }
}
\@@_cite:w {#1}
}
\cs_new_nopar:Npn \@@_aux_hook: { }
\tl_gput_right:Nn \g_@@_document_hook_tl
{
\cs_if_exist:NF \@restore@auxhandle
{ \tl_new:N \@restore@auxhandle }
\tl_put_right:Nn \@restore@auxhandle { \@@_aux_hook: }
}
}
{ }
}
% \end{macrocode}
%\end{macro}
%
%\subsection{User functions}
%
%\begin{macro}{\bibnote}
%\begin{macro}{\@@_bibnote:nn}
%\begin{macro}{\@@_bibnote:xn}
% Creating a not from scratch is a multi-step operation. First, check
% if a label was given by the user. If it was not, then one is created
% by incrementing the automatic number and fully expanding
% \cs{@@_note_name:}. The second phase is to create the note. The text
% is dealt with first as this leaves the note-marking code at the end
% of the function (needed if punctuation is to be moved).
% \begin{macrocode}
\NewDocumentCommand \bibnote { o +m } {
\IfNoValueTF {#1}
{
\int_gincr:N \g_@@_note_int
\@@_bibnote:xn { \@@_note_name: } {#2}
}
{ \@@_bibnote:xn { \@@_insert_refsection: #1 } {#2} }
}
\cs_new_protected:Npn \@@_bibnote:nn #1#2 {
\@@_write_note:nn {#1} {#2}
\@@_mark_note:n {#1}
}
\cs_generate_variant:Nn \@@_bibnote:nn { x }
% \end{macrocode}
%\end{macro}
%\end{macro}
%\end{macro}
%
%\begin{macro}{\bibnotemark}
% Simply marking a note has similar requirements, but as there is only
% a single internal function to call the code is less complex.
% \begin{macrocode}
\NewDocumentCommand \bibnotemark { o } {
\IfNoValueTF {#1}
{
\int_gincr:N \g_@@_note_int
\@@_mark_note:x { \@@_note_name: }
}
{ \@@_mark_note:x { \@@_insert_refsection: #1 } }
}
% \end{macrocode}
%\end{macro}
%
%\begin{macro}{\bibnotetext}
% As text for a note uses the same number as the preceeding mark,
% things are slightly less complex here. The basic \texttt{o} argument
% type is used as this means that full expansion of the note name can
% take place \enquote{early}.
% \begin{macrocode}
\NewDocumentCommand \bibnotetext { o +m } {
\IfNoValueTF {#1}
{ \@@_write_note:xn { \@@_note_name: } {#2} }
{ \@@_write_note:xn { \@@_insert_refsection: #1 } {#2} }
}
% \end{macrocode}
%\end{macro}
%
%\begin{macro}{\recordnotes}
% A direct call to the internal function: no arguments are needed.
% \begin{macrocode}
\NewDocumentCommand \recordnotes { } {
\@@_record_notes:
}
% \end{macrocode}
%\end{macro}
%
%\begin{macro}{\bibnotesetup}
% A user set up function.
% \begin{macrocode}
\NewDocumentCommand \bibnotesetup { m } {
\keys_set:nn { notes2bib } {#1}
}
% \end{macrocode}
%\end{macro}
%
%\begin{macro}{\printbibnotes}
% A direct translation for the internal function.
% \begin{macrocode}
\NewDocumentCommand \printbibnotes { } {
\@@_print_notes:
}
% \end{macrocode}
%\end{macro}
%
%\begin{macro}{\citenote}
%\changes{v2.0}{2009/09/25}{Depreciated in favour of \cs{bibnotemark}}
%\begin{macro}{\flushnotestack}
%\changes{v2.0}{2009/09/28}{Depreciated in favour of
% \cs{recordnotes}}
%\begin{macro}{\niibsetup}
%\changes{v2.0}{2009/09/25}{Depreciated in favour of \cs{bibnotesetup}}
% A few functions which are depreciated in version two.
% \begin{macrocode}
\NewDocumentCommand \citenote { m } {
\@@_mark_note:n {#1}
}
\cs_new_eq:NN \flushnotestack \recordnotes
\cs_new_eq:NN \niibsetup \bibnotesetup
% \end{macrocode}
%\end{macro}
%\end{macro}
%\end{macro}
%
%\subsection{Auxiliary file functions}
%
% \pkg{notes2bib} needs to write information to the \file{aux} file
% for carrying information between runs. Rather than give them cryptic
% names, they have long design-level ones. They are also declared
% as protected functions so that writing to the \file{aux} file is
% easier.
%
%\begin{macro}{\NotesAfterCitations}
%\changes{v2.0b}{2009/01/09}{Define using
% \cs{cs_new_protected_nopar:Npn}}
%\begin{macro}{\NotesBeforeCitations}
%\changes{v2.0b}{2009/01/09}{Define using
% \cs{cs_new_protected_nopar:Npn}}
% The functions to pass information on out-of-order notes from one
% run to another both add the information to the appropriate lists.
% For notes before citations, there is also a need to put the
% \cs{citation} calls into the \file{aux} file at the correct stage.
% \begin{macrocode}
\cs_new_protected_nopar:Npn \NotesAfterCitations #1 {
\clist_gput_right:Nn \g_@@_previous_after_clist {#1}
}
\cs_new_protected_nopar:Npn \NotesBeforeCitations #1 {
\clist_gput_right:Nn \g_@@_previous_after_clist {#1}
\tl_gput_right:Nn \g_@@_document_hook_tl { \nocite {#1} }
}
% \end{macrocode}
%\end{macro}
%\end{macro}
%
%\begin{macro}{\TotalNotes}
%\changes{v2.0b}{2009/01/09}{Define using
% \cs{cs_new_protected_nopar:Npn}}
% This function allows the total number of bibliography notes to be
% carried forward from one run to the next.
% \begin{macrocode}
\cs_new_protected_nopar:Npn \TotalNotes #1 {
\int_gset:Nn \g_@@_previous_notes_int {#1}
}
% \end{macrocode}
%\end{macro}
%
%\subsection{Code at the start of the document}
%
%\begin{macro}{\g_@@_document_hook_tl}
% \pkg{notes2bib} needs to be able to carry out a few tasks right at the
% beginning of the document. To do that, a hook is added to the
% \cs{document} macro, which can be treated as a token list variable
% as it has no arguments.
% \begin{macrocode}
\tl_gput_right:Nn \document { \g_@@_document_hook_tl }
\tl_new:N \g_@@_document_hook_tl
% \end{macrocode}
%\end{macro}
%
%\subsection{Code at end of the document}
%
% There are a few tasks which have to be carried out a the end of
% the LaTeX run, so that data is available for the next run.
%
% First, all of the notes need to be added to the auxiliary file.
% This ensures that the comparisons made in the next step make sense.
% \begin{macrocode}
\AtEndDocument { \@@_record_notes: }
% \end{macrocode}
%
% The list of out-of-order notes from the current run needs to match
% that from the previous run. If not, then there is a need to re-run
% LaTeX.
% \begin{macrocode}
\AtEndDocument {
\tl_if_eq:NNTF \g_@@_all_before_clist \g_@@_previous_before_clist
{
\tl_if_eq:NNF \g_@@_all_after_clist \g_@@_previous_after_clist
{ \msg_info:nn { notes2bib } { rerun } }
}
{ \msg_info:nn { notes2bib } { rerun } }
}
\msg_new:nnn { notes2bib } { rerun } {
To~get~notes~in~the~correct~order,~please~run: \\%
\c_space_tl 1)~LaTeX \\
\c_space_tl 2)~BibTeX \\
\c_space_tl 3)~LaTeX
}
% \end{macrocode}
%
%\begin{macro}{\@@_write_note_file:}
%\begin{macro}{\g_@@_file_iow}
% \changes{v2.0i}{2012/07/16}{Define stream in all cases}
% The notes themselves are now written in one block: this avoids
% using up a stream for any longer than necessary.
% \begin{macrocode}
\AtEndDocument {
\if@filesw
\exp_after:wN \@@_write_note_file:
\fi:
}
\cs_new_protected_nopar:Npn \@@_write_note_file: {
\tl_if_empty:NF \g_@@_notes_tl {
\iow_open:Nn \g_@@_file_iow { \g_@@_filename_tl .bib }
\iow_now:Nx \g_@@_file_iow { \c_@@_file_message_tl }
\iow_now:Nx \g_@@_file_iow
{ \exp_not:V \g_@@_notes_tl }
\iow_close:N \g_@@_file_iow
}
}
\iow_new:N \g_@@_file_iow
% \end{macrocode}
%\end{macro}
%\end{macro}
%
% The total number of bibliography notes from the current run is
% recorded to the \file{aux} file. This will then be picked up in the
% \begin{macrocode}
\AtEndDocument {
\int_compare:nNnT \g_@@_note_int > \c_zero
{
\iow_now:Nx \@auxout
{ \TotalNotes { \int_to_arabic:n { \g_@@_note_int } } }
}
}
% \end{macrocode}
%
%\subsection{Tidying up}
%
%\begin{macro}{\thanks}
% The \cs{thanks} macro has to be replaced by one that uses the original
% \cs{footnotemark} and \cs{footnotetext} under all circumstances. This
% is the kernel definition modified: if an alternative version is in use
% things may go wrong.
% \begin{macrocode}
\cs_set:Npn \thanks #1 {
\@@_footnotemark:w
\protected@xdef \@thanks
{
\@thanks
\protect \@@_footnotetext:w [ \the \c@footnote ] {#1}
}
}
% \end{macrocode}
%\end{macro}
%
% The final job is to set note placement: this is done here as various
% parts of the module need to be in place for this to work correctly.
% \begin{macrocode}
\keys_set:nn { notes2bib } { placement = mixed }
% \end{macrocode}
%
% Any load time options are processed.
% \begin{macrocode}
\ProcessKeysOptions { notes2bib }
% \end{macrocode}
%
% \begin{macrocode}
%</package>
% \end{macrocode}
%
%\end{implementation}
%
%\PrintChanges
%\PrintIndex
|