blob: f81215fa4edb26fa8ff280715153fd6f24d9d7e7 (
plain)
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
|
\documentclass{ltxdoc}
\AlsoImplementation
\RecordChanges
\CodelineIndex
\EnableCrossrefs
\GetFileInfo{listbib.dtx}
\usepackage{scrlfile}
\newcommand*{\RestoreUnderscore}{}
\BeforePackage{inputenc}{%
\edef\RestoreUnderscore{\catcode95=\the\catcode95 \relax}%
\catcode95=8 \relax
}
\AfterPackage{inputenc}{\RestoreUnderscore}
\errorcontextlines=100
\usepackage{listbib}
\begin{document}
\DocInput{listbib.dtx}
\PrintChanges
\PrintIndex
\end{document}
|