CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

| Download

GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it

Views: 418346
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!--
3
- (C) Frank Lübeck (http://www.math.rwth-aachen.de/~Frank.Luebeck)
4
-
5
- The BibXMLext data format.
6
-
7
- This DTD expresses XML markup similar to the BibTeX language
8
- specified for LaTeX, or actually its content model.
9
-
10
- It is a variation of a file bibxml.dtd developed by the project
11
- http://bibtexml.sf.net/
12
-
13
- For documentation on BibTeX, see
14
- http://www.ctan.org/tex-archive/biblio/bibtex/distribs/doc/
15
-
16
- A previous version of the code originally developed by
17
- Vidar Bronken Gundersen, http://bibtexml.sf.net/
18
- Reuse and repurposing is approved as long as this
19
- notification appears with the code.
20
-
21
-->
22
23
<!-- ..................................................................... -->
24
<!-- Main structure -->
25
26
<!-- key-value pairs as in BibTeX @string entries are put in empty elements
27
(but here they can be used for parts of an entry field as well) -->
28
<!ELEMENT string EMPTY>
29
<!ATTLIST string
30
key CDATA #REQUIRED
31
value CDATA #REQUIRED >
32
33
<!-- entry may contain one of the bibliographic types. -->
34
<!ELEMENT entry ( article | book | booklet |
35
manual | techreport |
36
mastersthesis | phdthesis |
37
inbook | incollection |
38
proceedings | inproceedings |
39
conference |
40
unpublished | misc ) >
41
<!ATTLIST entry
42
id CDATA #REQUIRED >
43
44
<!-- file is the documents top element. -->
45
<!ELEMENT file ( string | entry )* >
46
47
48
<!-- ..................................................................... -->
49
<!-- Parameter entities -->
50
51
<!-- these are additional elements often used, but not included in the
52
standard BibTeX distribution, these must be added to the
53
bibliography styles, otherwise these fields will be omitted by
54
the formatter, we allow an arbitrary number of 'other' elements
55
to specify any further information -->
56
57
<!ENTITY % n.user " abstract?, affiliation?,
58
contents?, copyright?,
59
(isbn | issn)?,
60
keywords?, language?, lccn?,
61
location?, mrnumber?, mrclass?, mrreviewer?,
62
price?, size?, url?, category?, other* ">
63
64
<!ENTITY % n.common "key?, annotate?, crossref?,
65
%n.user;">
66
67
<!-- content model used more than once -->
68
69
<!ENTITY % n.InProceedings "author, title, booktitle,
70
year, editor?,
71
(volume | number)?,
72
series?, pages?, address?,
73
month?, organization?, publisher?,
74
note?, %n.common;">
75
76
<!ENTITY % n.PHDThesis "author, title, school,
77
year, type?, address?, month?,
78
note?, %n.common;">
79
80
<!-- ..................................................................... -->
81
<!-- Entries in the BibTeX database -->
82
83
<!-- [article] An article from a journal or magazine.
84
- Required fields: author, title, journal, year.
85
- Optional fields: volume, number, pages, month, note. -->
86
<!ELEMENT article (author, title, journal,
87
year, volume?, number?, pages?,
88
month?, note?, %n.common;)
89
>
90
91
<!-- [book] A book with an explicit publisher.
92
- Required fields: author or editor, title, publisher, year.
93
- Optional fields: volume or number, series, address,
94
- edition, month, note. -->
95
<!ELEMENT book ((author | editor), title,
96
publisher, year, (volume | number)?,
97
series?, address?, edition?, month?,
98
note?, %n.common;)
99
>
100
101
<!-- [booklet] A work that is printed and bound, but without a named
102
- publisher or sponsoring institution
103
- Required field: title.
104
- Optional fields: author, howpublished, address, month, year, note. -->
105
<!ELEMENT booklet (author?, title,
106
howpublished?, address?, month?,
107
year?, note?, %n.common;)
108
>
109
110
<!-- [conference] The same as INPROCEEDINGS,
111
- included for Scribe compatibility. -->
112
<!ELEMENT conference (%n.InProceedings;)
113
>
114
115
<!-- [inbook] A part of a book, which may be a chapter (or section or
116
- whatever) and/or a range of pages.
117
- Required fields: author or editor, title, chapter and/or pages,
118
- publisher, year.
119
- Optional fields: volume or number, series, type, address,
120
- edition, month, note. -->
121
<!ELEMENT inbook ((author | editor), title,
122
((chapter, pages?) | pages),
123
publisher, year, (volume |
124
number)?, series?, type?,
125
address?, edition?, month?,
126
note?, %n.common;)
127
>
128
129
<!--
130
- > I want to express that the elements a and/or b are legal that is one
131
- > of them or both must be present in the document instance (see the
132
- > element content for BibTeX entry `InBook').
133
- > How do I specify this in my DTD?
134
-
135
- Dave Peterson:
136
- in content model: ((a , b?) | b) if order matters
137
- ((a , b?) | (b , a?)) otherwise
138
-->
139
140
<!-- [incollection] A part of a book having its own title.
141
- Required fields: author, title, booktitle, publisher, year.
142
- Optional fields: editor, volume or number, series, type,
143
- chapter, pages, address, edition, month, note. -->
144
<!ELEMENT incollection (author, title,
145
booktitle, publisher, year,
146
editor?, (volume | number)?,
147
series?, type?, chapter?,
148
pages?, address?, edition?,
149
month?, note?,
150
%n.common;)
151
>
152
153
<!-- [inproceedings] An article in a conference proceedings.
154
- Required fields: author, title, booktitle, year.
155
- Optional fields: editor, volume or number, series, pages,
156
- address, month, organization, publisher, note. -->
157
<!ELEMENT inproceedings (%n.InProceedings;)
158
>
159
160
<!-- [manual] Technical documentation
161
- Required field: title.
162
- Optional fields: author, organization, address,
163
- edition, month, year, note. -->
164
<!ELEMENT manual (author?, title,
165
organization?, address?, edition?,
166
month?, year?, note?, %n.common;)
167
>
168
169
<!-- [mastersthesis] A Master's thesis.
170
- Required fields: author, title, school, year.
171
- Optional fields: type, address, month, note. -->
172
<!ELEMENT mastersthesis (%n.PHDThesis;)
173
>
174
175
<!-- [misc] Use this type when nothing else fits.
176
- Required fields: none.
177
- Optional fields: author, title, howpublished, month, year, note. -->
178
<!ELEMENT misc (author?, title?,
179
howpublished?, month?, year?, note?,
180
%n.common;)
181
>
182
183
<!-- [phdthesis] A PhD thesis.
184
- Required fields: author, title, school, year.
185
- Optional fields: type, address, month, note. -->
186
<!ELEMENT phdthesis (%n.PHDThesis;)
187
>
188
189
<!-- [proceedings] The proceedings of a conference.
190
- Required fields: title, year.
191
- Optional fields: editor, volume or number, series,
192
- address, month, organization, publisher, note. -->
193
<!ELEMENT proceedings (editor?, title, year,
194
(volume | number)?, series?,
195
address?, month?, organization?,
196
publisher?, note?, %n.common;)
197
>
198
199
<!-- [techreport] A report published by a school or other institution,
200
- usually numbered within a series.
201
- Required fields: author, title, institution, year.
202
- Optional fields: type, number, address, month, note. -->
203
<!ELEMENT techreport (author, title,
204
institution, year, type?, number?,
205
address?, month?, note?, %n.common;)
206
>
207
208
<!-- [unpublished] A document having an author and title, but not
209
- formally published.
210
- Required fields: author, title, note.
211
- Optional fields: month, year. -->
212
<!ELEMENT unpublished (author, title, note,
213
month?, year?, %n.common;)
214
>
215
216
<!-- ..................................................................... -->
217
<!-- Fields from the standard bibliography styles -->
218
219
<!--
220
- Below is a description of all fields recognized by the standard
221
- bibliography styles. An entry can also contain other fields, which
222
- are ignored by those styles.
223
-
224
- [address] Usually the address of the publisher or other type of
225
- institution For major publishing houses, van~Leunen recommends
226
- omitting the information entirely. For small publishers, on the other
227
- hand, you can help the reader by giving the complete address.
228
-
229
- [annote] An annotation It is not used by the standard bibliography
230
- styles, but may be used by others that produce an annotated
231
- bibliography.
232
-
233
- [author] The name(s) of the author(s), here *not* in the format
234
- described in the LaTeX book. Contains elements <name> which in turn
235
- contains elements <first>, <last> for the first name (or first names,
236
- fully written or as initials, and including middle initials) and
237
- the last name.
238
-
239
- [booktitle] Title of a book, part of which is being cited. See the
240
- LaTeX book for how to type titles. For book entries, use the title
241
- field instead.
242
-
243
- [chapter] A chapter (or section or whatever) number.
244
-
245
- [crossref] The database key of the entry being cross referenced.
246
-
247
- [edition] The edition of a book-for example, ``Second''. This
248
- should be an ordinal, and should have the first letter capitalized, as
249
- shown here; the standard styles convert to lower case when necessary.
250
-
251
- [editor] Name(s) of editor(s), typed as indicated in the LaTeX book.
252
- If there is also an author field, then the editor field gives the
253
- editor of the book or collection in which the reference appears.
254
-
255
- [howpublished] How something strange has been published. The first
256
- word should be capitalized.
257
-
258
- [institution] The sponsoring institution of a technical report.
259
-
260
- [journal] A journal name. Abbreviations are provided for many
261
- journals; see the Local Guide.
262
-
263
- [key] Used for alphabetizing, cross referencing, and creating a label
264
- when the ``author'' information (described in Section [ref: ] is
265
- missing. This field should not be confused with the key that appears
266
- in the \cite command and at the beginning of the database entry.
267
-
268
- [month] The month in which the work was published or, for an
269
- unpublished work, in which it was written. You should use the
270
- standard three-letter abbreviation, as described in Appendix B.1.3 of
271
- the LaTeX book.
272
-
273
- [note] Any additional information that can help the reader. The first
274
- word should be capitalized.
275
-
276
- [number] The number of a journal, magazine, technical report, or of a
277
- work in a series. An issue of a journal or magazine is usually
278
- identified by its volume and number; the organization that issues a
279
- technical report usually gives it a number; and sometimes books are
280
- given numbers in a named series.
281
-
282
- [organization] The organization that sponsors a conference or that
283
- publishes a manual.
284
-
285
- [pages] One or more page numbers or range of numbers, such as 42-111
286
- or 7,41,73-97 or 43+ (the `+' in this last example indicates pages
287
- following that don't form a simple range). To make it easier to
288
- maintain Scribe-compatible databases, the standard styles convert a
289
- single dash (as in 7-33) to the double dash used in TeX to denote
290
- number ranges (as in 7-33). Here, we suggest to use the entity
291
- &ndash; for a dash in page ranges.
292
-
293
- [publisher] The publisher's name.
294
-
295
- [school] The name of the school where a thesis was written.
296
-
297
- [series] The name of a series or set of books. When citing an entire
298
- book, the the title field gives its title and an optional series field
299
- gives the name of a series or multi-volume set in which the book is
300
- published.
301
-
302
- [title] The work's title. For mathematical formulae use the <M> or
303
- <Math> elements explained below (and LaTeX code in the content, without
304
- surrounding '$').
305
-
306
- [type] The type of a technical report-for example, ``Research
307
- Note''.
308
-
309
- [volume] The volume of a journal or multivolume book.
310
-
311
- [year] The year of publication or, for an unpublished work, the year
312
- it was written. Generally it should consist of four numerals, such as
313
- 1984, although the standard styles can handle any year whose last four
314
- nonpunctuation characters are numerals, such as `(about 1984)'.
315
-->
316
317
<!-- Here is the main extension compared to the original BibXML definition
318
from which is DTD is derived: We want to allow more markup in some
319
elements such that we can use the bibliography for high quality
320
output in other formats than LaTeX.
321
322
- <M> and <Math>, mathematical formulae: Specify LaTeX code for "simple"
323
formulae as content of <M> elements; "simple" means that they can be
324
translated to a fairly readable ASCII representation as explained in
325
the GAPDoc documentation on "<M>".
326
More complicated formulae are given as content of <Math> elements.
327
(Think about an <Alt> alternative for text or HTML representations.)
328
329
- <URL>: use these elements to specify URLs, they can be properly
330
converted to links if possible in an output format (in that case
331
the Text attribute is used for the visible text).
332
333
- <value key="..."/>: substituted by the value-attribute specified
334
in a <string key="..." value="..."/> element. Can be used anywhere,
335
not only for complete fields as in BibTeX.
336
337
- <C> protect case changes: should be used instead of {}'s which are
338
used in BibTeX title fields to protect the case of letters from
339
changes.
340
341
- <Alt Only="...">, <Alt Not="...">, alternatives for different
342
output formats: Use this to specify alternatives, the GAPDoc
343
utilities will do some special handling for "Text", "HTML",
344
and "BibTeX" as output type.
345
346
- <Wrap Name="...">, generic wrapper for other markup:
347
Use this for any other type of markup you are interested in. The
348
GAPDoc utilities will ignore the markup, but provide a hook
349
to do install handler functions for them.
350
-->
351
<!ELEMENT M (#PCDATA | Alt)* > <!-- math with simple text
352
representation, in LaTeX -->
353
<!ELEMENT Math (#PCDATA | Alt)* > <!-- other math in LaTeX -->
354
<!ELEMENT URL (#PCDATA | Alt | Link | LinkText)* > <!-- an URL -->
355
<!ATTLIST URL Text CDATA #IMPLIED> <!-- text to be printed
356
(default is content) -->
357
<!ELEMENT value EMPTY > <!-- placeholder for value given .. -->
358
<!ATTLIST value key CDATA #REQUIRED > <!-- .. by key, defined in a string
359
element -->
360
<!ELEMENT C (#PCDATA | value | Alt |
361
M | Math | Wrap | URL)* > <!-- protect from case changes -->
362
<!ELEMENT Alt (#PCDATA | value | C | Alt |
363
M | Math | Wrap | URL)* > <!-- specify alternatives for
364
various types of output -->
365
<!ATTLIST Alt Only CDATA #IMPLIED
366
Not CDATA #IMPLIED > <!-- specify output types in comma and
367
whitespace separated list (use exactly one of Only or Not) -->
368
369
<!ENTITY % withMURL "(#PCDATA | value | M | Math | Wrap | URL | C | Alt )*" >
370
371
<!ELEMENT Wrap %withMURL; > <!-- a generic wrapper -->
372
<!ATTLIST Wrap Name CDATA #REQUIRED > <!-- needs a 'Name' attribute -->
373
374
<!ELEMENT address %withMURL; >
375
<!-- here we don't want the complicated definition from the LaTeX book,
376
use markup for first/last name(s): a <name> element for each
377
author which contains <first> (optional), <last> elements: -->
378
<!ELEMENT author (name)* >
379
<!ELEMENT name (first?, last) >
380
<!ELEMENT first (#PCDATA) >
381
<!ELEMENT last (#PCDATA) >
382
383
<!ELEMENT booktitle %withMURL; >
384
<!ELEMENT chapter %withMURL; >
385
<!ELEMENT edition %withMURL; >
386
<!-- same as for author field -->
387
<!ELEMENT editor (name)* >
388
<!ELEMENT howpublished %withMURL; >
389
<!ELEMENT institution %withMURL; >
390
<!ELEMENT journal %withMURL; >
391
<!ELEMENT month %withMURL; >
392
<!ELEMENT note %withMURL; >
393
<!ELEMENT number %withMURL; >
394
<!ELEMENT organization %withMURL; >
395
<!ELEMENT pages %withMURL; >
396
<!ELEMENT publisher %withMURL; >
397
<!ELEMENT school %withMURL; >
398
<!ELEMENT series %withMURL; >
399
<!ELEMENT title %withMURL; >
400
<!ELEMENT type %withMURL; >
401
<!ELEMENT volume %withMURL; >
402
<!ELEMENT year (#PCDATA) >
403
404
<!-- These were not listed in the documentation for entry content, but
405
- appeared in the list of fields in the BibTeX documentation -->
406
407
<!ELEMENT annotate %withMURL; >
408
<!ELEMENT crossref %withMURL; >
409
<!ELEMENT key (#PCDATA) >
410
411
412
<!-- ..................................................................... -->
413
<!-- Other popular fields
414
-
415
- From: http://www.ecst.csuchico.edu/~jacobsd/bib/formats/bibtex.html
416
- BibTeX is extremely popular, and many people have used it to store
417
- information. Here is a list of some of the more common fields:
418
-
419
- [affiliation] The authors affiliation.
420
- [abstract] An abstract of the work.
421
- [contents] A Table of Contents
422
- [copyright] Copyright information.
423
- [ISBN] The International Standard Book Number.
424
- [ISSN] The International Standard Serial Number.
425
- Used to identify a journal.
426
- [keywords] Key words used for searching or possibly for annotation.
427
- [language] The language the document is in.
428
- [location] A location associated with the entry,
429
- such as the city in which a conference took place.
430
- [LCCN] The Library of Congress Call Number.
431
- I've also seen this as lib-congress.
432
- [mrnumber] The Mathematical Reviews number.
433
- [mrclass] The Mathematical Reviews class.
434
- [mrreviewer] The Mathematical Reviews reviewer.
435
- [price] The price of the document.
436
- [size] The physical dimensions of a work.
437
- [URL] The WWW Universal Resource Locator that points to the item being
438
- referenced. This often is used for technical reports to point to the
439
- ftp site where the postscript source of the report is located.
440
-
441
- When using BibTeX with LaTeX you need
442
- BibTeX style files to print these data.
443
-->
444
445
<!ELEMENT abstract %withMURL; >
446
<!ELEMENT affiliation %withMURL; >
447
<!ELEMENT contents %withMURL; >
448
<!ELEMENT copyright %withMURL; >
449
<!ELEMENT isbn (#PCDATA) >
450
<!ELEMENT issn (#PCDATA) >
451
<!ELEMENT keywords %withMURL; >
452
<!ELEMENT language %withMURL; >
453
<!ELEMENT lccn (#PCDATA) >
454
<!ELEMENT location %withMURL; >
455
<!ELEMENT mrnumber %withMURL; >
456
<!ELEMENT mrclass %withMURL; >
457
<!ELEMENT mrreviewer %withMURL; >
458
<!ELEMENT price %withMURL; >
459
<!ELEMENT size %withMURL; >
460
<!ELEMENT url %withMURL; >
461
462
463
<!-- Added by Zeger W. Hendrikse
464
- [category] Category of this bibitem
465
-->
466
<!ELEMENT category %withMURL; >
467
468
<!-- A container element [other] for any further information, a description
469
- of the type of data must be given in the attribute 'type'
470
-->
471
<!ELEMENT other %withMURL; >
472
<!ATTLIST other
473
type CDATA #REQUIRED >
474
475
476
<!-- ..................................................................... -->
477
<!-- Predefined/reserved character entities -->
478
479
<!ENTITY amp "&#38;#38;">
480
<!ENTITY lt "&#38;#60;">
481
<!ENTITY gt "&#62;">
482
<!ENTITY apos "&#39;">
483
<!ENTITY quot "&#34;">
484
485
486
<!-- Some more generally useful entities -->
487
<!ENTITY nbsp "&#160;">
488
<!ENTITY copyright "&#169;">
489
<!ENTITY ndash "&#x2013;">
490
491
492
<!-- ..................................................................... -->
493
<!-- End of BibXMLext dtd -->
494
495