summaryrefslogtreecommitdiff
path: root/Documentation/lily-bib.bst
blob: 13320d46bac5e4f5d7601650f31ec084a08df0da (about) (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
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
% This template file was written by Phil Holmes to replace the one used for the bibliogrphy
% on the LilyPond project.  18 Feb 2011

% This section lists the possible fields, although not all are handled by the template
ENTRY
  { abstract
    address
    author
    booktitle
    chapter
    comment
    earlier
    edition
    editor
    howpublished
    institution
    journal
    key
    keyword
    later
    month
    note
    number
    organization
    pages
    private
    publisher
    school
    series
    title
    type
    URL
    volume
    year
  }
  {}
  { label extra.label sort.label }

% s and t came from the original.  The other strings are self explanatory
STRINGS { s t }
STRINGS { ThesisType ReportType }

% from the original
INTEGERS { nameptr namesleft numnames }

% This was simply copied and pasted from the original
FUNCTION {format.names}
{ 's :=
  #1 'nameptr :=
  s num.names$ 'numnames :=
  numnames 'namesleft :=
    { namesleft #0 > }
    % This line was changed: the {ff{ } } entry outputs the first name without allowing bibtex to use
    % a ~ to replace the spaces where it thinks fit.  The downside is that we lose hyphens...
    { s nameptr "{ff{ } }{vv }{ll}{, jj}" format.name$ 't :=
      nameptr #1 >
	{ namesleft #1 >
	    { ", " * t * }
	    { numnames #2 >
		{ "," * }
		'skip$
	      if$
	      t "others" =
		{ " et al." * }
		{ " and " * t * }
	      if$
	    }
	  if$
	}
	't
      if$
      nameptr #1 + 'nameptr :=
      namesleft #1 - 'namesleft :=
    }
  while$
}

FUNCTION {format.authors}
% This is a very common construct.  It means "if the author is empty, process the lines in the first pair
% of braces {}.  Otherwise process the lines in the second pair.  So if it's empty, an empty string is
% stacked.
{ author empty$
    { "" }
    % If it's not empty, it formats author (and stacks the result) and then checks whether editor is empty
    { author format.names
      editor empty$
        % If editor is empty, it appends an empty string (the * is a postfix operator meaning append this
        % string to the top entry on the stack
        { "" * }
        % Otherwise it appends a period, parenthesis.
        { ". (" * }
      if$
    }
  if$
}

FUNCTION {format.editor}
{ editor empty$
    { "" }
    { editor format.names
      editor num.names$ #1 >
	{ ", editors" * }
	{ ", editor" * }
      if$
      author empty$
        { "" * }
        { ")" * }
      if$
    }
  if$

}

FUNCTION {output.bibitem}
{ newline$
  "@item " write$ newline$
}

FUNCTION {format.edition}
{ edition empty$
    { "" }
    { edition " edition, " * }
  if$
}

FUNCTION {format.date}
{ year empty$
    { month empty$
	{ "" }
	{ "there's a month but no year in " cite$ * warning$
	  month
	}
      if$
    }
    { month empty$
	'year
	{ month " " * year * }
      if$
    }
  if$
}

FUNCTION {format.address}
{ address empty$
    { "" }
    { address
    year empty$
      { "" * }
      { ", " * }
    if$
    }
  if$
}

FUNCTION {format.publisher}
{
  publisher empty$
    { "" }
    { publisher
      address empty$
        { year empty$
            { "" * }
            { ", " * }
          if$
        }
        { ", " * }
      if$
    }
  if$
}

FUNCTION {format.note}
{ note empty$
    { "" }
    { note
      add.period$
    }
  if$
}

FUNCTION {format.title}
{ title empty$
    { "" }
    { "@strong{" title * "}" *
    journal empty$
    {
      volume empty$
        { "" * }
        { ", " * }
      if$
    }
    { "" * }
    if$
  }
  if$
}

FUNCTION {format.number}
{
  % ReportType is set by us when we call the correct function for the bibliography type
  ReportType empty$
  {
    volume empty$
      {number empty$
        { "" }
        { "Number " number * ". " * }
      if$
      }
      { "" }
    if$
    }
    { ReportType
      number empty$
        { ", " * }
        { " " * number * ", " * institution * ", " * }
      if$
    }
  if$
}

FUNCTION {format.volume}
{ journal empty$
  {
    volume empty$
      { "" }
      { "volume " volume * }
    if$
  }
  { "" }
  if$
}

FUNCTION {format.journal}
{ journal empty$
  { "" write$ }
  { "@emph{" journal * "}" *
    write$
    volume empty$
      { "" }
      { ", " volume * }
    if$
    write$
    number empty$
      { "" }
      { "(" number * ")" * }
    if$
    write$
    pages empty$
      { "" }
      { ":" pages * }
    if$
    write$
    year empty$
      { "" }
      { ", " }
    if$
    write$
 }
  if$
}

FUNCTION {format.series}
{ series empty$
    { "" }
    { series
      % This is an inbuilt function that adds a period when appropriate.
      add.period$
      " " *
    }
  if$
}

FUNCTION {format.booktitle}
{ booktitle empty$
    { "" }
    { "In @emph{" booktitle * "}, " *
      pages empty$
        { "" * }
        { "pages " * pages * ", " * }
      if$
    }
  if$
}

FUNCTION {format.thesis}
{ ThesisType empty$
    { "" }
    { ThesisType school * ", " *}
  if$
}

% This is the function that runs the formatting code.  It's called when the biblio type is @Book
FUNCTION {book}
{ output.bibitem
  format.authors write$
  format.editor write$
  "." write$ newline$
  format.title write$
  format.volume write$
  "." write$ newline$
  format.number write$
  format.journal
  format.series write$
  format.publisher write$
  format.address write$
  format.edition write$
  format.booktitle write$
  format.thesis write$
  format.date write$
  "." write$ newline$
  format.note write$
  newline$
  newline$
  newline$
  newline$
}

% All the following functions are called for the other biblio types. This is @article
FUNCTION {article}
{
  % And we just call the book function
  book
}

FUNCTION {booklet}
{
  book
}

FUNCTION {PhDThesis}
{
  % This sets the string ThesisType to be equal to "PhD Thesis"
  "PhD thesis, " 'ThesisType :=
  book
  % And this sets it back to an empty string
  "" 'ThesisType :=
}

FUNCTION {TechReport}
{
  "Technical Report" 'ReportType :=
  book
  "" 'ReportType :=
}

FUNCTION {InProceedings}
{
  book
}

FUNCTION {MastersThesis}
{
  "Master's thesis, " 'ThesisType :=
  book
  "" 'ThesisType :=
}

FUNCTION {InBook}
{
  book
}

% Haven't dug too deeply into this, but it seems to set the sort key
FUNCTION {presort}
{ cite$
  #1 entry.max$ substring$
  'sort.key$ :=
}

% The entry point for processing

% Read the .bib file
READ

% Work through the entries, calling the presort function
ITERATE {presort}

% Sort the entries
SORT

% This could go higher with all the other functions, but it _has_ to be above the call
FUNCTION {begin.bib}
{ "@c bib -> itexi intro" write$ newline$
  "@itemize" write$ newline$
}

% Run the begin.bib function
EXECUTE {begin.bib}

% For each bibliogrpahy entry call the relevant function (e.g. book, article, booklet, etc.)
ITERATE {call.type$}

FUNCTION {end.bib}
{ newline$
  "@end itemize" write$ newline$
  "@c bib -> itexi end" write$ newline$
}

EXECUTE {end.bib}
% And that's it.