blob: 0dd9f6e56d45f16268a799f302c8f09c6c8cb4ea (
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
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
|
%% For format this file, run the following commands:
%%
%% latex plaintst.tex
%% bibtex plaintst.tex
%% latex plaintst.tex
%% latex plaintst.tex
%% makeindex -o plaintst.and plaintst.adx
%% makeindex -s bibref.ist -o plaintst.bnd plaintst.bdx
%% latex plaintst.tex
\documentclass{article}
\errorcontextlines10
\usepackage{bibref,autind}
\newindex{aut}{adx}{and}{Name Index}
\begin{document}
\adjustcitation\cite
\nocite*
\cite{CantoneCP90,Adamowicz92}
\cite[page 21]{AdlemanMa76}
\cite{CaludeP83}
\newpage
Second page.
\cite{Adamowicz92}
\cite[foo]{Baker68}
\newpage
Third page.
\cite{Adamowicz92}
\newpage
\bibliographystyle{xplain}
\bibliography{test}
\printindex[aut]
\end{document}
|