blob: 467da677a2436cfd19f13ea4ac029fd7a7ea565a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
%% Redefine \@citex[]{} from l. 6075 of /usr/local/lib/tex/latex2e/unpacked/latex.ltx
%% so as to permit easier line breaking after commas in reference lists
\def\@citex[#1]#2{%
\let\@citea\@empty
\@cite{\@for\@citeb:=#2\do
{\@citea\def\@citea{,\penalty-1000\ }%
\edef\@citeb{\expandafter\@firstofone\@citeb\@empty}%
\if@filesw\immediate\write\@auxout{\string\citation{\@citeb}}\fi
\@ifundefined{b@\@citeb}{\mbox{\reset@font\bfseries ?}%
\G@refundefinedtrue
\@latex@warning
{Citation `\@citeb' on page \thepage \space undefined}}%
{\hbox{\csname b@\@citeb\endcsname}}}}{#1}}
|