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
|
%%% -*-LaTeX-*-
%%% Document name: /u/sy/beebe/tex/bib/litprog.ltx
%%% Creator: Nelson H. F. Beebe [beebe@plot79.math.utah.edu]
%%% Creation Date: Wed Jun 27 21:17:00 1990
%%% ====================================================================
%%% @LaTeX-file{
%%% author = "Nelson H. F. Beebe",
%%% version = "3.35",
%%% date = "18 February 2020",
%%% time = "09:00:37 MST",
%%% filename = "litprog.ltx",
%%% address = "University of Utah
%%% Department of Mathematics, 110 LCB
%%% 155 S 1400 E RM 233
%%% Salt Lake City, UT 84112-0090
%%% USA",
%%% telephone = "+1 801 581 5254",
%%% FAX = "+1 801 581 4148",
%%% URL = "http://www.math.utah.edu/~beebe",
%%% checksum = "56463 87 321 3210",
%%% email = "beebe@math.utah.edu, beebe@acm.org,
%%% beebe@computer.org (Internet)",
%%% codetable = "ISO/ASCII",
%%% keywords = "bibliography; BibTeX; literate programming",
%%% license = "public domain",
%%% supported = "yes",
%%% docstring = "This file is a LaTeX wrapper for typesetting
%%% litprog.bib. The ISBN fields will
%%% be printed if the is-alpha.bst or is-plain.bst
%%% style files are used.
%%%
%%% The checksum field above contains a CRC-16
%%% checksum as the first value, followed by the
%%% equivalent of the standard UNIX wc (word
%%% count) utility output of lines, words, and
%%% characters. This is produced by Robert
%%% Solovay's checksum utility.",
%%% }
%%% ====================================================================
\documentstyle[bibmods,bibnames,path,showtags,twocolumn]{article}
\pagestyle{headings}
\ifx \undefined \acro \def \acro #1{{\sc #1}} \fi
\ifx \undefined \pkg \def \pkg #1{{{\tt #1}}} \fi
\title{A Bibliography of Literate Programming}
\author{%
Nelson H. F. Beebe\\
University of Utah\\
Department of Mathematics, 110 LCB\\
155 S 1400 E RM 233\\
Salt Lake City, UT 84112-0090\\
USA\\[\medskipamount]
Tel: +1 801 581 5254\\
FAX: +1 801 581 4148\\[\medskipamount]
E-mail: \protect\path=beebe@math.utah.edu=,
\protect\path=beebe@acm.org=,
\protect\path=beebe@computer.org= (Internet)\\
WWW URL: \protect\path=http://www.math.utah.edu/~beebe/=
}
\date{18 February 2020 \\
Version 3.35}
\begin{document}
\nocite{*}
\bibliographystyle{is-alpha}
\maketitle
\begin{abstract}
This bibliography records books and articles on the subject of
{\em literate programming}, a term coined by Donald Knuth in
\cite{Knuth:1984:LP}.
\end{abstract}
\section*{Title word cross-reference}
\begin{raggedright}
\parskip = \baselineskip
\input{\jobname.twx}
\end{raggedright}
\bibliography{\jobname}
\end{document}
|