Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
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
Project: cocalc-sagemath-dev-slelievre
Views: 418346<?xml version="1.0" encoding="UTF-8"?>1<!--2- (C) Frank Lübeck (http://www.math.rwth-aachen.de/~Frank.Luebeck)3-4- The BibXMLext data format.5-6- This DTD expresses XML markup similar to the BibTeX language7- specified for LaTeX, or actually its content model.8-9- It is a variation of a file bibxml.dtd developed by the project10- http://bibtexml.sf.net/11-12- For documentation on BibTeX, see13- http://www.ctan.org/tex-archive/biblio/bibtex/distribs/doc/14-15- A previous version of the code originally developed by16- Vidar Bronken Gundersen, http://bibtexml.sf.net/17- Reuse and repurposing is approved as long as this18- notification appears with the code.19-20-->2122<!-- ..................................................................... -->23<!-- Main structure -->2425<!-- key-value pairs as in BibTeX @string entries are put in empty elements26(but here they can be used for parts of an entry field as well) -->27<!ELEMENT string EMPTY>28<!ATTLIST string29key CDATA #REQUIRED30value CDATA #REQUIRED >3132<!-- entry may contain one of the bibliographic types. -->33<!ELEMENT entry ( article | book | booklet |34manual | techreport |35mastersthesis | phdthesis |36inbook | incollection |37proceedings | inproceedings |38conference |39unpublished | misc ) >40<!ATTLIST entry41id CDATA #REQUIRED >4243<!-- file is the documents top element. -->44<!ELEMENT file ( string | entry )* >454647<!-- ..................................................................... -->48<!-- Parameter entities -->4950<!-- these are additional elements often used, but not included in the51standard BibTeX distribution, these must be added to the52bibliography styles, otherwise these fields will be omitted by53the formatter, we allow an arbitrary number of 'other' elements54to specify any further information -->5556<!ENTITY % n.user " abstract?, affiliation?,57contents?, copyright?,58(isbn | issn)?,59keywords?, language?, lccn?,60location?, mrnumber?, mrclass?, mrreviewer?,61price?, size?, url?, category?, other* ">6263<!ENTITY % n.common "key?, annotate?, crossref?,64%n.user;">6566<!-- content model used more than once -->6768<!ENTITY % n.InProceedings "author, title, booktitle,69year, editor?,70(volume | number)?,71series?, pages?, address?,72month?, organization?, publisher?,73note?, %n.common;">7475<!ENTITY % n.PHDThesis "author, title, school,76year, type?, address?, month?,77note?, %n.common;">7879<!-- ..................................................................... -->80<!-- Entries in the BibTeX database -->8182<!-- [article] An article from a journal or magazine.83- Required fields: author, title, journal, year.84- Optional fields: volume, number, pages, month, note. -->85<!ELEMENT article (author, title, journal,86year, volume?, number?, pages?,87month?, note?, %n.common;)88>8990<!-- [book] A book with an explicit publisher.91- Required fields: author or editor, title, publisher, year.92- Optional fields: volume or number, series, address,93- edition, month, note. -->94<!ELEMENT book ((author | editor), title,95publisher, year, (volume | number)?,96series?, address?, edition?, month?,97note?, %n.common;)98>99100<!-- [booklet] A work that is printed and bound, but without a named101- publisher or sponsoring institution102- Required field: title.103- Optional fields: author, howpublished, address, month, year, note. -->104<!ELEMENT booklet (author?, title,105howpublished?, address?, month?,106year?, note?, %n.common;)107>108109<!-- [conference] The same as INPROCEEDINGS,110- included for Scribe compatibility. -->111<!ELEMENT conference (%n.InProceedings;)112>113114<!-- [inbook] A part of a book, which may be a chapter (or section or115- whatever) and/or a range of pages.116- Required fields: author or editor, title, chapter and/or pages,117- publisher, year.118- Optional fields: volume or number, series, type, address,119- edition, month, note. -->120<!ELEMENT inbook ((author | editor), title,121((chapter, pages?) | pages),122publisher, year, (volume |123number)?, series?, type?,124address?, edition?, month?,125note?, %n.common;)126>127128<!--129- > I want to express that the elements a and/or b are legal that is one130- > of them or both must be present in the document instance (see the131- > element content for BibTeX entry `InBook').132- > How do I specify this in my DTD?133-134- Dave Peterson:135- in content model: ((a , b?) | b) if order matters136- ((a , b?) | (b , a?)) otherwise137-->138139<!-- [incollection] A part of a book having its own title.140- Required fields: author, title, booktitle, publisher, year.141- Optional fields: editor, volume or number, series, type,142- chapter, pages, address, edition, month, note. -->143<!ELEMENT incollection (author, title,144booktitle, publisher, year,145editor?, (volume | number)?,146series?, type?, chapter?,147pages?, address?, edition?,148month?, note?,149%n.common;)150>151152<!-- [inproceedings] An article in a conference proceedings.153- Required fields: author, title, booktitle, year.154- Optional fields: editor, volume or number, series, pages,155- address, month, organization, publisher, note. -->156<!ELEMENT inproceedings (%n.InProceedings;)157>158159<!-- [manual] Technical documentation160- Required field: title.161- Optional fields: author, organization, address,162- edition, month, year, note. -->163<!ELEMENT manual (author?, title,164organization?, address?, edition?,165month?, year?, note?, %n.common;)166>167168<!-- [mastersthesis] A Master's thesis.169- Required fields: author, title, school, year.170- Optional fields: type, address, month, note. -->171<!ELEMENT mastersthesis (%n.PHDThesis;)172>173174<!-- [misc] Use this type when nothing else fits.175- Required fields: none.176- Optional fields: author, title, howpublished, month, year, note. -->177<!ELEMENT misc (author?, title?,178howpublished?, month?, year?, note?,179%n.common;)180>181182<!-- [phdthesis] A PhD thesis.183- Required fields: author, title, school, year.184- Optional fields: type, address, month, note. -->185<!ELEMENT phdthesis (%n.PHDThesis;)186>187188<!-- [proceedings] The proceedings of a conference.189- Required fields: title, year.190- Optional fields: editor, volume or number, series,191- address, month, organization, publisher, note. -->192<!ELEMENT proceedings (editor?, title, year,193(volume | number)?, series?,194address?, month?, organization?,195publisher?, note?, %n.common;)196>197198<!-- [techreport] A report published by a school or other institution,199- usually numbered within a series.200- Required fields: author, title, institution, year.201- Optional fields: type, number, address, month, note. -->202<!ELEMENT techreport (author, title,203institution, year, type?, number?,204address?, month?, note?, %n.common;)205>206207<!-- [unpublished] A document having an author and title, but not208- formally published.209- Required fields: author, title, note.210- Optional fields: month, year. -->211<!ELEMENT unpublished (author, title, note,212month?, year?, %n.common;)213>214215<!-- ..................................................................... -->216<!-- Fields from the standard bibliography styles -->217218<!--219- Below is a description of all fields recognized by the standard220- bibliography styles. An entry can also contain other fields, which221- are ignored by those styles.222-223- [address] Usually the address of the publisher or other type of224- institution For major publishing houses, van~Leunen recommends225- omitting the information entirely. For small publishers, on the other226- hand, you can help the reader by giving the complete address.227-228- [annote] An annotation It is not used by the standard bibliography229- styles, but may be used by others that produce an annotated230- bibliography.231-232- [author] The name(s) of the author(s), here *not* in the format233- described in the LaTeX book. Contains elements <name> which in turn234- contains elements <first>, <last> for the first name (or first names,235- fully written or as initials, and including middle initials) and236- the last name.237-238- [booktitle] Title of a book, part of which is being cited. See the239- LaTeX book for how to type titles. For book entries, use the title240- field instead.241-242- [chapter] A chapter (or section or whatever) number.243-244- [crossref] The database key of the entry being cross referenced.245-246- [edition] The edition of a book-for example, ``Second''. This247- should be an ordinal, and should have the first letter capitalized, as248- shown here; the standard styles convert to lower case when necessary.249-250- [editor] Name(s) of editor(s), typed as indicated in the LaTeX book.251- If there is also an author field, then the editor field gives the252- editor of the book or collection in which the reference appears.253-254- [howpublished] How something strange has been published. The first255- word should be capitalized.256-257- [institution] The sponsoring institution of a technical report.258-259- [journal] A journal name. Abbreviations are provided for many260- journals; see the Local Guide.261-262- [key] Used for alphabetizing, cross referencing, and creating a label263- when the ``author'' information (described in Section [ref: ] is264- missing. This field should not be confused with the key that appears265- in the \cite command and at the beginning of the database entry.266-267- [month] The month in which the work was published or, for an268- unpublished work, in which it was written. You should use the269- standard three-letter abbreviation, as described in Appendix B.1.3 of270- the LaTeX book.271-272- [note] Any additional information that can help the reader. The first273- word should be capitalized.274-275- [number] The number of a journal, magazine, technical report, or of a276- work in a series. An issue of a journal or magazine is usually277- identified by its volume and number; the organization that issues a278- technical report usually gives it a number; and sometimes books are279- given numbers in a named series.280-281- [organization] The organization that sponsors a conference or that282- publishes a manual.283-284- [pages] One or more page numbers or range of numbers, such as 42-111285- or 7,41,73-97 or 43+ (the `+' in this last example indicates pages286- following that don't form a simple range). To make it easier to287- maintain Scribe-compatible databases, the standard styles convert a288- single dash (as in 7-33) to the double dash used in TeX to denote289- number ranges (as in 7-33). Here, we suggest to use the entity290- – for a dash in page ranges.291-292- [publisher] The publisher's name.293-294- [school] The name of the school where a thesis was written.295-296- [series] The name of a series or set of books. When citing an entire297- book, the the title field gives its title and an optional series field298- gives the name of a series or multi-volume set in which the book is299- published.300-301- [title] The work's title. For mathematical formulae use the <M> or302- <Math> elements explained below (and LaTeX code in the content, without303- surrounding '$').304-305- [type] The type of a technical report-for example, ``Research306- Note''.307-308- [volume] The volume of a journal or multivolume book.309-310- [year] The year of publication or, for an unpublished work, the year311- it was written. Generally it should consist of four numerals, such as312- 1984, although the standard styles can handle any year whose last four313- nonpunctuation characters are numerals, such as `(about 1984)'.314-->315316<!-- Here is the main extension compared to the original BibXML definition317from which is DTD is derived: We want to allow more markup in some318elements such that we can use the bibliography for high quality319output in other formats than LaTeX.320321- <M> and <Math>, mathematical formulae: Specify LaTeX code for "simple"322formulae as content of <M> elements; "simple" means that they can be323translated to a fairly readable ASCII representation as explained in324the GAPDoc documentation on "<M>".325More complicated formulae are given as content of <Math> elements.326(Think about an <Alt> alternative for text or HTML representations.)327328- <URL>: use these elements to specify URLs, they can be properly329converted to links if possible in an output format (in that case330the Text attribute is used for the visible text).331332- <value key="..."/>: substituted by the value-attribute specified333in a <string key="..." value="..."/> element. Can be used anywhere,334not only for complete fields as in BibTeX.335336- <C> protect case changes: should be used instead of {}'s which are337used in BibTeX title fields to protect the case of letters from338changes.339340- <Alt Only="...">, <Alt Not="...">, alternatives for different341output formats: Use this to specify alternatives, the GAPDoc342utilities will do some special handling for "Text", "HTML",343and "BibTeX" as output type.344345- <Wrap Name="...">, generic wrapper for other markup:346Use this for any other type of markup you are interested in. The347GAPDoc utilities will ignore the markup, but provide a hook348to do install handler functions for them.349-->350<!ELEMENT M (#PCDATA | Alt)* > <!-- math with simple text351representation, in LaTeX -->352<!ELEMENT Math (#PCDATA | Alt)* > <!-- other math in LaTeX -->353<!ELEMENT URL (#PCDATA | Alt | Link | LinkText)* > <!-- an URL -->354<!ATTLIST URL Text CDATA #IMPLIED> <!-- text to be printed355(default is content) -->356<!ELEMENT value EMPTY > <!-- placeholder for value given .. -->357<!ATTLIST value key CDATA #REQUIRED > <!-- .. by key, defined in a string358element -->359<!ELEMENT C (#PCDATA | value | Alt |360M | Math | Wrap | URL)* > <!-- protect from case changes -->361<!ELEMENT Alt (#PCDATA | value | C | Alt |362M | Math | Wrap | URL)* > <!-- specify alternatives for363various types of output -->364<!ATTLIST Alt Only CDATA #IMPLIED365Not CDATA #IMPLIED > <!-- specify output types in comma and366whitespace separated list (use exactly one of Only or Not) -->367368<!ENTITY % withMURL "(#PCDATA | value | M | Math | Wrap | URL | C | Alt )*" >369370<!ELEMENT Wrap %withMURL; > <!-- a generic wrapper -->371<!ATTLIST Wrap Name CDATA #REQUIRED > <!-- needs a 'Name' attribute -->372373<!ELEMENT address %withMURL; >374<!-- here we don't want the complicated definition from the LaTeX book,375use markup for first/last name(s): a <name> element for each376author which contains <first> (optional), <last> elements: -->377<!ELEMENT author (name)* >378<!ELEMENT name (first?, last) >379<!ELEMENT first (#PCDATA) >380<!ELEMENT last (#PCDATA) >381382<!ELEMENT booktitle %withMURL; >383<!ELEMENT chapter %withMURL; >384<!ELEMENT edition %withMURL; >385<!-- same as for author field -->386<!ELEMENT editor (name)* >387<!ELEMENT howpublished %withMURL; >388<!ELEMENT institution %withMURL; >389<!ELEMENT journal %withMURL; >390<!ELEMENT month %withMURL; >391<!ELEMENT note %withMURL; >392<!ELEMENT number %withMURL; >393<!ELEMENT organization %withMURL; >394<!ELEMENT pages %withMURL; >395<!ELEMENT publisher %withMURL; >396<!ELEMENT school %withMURL; >397<!ELEMENT series %withMURL; >398<!ELEMENT title %withMURL; >399<!ELEMENT type %withMURL; >400<!ELEMENT volume %withMURL; >401<!ELEMENT year (#PCDATA) >402403<!-- These were not listed in the documentation for entry content, but404- appeared in the list of fields in the BibTeX documentation -->405406<!ELEMENT annotate %withMURL; >407<!ELEMENT crossref %withMURL; >408<!ELEMENT key (#PCDATA) >409410411<!-- ..................................................................... -->412<!-- Other popular fields413-414- From: http://www.ecst.csuchico.edu/~jacobsd/bib/formats/bibtex.html415- BibTeX is extremely popular, and many people have used it to store416- information. Here is a list of some of the more common fields:417-418- [affiliation] The authors affiliation.419- [abstract] An abstract of the work.420- [contents] A Table of Contents421- [copyright] Copyright information.422- [ISBN] The International Standard Book Number.423- [ISSN] The International Standard Serial Number.424- Used to identify a journal.425- [keywords] Key words used for searching or possibly for annotation.426- [language] The language the document is in.427- [location] A location associated with the entry,428- such as the city in which a conference took place.429- [LCCN] The Library of Congress Call Number.430- I've also seen this as lib-congress.431- [mrnumber] The Mathematical Reviews number.432- [mrclass] The Mathematical Reviews class.433- [mrreviewer] The Mathematical Reviews reviewer.434- [price] The price of the document.435- [size] The physical dimensions of a work.436- [URL] The WWW Universal Resource Locator that points to the item being437- referenced. This often is used for technical reports to point to the438- ftp site where the postscript source of the report is located.439-440- When using BibTeX with LaTeX you need441- BibTeX style files to print these data.442-->443444<!ELEMENT abstract %withMURL; >445<!ELEMENT affiliation %withMURL; >446<!ELEMENT contents %withMURL; >447<!ELEMENT copyright %withMURL; >448<!ELEMENT isbn (#PCDATA) >449<!ELEMENT issn (#PCDATA) >450<!ELEMENT keywords %withMURL; >451<!ELEMENT language %withMURL; >452<!ELEMENT lccn (#PCDATA) >453<!ELEMENT location %withMURL; >454<!ELEMENT mrnumber %withMURL; >455<!ELEMENT mrclass %withMURL; >456<!ELEMENT mrreviewer %withMURL; >457<!ELEMENT price %withMURL; >458<!ELEMENT size %withMURL; >459<!ELEMENT url %withMURL; >460461462<!-- Added by Zeger W. Hendrikse463- [category] Category of this bibitem464-->465<!ELEMENT category %withMURL; >466467<!-- A container element [other] for any further information, a description468- of the type of data must be given in the attribute 'type'469-->470<!ELEMENT other %withMURL; >471<!ATTLIST other472type CDATA #REQUIRED >473474475<!-- ..................................................................... -->476<!-- Predefined/reserved character entities -->477478<!ENTITY amp "&#38;">479<!ENTITY lt "&#60;">480<!ENTITY gt ">">481<!ENTITY apos "'">482<!ENTITY quot """>483484485<!-- Some more generally useful entities -->486<!ENTITY nbsp " ">487<!ENTITY copyright "©">488<!ENTITY ndash "–">489490491<!-- ..................................................................... -->492<!-- End of BibXMLext dtd -->493494495