[Refdb-cvs] CVS: refdb/doc/risx/ele-desc abstract.html,NONE,1.1.2.1 address.html,NONE,1.1.2.1 author
Status: Beta
Brought to you by:
mhoenicka
Update of /cvsroot/refdb/refdb/doc/risx/ele-desc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14404 Added Files: Tag: Release_0_9_5_stable abstract.html address.html author.html availability.html city.html contents.html date.html day.html endpage.html entry.html firstname.html issue.html keyword.html lastname.html libinfo.html middlename.html misc.html month.html name.html notes.html otherinfo.html part.html pubdate.html pubinfo.html publication.html publisher.html reprint.html ris.html serial.html set.html startpage.html suffix.html title.html url.html userdef.html volume.html year.html Log Message: initial version --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>abstract description</title> </head> <body> <h2>Description</h2> <p>The abstract element contains an abstract of the reference. Articles published in scientific journals usually contain abstracts. For books, the liner or backcover texts might just be fine.</p> <h2>Example</h2> <pre> <contents> <abstract>Dinosaurs were big animals that ate a lot</abstract> <keyword>dinosaurs</keyword> <keyword>evolution</keyword> <keyword>animals</keyword> </contents> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>address description</title> </head> <body> <h2>Description</h2> <p>The address element contains a string with whatever information is available to contact the author of a publication.</p> <h2>Example</h2> <pre> <pubinfo> <pubdate type="primary"> <date> <year>1999</year> </date> </pubdate> <city>Sebastopol</city> <publisher>O'Reilly</publisher> <serial>1-56592-580-7</serial> <address>mi...@di...</address> <url>http://www.dinosaurs.upenn.edu/</url> </pubinfo> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>author description</title> </head> <body> <h2>Description</h2> <p>The author element contains the name of an author or editor. Whenever possible, the parts of a personal name should be qualified by using the <a href="lastname.html">lastname</a>, <a href="firstname.html">firstname</a>, <a href="middlename.html">middlename</a>, and <a href="suffix.html">suffix</a> elements. If that does not work out, or if you're looking at a corporate or institutional name, use the <a href="name.html">name</a> element instead.</p> <h2>Example</h2> <pre> <author> <lastname>Myers</lastname> <firstname>B</firstname> <middlename>B</middlename> <suffix>Jr.</suffix> </author> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>availability description</title> </head> <body> <h2>Description</h2> <p>The availability element holds the information necessary to keep track of a paper copy or of an electronic offprint of the reference.</p> <p>If the type attribute is set to "full", the element may contain a verbose description of the physical location of a copy of the reference, or a fully qualified URL of an electronic version. The latter should start with a protocol specifier, i.e. "http://", "ftp://", or "file://" if the copy is on the local filesystem.</p> <p>If the type attribute is set to "useroot" instead, the element should contain the partial path of an electronic version. This path will be completed by RefDB using the pdfroot feature.</p> <h2>Example</h2> <pre> <libinfo user="jdoe"> <notes>Not bad, after all</notes> <reprint status="INFILE"/> <availability type="useroot">palaeontology/dinosaurs/millera2002.pdf</availability> </libinfo> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>city description</title> </head> <body> <h2>Description</h2> <p>The city element holds the city of publication, usually the location of the headquarter of the publishing company.</p> <h2>Example</h2> <pre> <pubinfo> <pubdate type="primary"> <date> <year>1999</year> </date> </pubdate> <city>Sebastopol</city> <publisher>O'Reilly</publisher> <serial>1-56592-580-7</serial> <address>mi...@di...</address> <url>http://www.dinosaurs.upenn.edu/</url> </pubinfo> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>contents description</title> </head> <body> <h2>Description</h2> <p>The contents element is a wrapper for the information that describes the contents of a reference. The contents are further specified by the <a href="abstract.html">abstract</a> and <a href="keyword.html">keyword</a> elements.</p> <h2>Example</h2> <pre> <contents> <abstract>Dinosaurs were big animals that ate a lot</abstract> <keyword>dinosaurs</keyword> <keyword>evolution</keyword> <keyword>animals</keyword> </contents> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>date description</title> </head> <body> <h2>Description</h2> <p>The date element is a wrapper for the <a href="year.html">year</a>, <a href="month.html">month</a>, and <a href="day.html">day</a> elements describing a date.</p> <h2>Example</h2> <pre> <pubdate type="primary"> <date> <year>1999</year> </date> </pubdate> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>day description</title> </head> <body> <h2>Description</h2> <p>The day element holds the day information of a <a href="date.html">date</a> element. The day should be specified as a numeric value in the range of 1 through 31.</p> <h2>Example</h2> <pre> <pubdate type="primary"> <date> <year>1999</year> <month>11</month> <day>12</day> </date> </pubdate> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>endpage description</title> </head> <body> <h2>Description</h2> <p>Journal and magazine articles are usually published on a range of pages. The endpage element specifies the last page of an article.</p> <h2>Example</h2> <pre> <pubinfo> <pubdate type="primary"> <date> <year>2002</year> </date> </pubdate> <volume>63</volume> <issue>4</issue> <startpage>577</startpage> <endpage>85</endpage> </pubinfo> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>entry description</title> </head> <body> <h2>Description</h2> <p>The entry element is the wrapper for a single reference.</p> <p>The id attribute specifies a unique identifier provided by a database application.</p> <p>The type attribute specifies the type of the reference. The following types are supported:</p> <ul> <li>ABST: abstract reference</li> <li>ADVS: audiovisual material</li> <li>ART: art work</li> <li>BILL: bill/resolution</li> <li>BOOK: whole book reference</li> <li>CASE: case</li> <li>CHAP: book chapter reference</li> <li>COMP: computer program</li> <li>CONF: conference proceeding</li> <li>CTLG: catalog</li> <li>DATA: data file</li> <li>ELEC: electronic citation</li> <li>GEN: generic</li> <li>ICOMM: internet communication</li> <li>INPR: in press reference</li> <li>JFULL: journal - full</li> <li>JOUR: journal reference</li> <li>MAP: map</li> <li>MGZN: magazine article</li> <li>MPCT: motion picture</li> <li>MUSIC: music score</li> <li>NEWS: newspaper</li> <li>PAMP: pamphlet</li> <li>PAT: patent</li> <li>PCOMM: personal communication</li> <li>RPRT: report</li> <li>SER: serial - book, monograph</li> <li>SLIDE: slide</li> <li>SOUND: sound recording</li> <li>STAT: statute</li> <li>THES: thesis/dissertation</li> <li>UNBILL: unenacted bill/resolution</li> <li>UNPB: unpublished work reference</li> <li>VIDEO: video recording</li> </ul> <h2>Example</h2> <pre> <ris> <entry type="ABST" citekey="MILLER1999"> ... </entry> <entry type="BOOK" citekey="JONES2000"> ... </entry> </ris> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>firstname description</title> </head> <body> <h2>Description</h2> <p>The firstname element contains the first name of an author or editor.</p> <h2>Example</h2> <pre> <author> <lastname>Myers</lastname> <firstname>B</firstname> <middlename>B</middlename> <suffix>Jr.</suffix> </author> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>issue description</title> </head> <body> <h2>Description</h2> <p>The issue element specifies the issue of a periodical that an article appeared in.</p> <h2>Example</h2> <pre> <pubinfo> <pubdate type="primary"> <date> <year>2002</year> </date> </pubdate> <volume>63</volume> <issue>4</issue> <startpage>577</startpage> <endpage>85</endpage> </pubinfo> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>keyword description</title> </head> <body> <h2>Description</h2> <p>The keyword element holds a keyword or subject heading used as a search term in a database application.</p> <h2>Example</h2> <pre> <contents> <abstract>Dinosaurs were big animals that ate a lot</abstract> <keyword>dinosaurs</keyword> <keyword>evolution</keyword> <keyword>animals</keyword> </contents> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>lastname description</title> </head> <body> <h2>Description</h2> <p>The lastname element contains the last name (surname) of an author or editor.</p> <h2>Example</h2> <pre> <author> <lastname>Myers</lastname> <firstname>B</firstname> <middlename>B</middlename> <suffix>Jr.</suffix> </author> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>libinfo description</title> </head> <body> <h2>Description</h2> <p>The libinfo element is a wrapper for information specific to a particular user of a reference database system.</p> <p>The user attribute specifies the name of the user that provides this information. The name usually corresponds to the username of a particular database application.</p> <h2>Example</h2> <pre> <libinfo user="jdoe"> <notes>Not bad, after all</notes> <reprint status="INFILE"/> <availability type="useroot">palaeontology/dinosaurs/millera2002.pdf</availability> </libinfo> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>middlename description</title> </head> <body> <h2>Description</h2> <p>The middlename element contains the middle name or middle initial of an author or editor.</p> <h2>Example</h2> <pre> <author> <lastname>Myers</lastname> <firstname>B</firstname> <middlename>B</middlename> <suffix>Jr.</suffix> </author> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>misc description</title> </head> <body> <h2>Description</h2> <p>The misc element is an all-purpose element to store information not covered by the other elements. For reasons of consistency, a reference database administrator should figure out rules which kind of information should be stored in the misc element.</p> <p>The type element can be set to one of "1", "2", or "3", thus allowing to use 3 different misc elements per dataset.</p> <h2>Example</h2> <pre> <pubinfo> <pubdate type="primary"> <date> <year>1999</year> </date> </pubdate> <city>Sebastopol</city> <publisher>O'Reilly</publisher> <serial>1-56592-580-7</serial> <address>mi...@di...</address> <url>http://www.dinosaurs.upenn.edu/</url> <misc type="1">high</misc> </pubinfo> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>month description</title> </head> <body> <h2>Description</h2> <p>The month element holds the month information of a <a href="date.html">date</a> element. The month should be specified as a numeric value in the range of 1 through 12.</p> <h2>Example</h2> <pre> <pubdate type="primary"> <date> <year>1999</year> <month>11</month> <day>12</day> </date> </pubdate> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>name description</title> </head> <body> <h2>Description</h2> <p>The name element contains the name of an author or editor if it is not possible to further qualify name parts using the <a href="lastname.html">lastname</a>, <a href="firstname.html">firstname</a>, <a href="middlename.html">middlename</a>, and <a href="suffix.html">suffix</a> elements. Use the name element for corporate and institutional names as well.</p> <h2>Example</h2> <pre> <author> <name>Library of Congress</name> </author> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>notes description</title> </head> <body> <h2>Description</h2> <p>The notes element contains personal notes of a user.</p> <h2>Example</h2> <pre> <libinfo user="jdoe"> <notes>Not bad, after all</notes> <reprint status="INFILE"/> <availability type="useroot">palaeontology/dinosaurs/millera2002.pdf</availability> </libinfo> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>otherinfo description</title> </head> <body> <h2>Description</h2> <p>The otherinfo element holds additional information about the publication date.</p> <h2>Example</h2> <pre> <pubdate type="primary"> <date> <year>1999</year> </date> <otherinfo>Spring meeting</otherinfo> </pubdate> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>part description</title> </head> <body> <h2>Description</h2> <p>The part element contains the information related to a reference that is part of a published work. This corresponds to the analytical level of bibliographic information.</p> <h2>Example</h2> <pre> <entry type="CHAP" id="32" citekey="WALSH1999"> <part> <title>XML: Principles, Tools, and Techniques</title> <author> <lastname>Walsh</lastname> <firstname>N</firstname> </author> </part> <publication> <title>Guide to XML</title> <author> <lastname>Connolly</lastname> <firstname>D</firstname> </author> <pubinfo> <pubdate type="primary"> <date> <year>1999</year> </date> </pubdate> <city>Sebastopol</city> <publisher>O'Reilly</publisher> </pubinfo> </publication> <libinfo user="markus"><notes>Not bad</notes> <reprint status="NOTINFILE"/></libinfo> <contents><abstract>An introduction how to deal with XML</abstract> <keyword>XML</keyword> <keyword>computer</keyword> <keyword>markup languages</keyword> </contents> </entry> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>pubdate description</title> </head> <body> <h2>Description</h2> <p>The pubdate holds the information about the publication date.</p> <p>The type attribute can be set to either "primary" or "secondary".</p> <h2>Example</h2> <pre> <pubdate type="primary"> <date> <year>1999</year> </date> <otherinfo>Spring meeting</otherinfo> </pubdate> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>pubinfo description</title> </head> <body> <h2>Description</h2> <p>The pubinfo element is a wrapper for all bibliographic information of a <a href="publication.html">publication</a> element.</p> <h2>Example</h2> <pre> <pubinfo> <pubdate type="primary"> <date> <year>1999</year> </date> </pubdate> <city>Sebastopol</city> <publisher>O'Reilly</publisher> <serial>1-56592-580-7</serial> <address>mi...@di...</address> <url>http://www.dinosaurs.upenn.edu/</url> </pubinfo> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>publication description</title> </head> <body> <h2>Description</h2> <p>The publication element contains the information related to a published work. Roughly speaking, this is what you find on the shelf of a library. This corresponds to the monographic level of bibliographic information.</p> <h2>Example</h2> <pre> <entry type="CHAP" id="32" citekey="WALSH1999"> <part> <title>XML: Principles, Tools, and Techniques</title> <author> <lastname>Walsh</lastname> <firstname>N</firstname> </author> </part> <publication> <title>Guide to XML</title> <author> <lastname>Connolly</lastname> <firstname>D</firstname> </author> <pubinfo> <pubdate type="primary"> <date> <year>1999</year> </date> </pubdate> <city>Sebastopol</city> <publisher>O'Reilly</publisher> </pubinfo> </publication> <libinfo user="markus"><notes>Not bad</notes> <reprint status="NOTINFILE"/></libinfo> <contents><abstract>An introduction how to deal with XML</abstract> <keyword>XML</keyword> <keyword>computer</keyword> <keyword>markup languages</keyword> </contents> </entry> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>publisher description</title> </head> <body> <h2>Description</h2> <p>The publisher element contains the name of the publisher of a publication.</p> <h2>Example</h2> <pre> <pubinfo> <pubdate type="primary"> <date> <year>1999</year> </date> </pubdate> <city>Sebastopol</city> <publisher>O'Reilly</publisher> <serial>1-56592-580-7</serial> <address>mi...@di...</address> <url>http://www.dinosaurs.upenn.edu/</url> </pubinfo> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>reprint description</title> </head> <body> <h2>Description</h2> <p>The reprint element specifies the status of a reprint request.</p> <p>The status attribute can be set to one of "NOTINFILE", "ONREQUEST", or "INFILE" to specify that no local copy is available, that a reprint was requested, and that a local copy is available, respectively. In the case of "ONREQUEST", an optional <a href="date.html">date</a> element can be used to provide the date when the reprint was requested.</p> <h2>Example</h2> <pre> <libinfo user="jdoe"> <notes>Not bad, after all</notes> <reprint status="INFILE"/> <availability type="useroot">palaeontology/dinosaurs/millera2002.pdf</availability> </libinfo> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>ris description</title> </head> <body> <h2>Description</h2> <p>ris is a container for one or more <a href="entry.html">entry</a> elements. Each entry contains one complete bibliographic dataset.</p> <h2>Example</h2> <pre> <ris> <entry type="ABST" citekey="MILLER1999"> ... </entry> <entry type="BOOK" citekey="JONES2000"> ... </entry> </ris> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>serial description</title> </head> <body> <h2>Description</h2> <p>The serial element contains an ISSN or ISBN. These numbers are provided by the publisher in order to unambiguously identify a published work.</p> <h2>Example</h2> <pre> <pubinfo> <pubdate type="primary"> <date> <year>1999</year> </date> </pubdate> <city>Sebastopol</city> <publisher>O'Reilly</publisher> <serial>1-56592-580-7</serial> <address>mi...@di...</address> <url>http://www.dinosaurs.upenn.edu/</url> </pubinfo> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>set description</title> </head> <body> <h2>Description</h2> <p>The set element contains the information related to a series of published works. This corresponds to the series level of bibliographic information.</p> <h2>Example</h2> <pre> <entry type="BOOK" id="31" citekey="MILLER1999"> <publication> <title>My first book about dinosaurs</title> <author> <lastname>Miller</lastname> <firstname>A</firstname> </author> <author> <lastname>Myers</lastname> <firstname>B</firstname> <middlename>B</middlename> <suffix>Jr.</suffix> </author> <pubinfo> <pubdate type="primary"> <date> <year>1999</year> </date> </pubdate> <city>Sebastopol</city> <publisher>O'Reilly</publisher> <serial>1-56592-580-7</serial> <address>mi...@di...</address> <url>http://www.dinosaurs.upenn.edu/</url> </pubinfo> </publication> <set> <title>My first book series</title> <author> <lastname>Smith</lastname> <firstname>K</firstname> </author> </set> <libinfo user="markus"> <notes>Not bad, after all</notes> <reprint status="ONREQUEST"> <date> <year>2002</year> <month>2</month> <day>24</day> </date> </reprint> <availability type="useroot">palaeontology/dinosaurs/millera2002.pdf</availability> </libinfo> <contents> <abstract>Dinosaurs were big animals that ate a lot</abstract> <keyword>dinosaurs</keyword> <keyword>evolution</keyword> <keyword>animals</keyword> </contents> </entry> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>startpage description</title> </head> <body> <h2>Description</h2> <p>Journal and magazine articles are usually published on a range of pages. The startpage element specifies the first page of an article.</p> <h2>Example</h2> <pre> <pubinfo> <pubdate type="primary"> <date> <year>2002</year> </date> </pubdate> <volume>63</volume> <issue>4</issue> <startpage>577</startpage> <endpage>85</endpage> </pubinfo> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>suffix description</title> </head> <body> <h2>Description</h2> <p>The suffix element contains an optional suffix of an author or editor, such as "3rd", "Jr.".</p> <h2>Example</h2> <pre> <author> <lastname>Myers</lastname> <firstname>B</firstname> <middlename>B</middlename> <suffix>Jr.</suffix> </author> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>title description</title> </head> <body> <h2>Description</h2> <p>The title element contains the title of a <a href="part.html">part</a>, <a href="publication.html">publication</a>, or <a href="set.html">set</a> element.</p> <p>The type attribute should be set to "gen" for all titles except the names of periodicals. In that case, multiple titles can be specified and distinguished by the attribute values "abbrev", "full", "user1", "user2" to denote the official abbreviation of the periodical name (usually as specified by the Index Medicus), the full name, and up to two user-specified abbreviations, respectively.</p> <h2>Example</h2> <pre> <publication> <title type="abbrev">Biochem.Pharmacol.</title> <title type="full">Biochemical Pharmacology</title> <title type="user1">BP</title> <pubinfo> <pubdate type="primary"> <date> <year>2002</year> </date> </pubdate> <volume>63</volume> <issue>4</issue> <startpage>577</startpage> <endpage>85</endpage> </pubinfo> </publication> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>url description</title> </head> <body> <h2>Description</h2> <p>The url element holds the unique resource locator (URL) of an electronic version of the publication or of electronic information relevant to that publication.</p> <h2>Example</h2> <pre> <pubinfo> <pubdate type="primary"> <date> <year>1999</year> </date> </pubdate> <city>Sebastopol</city> <publisher>O'Reilly</publisher> <serial>1-56592-580-7</serial> <address>mi...@di...</address> <url>http://www.dinosaurs.upenn.edu/</url> </pubinfo> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>userdef description</title> </head> <body> <h2>Description</h2> <p>The userdef element is an all-purpose element to store information not covered by the other elements. For reasons of consistency, a reference database administrator should figure out rules which kind of information should be stored in the userdef element.</p> <p>The type element can be set to one of "1", "2", "3", "4", or "5", thus allowing to use 5 different userdef elements per dataset.</p> <h2>Example</h2> <pre> <pubinfo> <pubdate type="primary"> <date> <year>1999</year> </date> </pubdate> <city>Sebastopol</city> <publisher>O'Reilly</publisher> <serial>1-56592-580-7</serial> <address>mi...@di...</address> <url>http://www.dinosaurs.upenn.edu/</url> <userdef type="1">high</userdef> </pubinfo> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>volume description</title> </head> <body> <h2>Description</h2> <p>The volume element specifies the volume of a periodical that an article appeared in.</p> <h2>Example</h2> <pre> <pubinfo> <pubdate type="primary"> <date> <year>2002</year> </date> </pubdate> <volume>63</volume> <issue>4</issue> <startpage>577</startpage> <endpage>85</endpage> </pubinfo> </pre> </body> </html> --- NEW FILE --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>year description</title> </head> <body> <h2>Description</h2> <p>The year element holds the year information of a <a href="date.html">date</a> element. The year should be specified as a numeric 4-digit value.</p> <h2>Example</h2> <pre> <pubdate type="primary"> <date> <year>1999</year> <month>11</month> <day>12</day> </date> </pubdate> </pre> </body> </html> |