<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://microformats.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=TerrellRussell</id>
	<title>Microformats Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://microformats.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=TerrellRussell"/>
	<link rel="alternate" type="text/html" href="https://microformats.org/wiki/Special:Contributions/TerrellRussell"/>
	<updated>2026-04-06T02:04:23Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.38.4</generator>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=datetime-design-pattern&amp;diff=15794</id>
		<title>datetime-design-pattern</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=datetime-design-pattern&amp;diff=15794"/>
		<updated>2006-09-07T04:28:24Z</updated>

		<summary type="html">&lt;p&gt;TerrellRussell: /* Current uses */ added an alternative for UTC&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''This page is a draft.'''&lt;br /&gt;
&lt;br /&gt;
= Datetime Design Pattern =&lt;br /&gt;
This is a page for exploring a datetime design pattern.&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
* Use the [[datetime-design-pattern]] to make datetimes that are human readable also formally machine readable.&lt;br /&gt;
&lt;br /&gt;
== Practical Need ==&lt;br /&gt;
* This design pattern arose as a result of solving the practical need for human readable dates for [[hcalendar|hCalendar]].&lt;br /&gt;
&lt;br /&gt;
== How to use it ==&lt;br /&gt;
* enclose the human-friendly datetime that you want to make machine readable with &amp;lt;code&amp;gt;&amp;amp;lt;abbr&amp;gt;&amp;lt;/code&amp;gt; &lt;br /&gt;
* as per the [[class-design-pattern]], add the appropriate &amp;lt;code&amp;gt;class&amp;lt;/code&amp;gt; attribute to the &amp;lt;code&amp;gt;abbr&amp;lt;/code&amp;gt; element&lt;br /&gt;
* add a &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; attribute to the &amp;lt;code&amp;gt;abbr&amp;lt;/code&amp;gt; element with the machine readable ISO8601 datetime or date as the value&lt;br /&gt;
&lt;br /&gt;
== Current uses ==&lt;br /&gt;
&lt;br /&gt;
The pattern which is now used in [[hcalendar|hCalendar]] and [[hreview|hReview]] is something like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;amp;lt;abbr class=&amp;quot;foo&amp;quot; title=&amp;quot;YYYY-MM-DDTHH:MM:SS+ZZ:ZZ&amp;quot;&amp;amp;gt;Date Time&amp;amp;lt;/abbr&amp;amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where foo is the semantic classname which is being applied to this date/time, the title of the &amp;amp;lt;abbr&amp;amp;gt; is an ISO 8601 date/time and &amp;quot;Date Time&amp;quot; is a human-friendly representation of the same date/time.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An alternative, if you are using UTC-based timestamps, would be:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;amp;lt;abbr class=&amp;quot;foo&amp;quot; title=&amp;quot;YYYY-MM-DDTHH:MM:SSZ&amp;quot;&amp;amp;gt;Date Time&amp;amp;lt;/abbr&amp;amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with a single &amp;quot;Z&amp;quot; as per [http://en.wikipedia.org/wiki/ISO_8601 ISO 8601]&lt;br /&gt;
&lt;br /&gt;
== Profile of ISO8601 ==&lt;br /&gt;
&lt;br /&gt;
We recommend that any [[microformat]] using the date-time-design pattern use a profile of ISO8601.  There are currently two widely used profiles which SHOULD be reused.&lt;br /&gt;
&lt;br /&gt;
* RFC 3339&lt;br /&gt;
* [http://www.w3.org/TR/NOTE-datetime W3C Note on Datetimes] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Discussion ==&lt;br /&gt;
&lt;br /&gt;
This pattern is likely to be highly resuable.&lt;br /&gt;
&lt;br /&gt;
--[[User:RyanKing]]&lt;br /&gt;
&lt;br /&gt;
Can this not be viewed as a microformat in itself?&lt;br /&gt;
&lt;br /&gt;
--[[User:DimitriGlazkov]]&lt;br /&gt;
&lt;br /&gt;
It could, but inventing a microformat for the sake of inventing a microformat is against the microformat principles.&lt;br /&gt;
If there is a specific real world problem (and uses cases) that such an elemental microformat would solve, then it would be worth considering.&lt;br /&gt;
&lt;br /&gt;
Until then it is best to keep the &amp;amp;lt;abbr&amp;amp;gt; datetime concept merely as a microformat design pattern, to be used in _actual_ microformats that have a demonstrated practical need.&lt;br /&gt;
&lt;br /&gt;
-- [http://tantek.com/log/ Tantek]&lt;br /&gt;
&lt;br /&gt;
Excerpt from #microformats Aug 18th. Please edit!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Aug 18 15:16:14 &amp;lt;Tantek&amp;gt;	DanC, what do you think of RFC3339?&lt;br /&gt;
Aug 18 15:17:14 &amp;lt;Tantek&amp;gt;	ISO8601 subset&lt;br /&gt;
Aug 18 15:17:19 &amp;lt;DanC&amp;gt;	        Date and Time on the Internet: Timestamps http://www.ietf.org/rfc/rfc3339.txt&lt;br /&gt;
Aug 18 15:17:30 &amp;lt;DanC&amp;gt;	        Klyne is a good guy. I wonder if I talked with him about this.&lt;br /&gt;
Aug 18 15:17:32 &amp;lt;Tantek&amp;gt;	compat with W3C-NOTE-DATETIME&lt;br /&gt;
Aug 18 15:17:50 &amp;lt;Tantek&amp;gt;	compat with xsd:dateTime&lt;br /&gt;
Aug 18 15:17:57 &amp;lt;Tantek&amp;gt;	it's a strict intersection subset&lt;br /&gt;
Aug 18 15:17:59 &amp;lt;DanC&amp;gt;	        I consider W3C-NOTE-DATETIME obsoleted by XML Schema datatype-- yeah.. xsd:dateTime&lt;br /&gt;
Aug 18 15:18:32 &amp;lt;Tantek&amp;gt;	compare/contrast normatively using xsd:dateTime vs. RFC3339&lt;br /&gt;
Aug 18 15:18:41 &amp;lt;Tantek&amp;gt;	note: Atom 1.0 chose RFC3339&lt;br /&gt;
Aug 18 15:18:50 &amp;lt;Tantek&amp;gt;	i would like input from the microformats community on this&lt;br /&gt;
Aug 18 15:19:27 &amp;lt;DanC&amp;gt;	        in what context are you evaluating RFC 3339?&lt;br /&gt;
Aug 18 15:19:28 &amp;lt;jcgregorio&amp;gt;	http://bitworking.org/news/Date_Constructs_in_the_Atom_Syndication_Format&lt;br /&gt;
Aug 18 15:21:24 &amp;lt;DanC&amp;gt;	        which microformat is the question coming from, Tantek ?&lt;br /&gt;
Aug 18 15:23:31 &amp;lt;DanC&amp;gt;	        &amp;quot;   The grammar element time-second may have the value &amp;quot;60&amp;quot; at the end of&lt;br /&gt;
Aug 18 15:23:31 &amp;lt;DanC&amp;gt;	        months in which a leap second occurs&amp;quot; The XML Schema WG is in the 27th level of&lt;br /&gt;
                                leap-second-hell for the past few months, I gather.&lt;br /&gt;
Aug 18 15:24:21 &amp;lt;DanC&amp;gt;	        yeah... here's the scary bit: &amp;quot;   Leap seconds cannot be predicted far into the&lt;br /&gt;
                                future.  The&lt;br /&gt;
Aug 18 15:24:21 &amp;lt;DanC&amp;gt;	        International Earth Rotation Service publishes bulletins [IERS] that&lt;br /&gt;
Aug 18 15:24:21 &amp;lt;DanC&amp;gt;	        announce leap seconds with a few weeks' warning.&amp;quot;&lt;br /&gt;
Aug 18 15:26:03 &amp;lt;Tantek&amp;gt;	DanC, which microformats? any/all that use datetime fields.&lt;br /&gt;
Aug 18 15:26:36 &amp;lt;DanC&amp;gt;	        hard to give useful advice, then.&lt;br /&gt;
Aug 18 15:26:58 &amp;lt;DanC&amp;gt;	        I expect they'll use datetime fields for different things that have different&lt;br /&gt;
                                cost/benefit trade-offs&lt;br /&gt;
Aug 18 15:27:26 &amp;lt;DanC&amp;gt;	        do you know of any particular differences that matter to anybody?&lt;br /&gt;
Aug 18 15:56:43 &amp;lt;KragenSitaker&amp;gt;	RFC3339 suggests -07:00, which seems like an improvement over -0700 anyway&lt;br /&gt;
Aug 18 15:56:49 &amp;lt;Tantek&amp;gt;	Kragen, agreed&lt;br /&gt;
Aug 18 15:57:01 &amp;lt;Tantek&amp;gt;	RFC3339 is certainly preferable to the ISO8601 subset in iCalendar&lt;br /&gt;
Aug 18 16:05:57 &amp;lt;DanC&amp;gt;	        Tantek's right, Kragen; iCalendar looks like it solves the local timezone&lt;br /&gt;
                                problem but doesn't.&lt;br /&gt;
Aug 18 16:06:14 &amp;lt;DanC&amp;gt;	        and it's true that there's no standard solution to the local timezone problem&lt;br /&gt;
Aug 18 16:06:39 &amp;lt;Tantek&amp;gt;	so instead of appearing to solve the problem but not solving it, we chose to&lt;br /&gt;
                                provide the ability to *approximate* the local timezone using e.g. &amp;quot;-07:00&amp;quot;&lt;br /&gt;
Aug 18 16:06:49 &amp;lt;DanC&amp;gt;	        the simplest thing is to have people use Z time in hCalendar. But I gather&lt;br /&gt;
                                that's unacceptably unusable?&lt;br /&gt;
Aug 18 16:07:35 &amp;lt;Tantek&amp;gt;	DanC, yes, the simplest thing is to have everyone use UTC Z&lt;br /&gt;
Aug 18 16:07:38 &amp;lt;Tantek&amp;gt;	However&lt;br /&gt;
Aug 18 16:07:50 &amp;lt;Tantek&amp;gt;	it is not *nearly* as usuable/verifiable&lt;br /&gt;
Aug 18 16:07:55 &amp;lt;Tantek&amp;gt;	as -07:00 etc.&lt;br /&gt;
Aug 18 16:08:02 &amp;lt;Tantek&amp;gt;	hence the decision to go with the latter&lt;br /&gt;
Aug 18 16:08:12 &amp;lt;Tantek&amp;gt;	some degree of human verifiability is important here&lt;br /&gt;
Aug 18 16:14:21 &amp;lt;Tantek&amp;gt;	DanC, my perception is that RFC3339 is a subset&lt;br /&gt;
Aug 18 16:17:00 &amp;lt;DanC&amp;gt;	        time-numoffset  = (&amp;quot;+&amp;quot; / &amp;quot;-&amp;quot;) time-hour &amp;quot;:&amp;quot; time-minute&lt;br /&gt;
Aug 18 16:17:34 &amp;lt;DanC&amp;gt;	        ok, then I can't see any differences. (modulo recent leap seconds issues that&lt;br /&gt;
                                may affect xsd:dateTime )&lt;br /&gt;
Aug 18 16:18:07 &amp;lt;Tantek&amp;gt;	would be interesting to know why Atom 1.0 chose RFC3339 over xsd:dateTime&lt;br /&gt;
Aug 18 16:18:21 &amp;lt;Tantek&amp;gt;	if there was a &amp;quot;real&amp;quot; reason or if it was arbitrary / coin-flip.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here's an exhaustive [http://www.imc.org/atom-syntax/mail-archive/msg13103.html comparison] from ndw. I think xsd:dateTime also allows unqualified local times, while RFC3339 allows only UTC with no known timezone (-00:00). In the end, Atompub followed the advice of [http://www.imc.org/atom-syntax/mail-archive/msg13244.html Sam Ruby] and [http://www.imc.org/atom-syntax/mail-archive/msg13248.html Scott Hollenbeck], our area director. Atom dates make some additional restrictions on RFC3339, such as uppercase T and Z characters for compatibility with xsd:dateTime, RFC3339, W3C-DTF, and ISO8601. --[http://franklinmint.fm Robert Sayre]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Aug 18 16:18:43 &amp;lt;KragenSitaker&amp;gt;	rfc3339 is pretty short.&lt;br /&gt;
Aug 18 16:19:36 &amp;lt;Tantek&amp;gt;	DanC, BTW, which came first? REC for xsd:dateTime or RFC3339?&lt;br /&gt;
Aug 18 16:19:50 &amp;lt;DanC&amp;gt;	        RFC3339 is dated July 2002 ...&lt;br /&gt;
Aug 18 16:19:54 &amp;lt;KragenSitaker&amp;gt;	Right --- and you might be able to understand xsd:dateTime without&lt;br /&gt;
                                reading all of xml schema, you wouldn't be confident of it&lt;br /&gt;
Aug 18 16:20:25 &amp;lt;DanC&amp;gt;	        W3C Recommendation 28 October 2004 ... but that's 2nd ed...&lt;br /&gt;
Aug 18 16:20:47 &amp;lt;DanC&amp;gt;	        W3C Recommendation 02 May 2001&lt;br /&gt;
Aug 18 16:22:10 &amp;lt;DanC&amp;gt;	        I don't see a BNF in http://www.w3.org/TR/2001/REC-xmlschema-2-20010502/#dateTime ...&lt;br /&gt;
Aug 18 16:22:43 &amp;lt;KragenSitaker&amp;gt;	yeah, appendix D of the current xml schema datatypes document seems&lt;br /&gt;
                                a little scanty, actually&lt;br /&gt;
Aug 18 16:23:28 &amp;lt;DanC&amp;gt;	        ah... 2nd ed of http://www.w3.org/TR/xmlschema-2/#date is much more&lt;br /&gt;
                                explicit about syntax.&lt;br /&gt;
Aug 18 16:23:30 &amp;lt;KragenSitaker&amp;gt;	it's 1100 words but still doesn't give any examples&lt;br /&gt;
Aug 18 16:23:35 &amp;lt;DanC&amp;gt;	        still, it's given in prose and not BNF&lt;br /&gt;
Aug 18 16:24:17 &amp;lt;KragenSitaker&amp;gt;	sections 3.2.9 through 3.2.14 seem to be the relevant ones around #date&lt;br /&gt;
Aug 18 16:24:29 &amp;lt;KragenSitaker&amp;gt;	which is another 2200 words&lt;br /&gt;
Aug 18 16:24:42 &amp;lt;DanC&amp;gt;	        wow... they changed the canonical form of date from always-Z to&lt;br /&gt;
                                timezone-allowed between 1st edition and 2nd edition&lt;br /&gt;
Aug 18 16:25:01 &amp;lt;Tantek&amp;gt;	Kragen, DanC, these are very good analyses&lt;br /&gt;
Aug 18 16:25:21 &amp;lt;Tantek&amp;gt;	could I ask you to summarize the pros/cons for each in a new section at&lt;br /&gt;
                                end of http://microformats.org/wiki/datetime-design-pattern&lt;br /&gt;
Aug 18 16:25:22 &amp;lt;Tantek&amp;gt;	?&lt;br /&gt;
Aug 18 16:25:58 &amp;lt;KragenSitaker&amp;gt;	rfc 3339 is 4000 words, excluding the last two pages of boilerplate.&lt;br /&gt;
Aug 18 16:26:31 &amp;lt;KragenSitaker&amp;gt;	so it's actually longer than the datetime-relevant parts of XSD but it&lt;br /&gt;
                                seems much more rigorous and clear&lt;br /&gt;
Aug 18 16:28:37 &amp;lt;DanC&amp;gt;	        my advice is: normatively cite both, and claim they specify the same&lt;br /&gt;
                                syntax, and let anybody who discovers otherwise send you a bug report&lt;br /&gt;
                                with a test case&lt;br /&gt;
Aug 18 16:29:12 &amp;lt;KragenSitaker&amp;gt;	danc: nice hack&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The RFC3339 has a mandatory TIME portion of the DATE-TIME. Some vCard/iCalendar DATE-TIME stamps can omit the TIME. For instance, DTSTART, if that is a full day event, then you can omit the time. BDAY in vCard can be respresented by only a DATE. I like the idea of restricting the possible date formats, but i think that TIME should be optional, which it isn't in RFC3339. - [http://suda.co.uk/ brian suda]&lt;br /&gt;
&lt;br /&gt;
RFC 3339 allows lowercase 't' and 'z' while XSD doesn't. Specifying RFC 3339 plus 'T' and 'Z' MUST be caps will make them the same. - [http://bitworking.org Joe Gregorio]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Code ==&lt;br /&gt;
The following regular expression (parsed VERBOSE) should break apart a datetime and cover many lightly broken cases seen in the wild. This has been tested under Python.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
 ^&lt;br /&gt;
 (?P&amp;lt;year&amp;gt;\d\d\d\d)&lt;br /&gt;
 ([-])?(?P&amp;lt;month&amp;gt;\d\d)&lt;br /&gt;
 ([-])?(?P&amp;lt;day&amp;gt;\d\d)&lt;br /&gt;
 (&lt;br /&gt;
  (T|\s+)&lt;br /&gt;
  (?P&amp;lt;hour&amp;gt;\d\d)&lt;br /&gt;
  (&lt;br /&gt;
   ([:])?(?P&amp;lt;minute&amp;gt;\d\d)&lt;br /&gt;
   (&lt;br /&gt;
    ([:])?(?P&amp;lt;second&amp;gt;\d\d)&lt;br /&gt;
    (&lt;br /&gt;
     ([.])?(?P&amp;lt;fraction&amp;gt;\d+)&lt;br /&gt;
    )?&lt;br /&gt;
   )?&lt;br /&gt;
  )?&lt;br /&gt;
 )?&lt;br /&gt;
 (&lt;br /&gt;
  (?P&amp;lt;tzzulu&amp;gt;Z)&lt;br /&gt;
  |&lt;br /&gt;
  (?P&amp;lt;tzoffset&amp;gt;[-+])&lt;br /&gt;
  (?P&amp;lt;tzhour&amp;gt;\d\d)&lt;br /&gt;
  ([:])?(?P&amp;lt;tzminute&amp;gt;\d\d)&lt;br /&gt;
 )?&lt;br /&gt;
 $&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[Main_Page#Design_Patterns|All microformat design patterns]]&lt;br /&gt;
* [[abbr-design-pattern]] is used by [[datetime-design-pattern]]&lt;br /&gt;
* HTML 4.01 definition of &amp;lt;code&amp;gt;&amp;amp;lt;[http://www.w3.org/TR/REC-html40/struct/text.html#edef-ABBR abbr]&amp;gt;&amp;lt;/code&amp;gt; element&lt;br /&gt;
* RFC [http://www.faqs.org/rfcs/rfc3339.html 3339]: Date and Time on the Internet: Timestamps&lt;br /&gt;
* W3C: [http://www.w3.org/TR/NOTE-datetime Note on Datetimes] &lt;br /&gt;
* Markus Kuhn: [http://www.cl.cam.ac.uk/~mgk25/iso-time.html A summary of the international standard date and time notation]&lt;br /&gt;
* Wikipedia: [http://en.wikipedia.org/wiki/ISO_8601 ISO 8601]&lt;/div&gt;</summary>
		<author><name>TerrellRussell</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=hcard&amp;diff=8287</id>
		<title>hcard</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=hcard&amp;diff=8287"/>
		<updated>2006-08-24T16:56:07Z</updated>

		<summary type="html">&lt;p&gt;TerrellRussell: /* Examples in the wild */ added brown.edu&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;hCard&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
hCard is a simple, open, distributed format for representing people, companies, organizations, and places, using a 1:1 representation of the properties and values of the vCard standard ([http://www.ietf.org/rfc/rfc2426.txt RFC2426]) in [[semantic-xhtml|semantic XHTML]].  hCard is one of several open [[microformats|microformat]] standards suitable for embedding in (X)HTML, Atom, RSS, and arbitrary XML.&lt;br /&gt;
&lt;br /&gt;
Want to get started with writing an [[hcard|hCard]]?  Use the [http://microformats.org/code/hcard/creator hCard creator] to write up some contact information and publish it, or follow the [[hcard-authoring|hCard authoring tips]] to add hCard markup to your current contact page.&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
== Specification ==&lt;br /&gt;
&lt;br /&gt;
=== Editor ===&lt;br /&gt;
[http://tantek.com/ Tantek Çelik], [http://technorati.com Technorati, Inc.]&lt;br /&gt;
&lt;br /&gt;
=== Authors ===&lt;br /&gt;
* [http://tantek.com/ Tantek Çelik], [http://technorati.com Technorati, Inc]&lt;br /&gt;
* [http://suda.co.uk/ Brian Suda]&lt;br /&gt;
&lt;br /&gt;
=== Copyright ===&lt;br /&gt;
{{MicroFormatCopyrightStatement2004}}&lt;br /&gt;
&lt;br /&gt;
=== Patents ===&lt;br /&gt;
{{MicroFormatPatentStatement}}&lt;br /&gt;
&lt;br /&gt;
=== Inspiration and Acknowledgments ===&lt;br /&gt;
Thanks to: my good friend [http://vadim.com/ Vadim] who introduced me to vCard ''many'' years ago, and if I'd only paid more attention then, perhaps I could have helped a lot of people avoid wasting a lot of time reinventing various standards wheels.&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
The vCard standard ([http://www.ietf.org/rfc/rfc2426.txt RFC2426]), has been broadly interoperably implemented (e.g. Apple's &amp;quot;Address Book&amp;quot; application built into MacOSX).&lt;br /&gt;
&lt;br /&gt;
In addition, many bloggers identify themselves by name and discuss their friends and family.  With just a tad bit of structure, bloggers can discuss people in their blog(s) in such a way that spiders and other aggregators can retrieve this information, automatically convert them to vCards, and use them in any vCard application or service.&lt;br /&gt;
&lt;br /&gt;
This specification introduces the '''hCard''' format, which uses a 1:1 representation of the properties and values of the aforementioned vCard standard, in semantic XHTML.  Bloggers can both embed hCards directly in their web pages, and style them with CSS to make them appear as desired.  In addition, hCard enables applications to retrieve information directly from web pages without having to reference a separate file.&lt;br /&gt;
&lt;br /&gt;
Use the [http://microformats.org/code/hcard/creator hCard creator] and copy the HTML code it generates to your blog or website to publish your contact info.&lt;br /&gt;
&lt;br /&gt;
== Semantic XHTML Design Principles ==&lt;br /&gt;
{{semantic-xhtml-design-principles}}&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
=== In General ===&lt;br /&gt;
The vCard standard ([http://www.ietf.org/rfc/rfc2426.txt RFC2426]) forms the basis of hCard.&lt;br /&gt;
&lt;br /&gt;
The basic format of hCard is to use vCard object/property names in lower-case for class names, and to map the nesting of vCard objects directly into nested XHTML elements.&lt;br /&gt;
&lt;br /&gt;
=== More Semantic Equivalents ===&lt;br /&gt;
However, for some properties there is a more semantic equivalent, and therefore they get special treatment, e.g.:&lt;br /&gt;
* &amp;lt;code&amp;gt;URL&amp;lt;/code&amp;gt; in vCard becomes  &amp;lt;code&amp;gt;&amp;lt;a class=&amp;quot;url&amp;quot; href=&amp;quot;...&amp;quot;&amp;gt;...&amp;lt;/a&amp;gt;&amp;lt;/code&amp;gt; inside the element with &amp;lt;code&amp;gt;class=&amp;quot;vcard&amp;quot;&amp;lt;/code&amp;gt; in hCard.&lt;br /&gt;
* Similarly, &amp;lt;code&amp;gt;EMAIL&amp;lt;/code&amp;gt; in vCard becomes &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;a class=&amp;quot;email&amp;quot; href=&amp;quot;mailto:...&amp;quot;&amp;gt;...&amp;lt;/a&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;PHOTO&amp;lt;/code&amp;gt; in vCard becomes &amp;lt;code&amp;gt;&amp;lt;img class=&amp;quot;photo&amp;quot; src=&amp;quot;...&amp;quot; alt=&amp;quot;Photo of ...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;&amp;lt;object class=&amp;quot;photo&amp;quot; data=&amp;quot;...&amp;quot; type=&amp;quot;...&amp;quot;&amp;gt;Photo of ...&amp;lt;/object&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;UID&amp;lt;/code&amp;gt; in vCard simply becomes another semantic applied to a specific URL (or EMAIL) for an hCard.&lt;br /&gt;
&lt;br /&gt;
=== Singular vs. Plural Properties ===&lt;br /&gt;
&lt;br /&gt;
For properties which are singular (e.g. &amp;quot;N&amp;quot; and &amp;quot;FN&amp;quot;), the first descendant element with that class should take effect, any others being ignored.&lt;br /&gt;
&lt;br /&gt;
For properties which can be plural (e.g. &amp;quot;TEL&amp;quot;), each class instance should create a instance of that property.&lt;br /&gt;
&lt;br /&gt;
==== Singular properties ====  &lt;br /&gt;
&lt;br /&gt;
Singular properties: &amp;quot;FN&amp;quot;, &amp;quot;N&amp;quot;, &amp;quot;BDAY&amp;quot;, &amp;quot;TZ&amp;quot;, &amp;quot;GEO&amp;quot;, &amp;quot;SORT-STRING&amp;quot;, &amp;quot;UID&amp;quot;, &amp;quot;CLASS&amp;quot;.  &lt;br /&gt;
&lt;br /&gt;
All other properties are plural.  This list has been derived by analyzing the semantics of the individual properties in vCard RFC2426 and determining logically that they MUST be singular per their semantics.  See [[hcard-singular-properties]] for explanations.&lt;br /&gt;
&lt;br /&gt;
==== Plural Properties Singularized ====&lt;br /&gt;
&lt;br /&gt;
Since plural property names become their singular equivalents, even if the original plural property permitted only a single value with multiple components, those multiple components are represented each with their own singularly named property and the the property is effectively multivalued and subject to the above treatment of multivalued properties.&lt;br /&gt;
&lt;br /&gt;
=== Human vs. Machine readable ===&lt;br /&gt;
&lt;br /&gt;
If an &amp;lt;code&amp;gt;&amp;amp;lt;abbr&amp;amp;gt;&amp;lt;/code&amp;gt; element is used for a property, then the '&amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt;' attribute of the &amp;lt;code&amp;gt;&amp;amp;lt;abbr&amp;gt;&amp;lt;/code&amp;gt; element is the value of the property, instead of the contents of the element, which instead provide a human presentable version of the value.  &lt;br /&gt;
&lt;br /&gt;
If an &amp;lt;code&amp;gt;&amp;amp;lt;a&amp;amp;gt;&amp;lt;/code&amp;gt; element is used for one or more properties, it must be treated as follows:&lt;br /&gt;
# For the &amp;quot;PHOTO&amp;quot; property and any other property that takes a URL as its value, the &amp;lt;code&amp;gt;href=&amp;quot;...&amp;quot;&amp;lt;/code&amp;gt; attribute provides the property value.&lt;br /&gt;
# For other properties, the element's content is the value of the property.&lt;br /&gt;
&lt;br /&gt;
If an &amp;lt;code&amp;gt;&amp;amp;lt;img&amp;amp;gt;&amp;lt;/code&amp;gt; element is used for one or more properties, it must be treated as follows:&lt;br /&gt;
# For the &amp;quot;PHOTO&amp;quot; property and any other property that takes a URL as its value, the &amp;lt;code&amp;gt;src=&amp;quot;...&amp;quot;&amp;lt;/code&amp;gt; attribute provides the property value.&lt;br /&gt;
# For other properties, the &amp;lt;code&amp;gt;&amp;amp;lt;img&amp;gt;&amp;lt;/code&amp;gt; element's '&amp;lt;code&amp;gt;alt&amp;lt;/code&amp;gt;' attribute is the value of the property.&lt;br /&gt;
&lt;br /&gt;
If an &amp;lt;code&amp;gt;&amp;amp;lt;object&amp;amp;gt;&amp;lt;/code&amp;gt; element is used for one or more properties, it must be treated as follows:&lt;br /&gt;
# For the &amp;quot;PHOTO&amp;quot; property and any other property that takes a URL as its value, the &amp;lt;code&amp;gt;data=&amp;quot;...&amp;quot;&amp;lt;/code&amp;gt; attribute provides the property value.&lt;br /&gt;
# For other properties, the element's content is the value of the property.&lt;br /&gt;
&lt;br /&gt;
=== Value excerpting ===&lt;br /&gt;
&lt;br /&gt;
Sometimes only part of an element which is the equivalent for a property should be used for the value of the property.  This typically occurs when a property has a subtype, like TEL.  For this purpose, the special class name &amp;quot;&amp;lt;code&amp;gt;value&amp;lt;/code&amp;gt;&amp;quot; is introduced to excerpt out the subset of the element that is  the value of the property.  E.g. here is an hCard fragment for marking up a home phone number:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;span class=&amp;quot;type&amp;quot;&amp;gt;home&amp;lt;/span&amp;gt;:&lt;br /&gt;
 &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;+1.415.555.1212&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This hCard fragment could be displayed as:&lt;br /&gt;
&lt;br /&gt;
 home: +1.415.555.1212&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Property Exceptions ===&lt;br /&gt;
&lt;br /&gt;
vCard has several properties which either do not make sense on, or are already implied within the context of a web page.  This section explains what to (not) do with them.&lt;br /&gt;
&lt;br /&gt;
# '''NAME''', '''PROFILE''', '''SOURCE''', '''PRODID''', '''VERSION''' properties as defined in Sections 2.1.2, 2.1.3, 2.1.4, 3.6.3, 3.6.9 of RFC 2426.  Content publishers MUST NOT use these properties in their hCards, and as such, hCard consumers/parsers MUST IGNORE these properties if they are found within an hCard.  Instead. hCard to vCard converters SHOULD use the title of the page where the hCard is found (e.g. the &amp;lt;code&amp;gt;&amp;lt;title&amp;gt;&amp;lt;/code&amp;gt; element in (X)HTML documents) to construct the NAME property, MAY output a PROFILE value of &amp;quot;&amp;lt;code&amp;gt;VCARD&amp;lt;/code&amp;gt;&amp;quot; per RFC 2426, SHOULD use the URL of the page where the hCard is found to construct the SOURCE property (e.g. perhaps as a parameter to a URL/service that converts hCards to vCards), for an output vCard stream (e.g. a .vcf file). Only services/applications that output actual vCards should write the PRODID property, with the product identifier for said service/application.   Similarly only such services/applications should write the VERSION property, with the value &amp;quot;3.0&amp;quot; (without quotes) per RFC2426 Section 3.6.9.&lt;br /&gt;
&lt;br /&gt;
=== Organization Contact Info ===&lt;br /&gt;
 &lt;br /&gt;
If the &amp;quot;FN&amp;quot; and &amp;quot;ORG&amp;quot; properties have the exact same value (typically because they are set on the same element, e.g. class=&amp;quot;fn org&amp;quot;), then the hCard represents contact information for a company or organization and should be treated as such.  In this case the author MUST also NOT set the &amp;quot;N&amp;quot; property, or set it (and any sub-properties) explicitly to the empty string &amp;quot;&amp;quot;.  Thus parsers should handle the missing &amp;quot;N&amp;quot; property in this case by implying empty values for all the &amp;quot;N&amp;quot; sub-properties.&lt;br /&gt;
&lt;br /&gt;
=== Implied &amp;quot;n&amp;quot; Optimization ===&lt;br /&gt;
&lt;br /&gt;
Although vCard requires that the &amp;quot;N&amp;quot; property be present, the authors of the vCard specification (RFC 2426) themselves do not include &amp;quot;N&amp;quot; properties in their vCards near the end of the spec (p.38).  This apparent contradiction can be resolved by simply allowing the &amp;quot;FN&amp;quot; property to imply &amp;quot;N&amp;quot; property values in typical cases provided in the spec.  We do so explicitly in hCard.&lt;br /&gt;
&lt;br /&gt;
If &amp;quot;FN&amp;quot; and &amp;quot;ORG&amp;quot; are not the same (see previous section), and the value of the &amp;quot;FN&amp;quot; property is exactly two words (separated by whitespace), and there is no explicit &amp;quot;N&amp;quot; property, then the &amp;quot;N&amp;quot; property is inferred from the &amp;quot;FN&amp;quot; property.  For &amp;quot;FN&amp;quot;s with either one word see below, and for three or more, the author MUST explicitly markup the &amp;quot;N&amp;quot;, except for the organization contact info case, [http://microformats.org/wiki/hcard#Organization_Contact_Info see above] for that.&lt;br /&gt;
&lt;br /&gt;
# The content of &amp;quot;FN&amp;quot; is broken into two &amp;quot;words&amp;quot; separated by whitespace.&lt;br /&gt;
# The ''first'' word of the &amp;quot;FN&amp;quot; is interpreted as the &amp;quot;given-name&amp;quot; for the &amp;quot;N&amp;quot; property.&lt;br /&gt;
# The ''second/last'' word of the &amp;quot;FN&amp;quot; is interpreted as the &amp;quot;family-name&amp;quot; for the &amp;quot;N&amp;quot; property.&lt;br /&gt;
# Exception: If the first word ends in a &amp;quot;,&amp;quot; comma OR if the second word is a single character (optionally followed by a period &amp;quot;.&amp;quot;), then the first word (minus the comma at the end if any) is interpreted as the &amp;quot;family-name&amp;quot; and the second word is interpreted as the &amp;quot;given-name&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
This allows simplification in the typical case of people stating:&lt;br /&gt;
* given-name (space) family-name&lt;br /&gt;
* family-name (comma) given-name&lt;br /&gt;
* family-name (comma) given-name-first-initial&lt;br /&gt;
* family-name (space) given-name-first-initial (optional period)&lt;br /&gt;
&lt;br /&gt;
=== Implied &amp;quot;nickname&amp;quot; Optimization ===&lt;br /&gt;
&lt;br /&gt;
Due to the prevalence of the use of nicknames/handles/usernames on the Web in actual content published on the Web (e.g. authors of [[hReview|reviews]]), hCard also has an implied &amp;quot;nickname&amp;quot; optimization to handle this.&lt;br /&gt;
&lt;br /&gt;
Similar to the implied &amp;quot;n&amp;quot; optimization, if &amp;quot;FN&amp;quot; and &amp;quot;ORG&amp;quot; are not the same, and the value of the &amp;quot;FN&amp;quot; property is exactly one word, and there is no explicit &amp;quot;N&amp;quot; property, then:&lt;br /&gt;
&lt;br /&gt;
# The content of the &amp;quot;FN&amp;quot; is treated as a &amp;quot;nickname&amp;quot; property value.&lt;br /&gt;
# Parsers should handle the missing &amp;quot;N&amp;quot; property by implying empty values for all the &amp;quot;N&amp;quot; sub-properties.&lt;br /&gt;
&lt;br /&gt;
Note: the hCard may have additional explicit &amp;quot;nickname&amp;quot; property values in addition to the implied nickname.&lt;br /&gt;
&lt;br /&gt;
=== Implied &amp;quot;organization-name&amp;quot; Optimization ===&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;ORG&amp;quot; property has two subproperties, organization-name and organization-unit. Very often authors only publish the organization-name.  Thus if an &amp;quot;ORG&amp;quot; property has no &amp;quot;organization-name&amp;quot; inside it, then its entire contents MUST be treated as the &amp;quot;organization-name&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
=== Tags as Categories ===&lt;br /&gt;
&lt;br /&gt;
Categories in hCard can optionally be represented by tags with rel-tag. When a category property is a rel-tag, the tag (as defined by rel-tag) is used for that category.&lt;br /&gt;
&lt;br /&gt;
=== Root Class Name ===&lt;br /&gt;
&lt;br /&gt;
The root class name for an hCard is &amp;quot;vcard&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
=== Property List ===&lt;br /&gt;
&lt;br /&gt;
This is the list of properties (and subproperties, in parentheses, like this) in hCard, taken from vCard:&lt;br /&gt;
&lt;br /&gt;
* fn, n (family-name, given-name, additional-name, honorific-prefix, honorific-suffix), nickname, sort-string&lt;br /&gt;
* url, email (type, value), tel (type, value)&lt;br /&gt;
* adr (post-office-box, extended-address, street-address, locality, region, postal-code, country-name, type, value), label&lt;br /&gt;
* geo (latitude, longitude), tz&lt;br /&gt;
* photo, logo, sound, bday&lt;br /&gt;
* title, role, org (organization-name, organization-unit)&lt;br /&gt;
* category, note&lt;br /&gt;
* class, key, mailer, uid, rev&lt;br /&gt;
==== type subproperty values ====&lt;br /&gt;
&lt;br /&gt;
The 'type' subproperty in particular takes different values depending on which property it is a subproperty of.  These 'type' subproperty values are case-INSENSITIVE, meaning &amp;quot;Home&amp;quot; is the same as &amp;quot;home&amp;quot;, as well as multivalued, e.g. a tel can be home and preferred:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;type&amp;quot;&amp;gt;Home&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;type&amp;quot;&amp;gt;pref&amp;lt;/span&amp;gt;erred):&lt;br /&gt;
 &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;+1.415.555.1212&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following lists are ''informative''. See RFC 2426 sections 3.2.1 ADR, 3.3.1 TEL, and 3.3.2 EMAIL respectively for normative type values.  They are repeated here for convenience. Default type subproperty value(s) is(are) first in each list and indicated in ALL CAPS.  types may be multivalued.&lt;br /&gt;
&lt;br /&gt;
* adr type: INTL, POSTAL, PARCEL, WORK, dom, home, pref&lt;br /&gt;
* tel type: VOICE, home, msg, work, pref, fax, cell, video, pager, bbs, modem, car, isdn, pcs&lt;br /&gt;
* email type: INTERNET, x400, pref, &amp;quot;other IANA registered address types&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== XMDP Profile ===&lt;br /&gt;
&lt;br /&gt;
See [[hcard-profile]] for the [http://gmpg.org/xmdp XMDP] profile of hCard which contains the above complete list of properties, with references to their RFC 2426 definitions.&lt;br /&gt;
&lt;br /&gt;
=== Parsing Details ===&lt;br /&gt;
&lt;br /&gt;
See [[hcard-parsing|hCard parsing]].&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
This section is informative.&lt;br /&gt;
&lt;br /&gt;
=== Sample vCard ===&lt;br /&gt;
&lt;br /&gt;
Here is a sample vCard:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
BEGIN:VCARD&lt;br /&gt;
VERSION:3.0&lt;br /&gt;
N:Çelik;Tantek&lt;br /&gt;
FN:Tantek Çelik&lt;br /&gt;
URL:http://tantek.com/&lt;br /&gt;
ORG:Technorati&lt;br /&gt;
END:VCARD&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and an equivalent in hCard with various elements optimized appropriately.  See [[hcard-example1-steps| hCard Example 1]] for the derivation. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;vcard&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;a class=&amp;quot;url fn&amp;quot; href=&amp;quot;http://tantek.com/&amp;quot;&amp;gt;Tantek Çelik&amp;lt;/a&amp;gt;&lt;br /&gt;
 &amp;lt;div class=&amp;quot;org&amp;quot;&amp;gt;Technorati&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This hCard might be displayed as:&lt;br /&gt;
&lt;br /&gt;
[http://tantek.com/ Tantek Çelik]&amp;lt;br /&amp;gt;&lt;br /&gt;
Technorati&lt;br /&gt;
&lt;br /&gt;
Note: The version information is unnecessary in hCard markup directly since the version will be defined by the profile of hCard that is used/referred to in the 'profile' attribute of the &amp;lt;head&amp;gt; element.&lt;br /&gt;
&lt;br /&gt;
=== More Examples ===&lt;br /&gt;
&lt;br /&gt;
See [[hcard-examples]] for more examples, including all examples from vCard RFC 2426 converted into hCard.&lt;br /&gt;
&lt;br /&gt;
== Examples in the wild ==&lt;br /&gt;
This section is '''informative'''.&lt;br /&gt;
&lt;br /&gt;
The following sites have published hCards, and thus are a great place to start for anyone looking for examples &amp;quot;in the wild&amp;quot; to try parsing, indexing, organizing etc.  If you have an hCard on your own page, feel free to add it to the top of this list.  Once the list grows too big, we'll make a separate wiki page.&lt;br /&gt;
&lt;br /&gt;
=== New Examples ===&lt;br /&gt;
Please add new examples to this section.&lt;br /&gt;
* [http://www.brown.edu Brown University] now uses hCard on the front page&lt;br /&gt;
* [http://www.wideblueyonderweb.co.uk Dunks at Wide Blue Yonder Web Design] has added hCard markup on his [http://www.wideblueyonderweb.co.uk/wbyw/pages/contact.htm contact page] and is looking to implement it on all past &amp;amp; future contact pages for clients.&lt;br /&gt;
* [http://southamptonrubberstamp.com Southampton Rubber Stamp Company] now has hCard markup with a vCard download link on every page.&lt;br /&gt;
* [http://barefoot-ceramics.com Barefoot Ceramics paint your own pottery studio] (in Newport, South Wales) has added hCard markup to its [http://barefoot-ceramics.com/find#address &amp;quot;Find&amp;quot;] page and other address instances. They hopes to implement hCalendar event lists as soon as an ics to hCalendar PHP class can be found or written.&lt;br /&gt;
* IBM is embracing microformats.  The [http://www.ibm.com/contact/employees/ IBM Employee Directory] now returns hcards in its query results.   Also see the [http://www.ibm.com/shortcuts/ Shortcuts Podcast].&lt;br /&gt;
* [http://dsingleton.co.uk/ David Singleton] has added a hCard to his blog.&lt;br /&gt;
* [http://www.thestreet.org.au The Street Theatre (Canberra, Australia)] has added hCard markup to its [http://www.thestreet.org.au/contact.htm Contact Us] page. hCalendar markup will soon be added for all of our performances.&lt;br /&gt;
* [http://www.informatik.uni-hamburg.de/SVS/personnel/henrich/index.php Henrich C. P&amp;amp;ouml;hls] has marked up his about page using hcard, including his PGP-Key that is stored in an abbr title, using class=key.&lt;br /&gt;
* [http://www.yalf.de Yalf Webentwicklung] has [http://www.yalf.de/kontakt contact information] available as hCard (and vCard).&lt;br /&gt;
* [http://www.zeldman.com/about/ Jeffrey Zeldman]. Jeffrey Zeldman has marked up his about page using hcard.&lt;br /&gt;
* [http://WhereAreYouCamping.com Where Are You Camping]. hCards for all members and camps, employing the include pattern as well. AFAIK this is the first Burning Man related microformats implementation, not to mention addresses in Black Rock City.&lt;br /&gt;
* [http://www.clacksweb.org.uk Clackmannanshire Council ]. hCard is implemented for all contact details across the site, and for specific individuals such as elected members (Councillors).&lt;br /&gt;
* [http://www.webdirections.org Web Directions ]. hCard is used as contact information for the conference, while speakers are marked up with hCard.&lt;br /&gt;
* [http://www.markthisdate.com/contactform.html MarkThisDate.com ]. An hCard is implemented on our contactform. For our calendars hCalendars will follow as soon as possible.&lt;br /&gt;
* [http://www.msiinet.com/contact/ MSI Systems Integrators] has its &amp;amp;quot;Contact MSI&amp;amp;quot; page encoded with hCards.&lt;br /&gt;
* [http://www.coolblue.nl/ Corporate website of Coolblue BV]. hCards were implemented in both the footer of each page, and in the &amp;quot;News&amp;quot; section for press contact information.&lt;br /&gt;
* [http://www.besancon.fr/index.php?p=32 Official site of Besançon (France)] uses hCard for each page concerning the small towns surrounding Besançon.&lt;br /&gt;
* [http://2006.dconstruct.org/speakers/ d.Construct 2006 conference speakers list] is implemented using hCards.&lt;br /&gt;
* [http://local.yahoo.com Yahoo Local] now supports hCards for business and places in the search results&lt;br /&gt;
* [http://learningtheworld.eu/imprint/ Learning the World] has hcard information on the imprint, alas we didn't succeed to mark-up the work phone and fax numbers properly.&lt;br /&gt;
* The [http://www.fuckparade.org F’parade] website uses hcard, though I didn't find a type to distinguish mobile and landline phone numbers.&lt;br /&gt;
* [http://www.miranet.nl/contact.htm Miranet Webdesign] have added a hcard to their [http://www.miranet.nl/contact.htm 'contact' page]&lt;br /&gt;
* [http://weblog.200ok.com.au/ Ben Buchanan] has added a vCard to the [http://weblog.200ok.com.au/about/ 'About' page on The 200ok Weblog]&lt;br /&gt;
* [http://www.radiantcore.com Radiant Core] has their contact information [http://www.radiantcore.com/contact/ available in hCard].&lt;br /&gt;
* [http://www.mikerumble.co.uk/ Mike Rumble] has [http://www.mikerumble.co.uk/contact.html uploaded his hCard].&lt;br /&gt;
* [http://www.saumag.edu/ Southern Arkansas University] has its contact footer encoded as hCard&lt;br /&gt;
* [http://main.uab.edu/ University of Alabama at Birmingham] has its contact footer encoded as hCard&lt;br /&gt;
* [http://www.capital.edu Capital University] has contact footer and bloggers' names encoded as hCard. Also, all page-specific contact information is encoded as hCards (see [http://www.capital.edu/Internet/Default.aspx?pid=67 Admissions] page for an example)&lt;br /&gt;
* [http://main.uab.edu/shrp/ UAB School of Health Professions] uses hCard in its contact footer&lt;br /&gt;
* [http://green.carisenda.com/ Stephen Stewart] has his hCard on the front page of his weblog ('You are here' section)&lt;br /&gt;
* [http://www.fberriman.com/ Frances Berriman] has a hidden vCard in the footers of her website.&lt;br /&gt;
* [http://www.candlescience.com/ CandleScience Candle Supply] added a hidden hcard sitewide.&lt;br /&gt;
* [http://www.direction.es/ Direction] uses hCard for contact information.&lt;br /&gt;
* [http://audiobank.tryphon.org AudioBank] uses hCard to display member informations.&lt;br /&gt;
* [http://www.vivabit.com/atmedia2006/speakers/ @media speakers] are marked up with hCard (photos depend on BASE tag support which makes this a good test case)&lt;br /&gt;
* [http://www.dougransom.com Doug Ransom] uses hCard for his financial advisory practice. &lt;br /&gt;
* [http://rubyandrails.org/usergroups/newcastle/members.html ncl.rb] uses hCard for contact information.&lt;br /&gt;
* [http://www.snowinteractive.com/ Snow Interactive] uses hCard for contact information.&lt;br /&gt;
* [http://flickr.com Flickr] now supports [[hcard|hCard]] and [http://gmpg.org/xfn XFN] on profile pages.  See [http://flickr.com/photos/factoryjoe/113866484/ screenshot of Flickr UI in Flock browser using Flocktails extension - March 17th 2006].&lt;br /&gt;
* [http://www.ndiyo.org/contact Contact information for the Ndiyo project]&lt;br /&gt;
* [http://www.pixelenvy.co.uk/ Pixel Envy] uses hCard for contact information on every page&lt;br /&gt;
* [http://stilbuero.de/contact/ Klaus Hartl] uses hCard in the sidebar for contact information (maybe easier to parse through delivering xhtml as xml).&lt;br /&gt;
* [http://charlvn.virafrikaans.com/contact Charl van Niekerk's hCard]&lt;br /&gt;
* [http://billy-girlardo.com/WP/ BillyBLOGirlardo] uses hCard for contact information.&lt;br /&gt;
* [http://www.hicksdesign.co.uk/ Hicksdesign] uses hCard for contact information.&lt;br /&gt;
* http://www.gr0w.com/articles/press/growsearch_launched_press_release/ - hCard in a press release for the press contact info&lt;br /&gt;
* http://www.redmonk.com/cote/archives/2006/03/testing_out_mic.html - hCard with explanation&lt;br /&gt;
* [http://andy.ciordia.info/ it's my island], personal blog, hcard on the ''[http://andy.ciordia.info/pages/about_me About the Writer]'' page. [[User:Ciordia9|Andy Ciordia]]&lt;br /&gt;
* [http://www.windowonwoking.org.uk/ Window on Woking], a local community site in the UK, uses hCard in the homepage of each member organisation and local Councillor.&lt;br /&gt;
* [http://ChunkySoup.net/ ChunkySoup.net] has redesigned using hAtom 0.1 and hCards on the entire site -- by [[User:ChrisCasciano|Chris Casciano]]&lt;br /&gt;
* [http://www.30boxes.com/ 30 Boxes],a social calendar application and digital lifestyle aggregator, automatically creates an hcard for you with your account.  It is found under Settings &amp;gt; Syndication.&lt;br /&gt;
* [http://www.nearwhere.com/ Nearwhere.com] allow you to put an hcard on an interactive map.&lt;br /&gt;
* [http://www.brentozar.com/ Brent Ozar] added a [http://www.brentozar.com/contact.php contact] page hCard.&lt;br /&gt;
* [http://www.kerihenare.com/ Keri Henare] has rewritten his [http://www.kerihenare.com/contact/ contact] page hCard.  Now using &amp;lt;code&amp;gt;&amp;lt;object&amp;gt;&amp;lt;/code&amp;gt; instead of &amp;lt;code&amp;gt;&amp;lt;img&amp;gt;&amp;lt;/code&amp;gt; for photo. (Thanks Brian Suda for updating the vCard converter)&lt;br /&gt;
* [http://michaelraichelson.com/contact/ Michael Raichelson] had an hCard on his contact page before SXSW, but never thought to add it here until Tantek requested it.&lt;br /&gt;
* [http://www.commoner.com/~lsimon/lindsey_simon_hcard.html Lindsey Simon] has added an hCard to his website as per Tantek's SXSW request for folks to try it &lt;br /&gt;
* [http://www.davidgagne.net/ David Gagne] has an hCard in his sidebar.&lt;br /&gt;
* [http://www.churchzip.com/map/ Churchzip.com/map] and [http://www.skiwhere.com/map/ Skiwhere.com/map], provide churches, hotels, and ski resorts on the same maps.  Locations are formatted as hcards.&lt;br /&gt;
* All [http://www.iqdir.com/ IQ Directory Solutions] Yellow Pages web portals use [[hcard|hCard]] markup on listings. For example [http://www.yellowpages-cambodia.com/ Cambodia Yellow Pages] and [http://www.superpages.com.my/ Malaysia Super Pages]&lt;br /&gt;
* Ning's cloneable Group app uses fuzzy matching to map custom fields to [[hcard|hCard]] markup on its [http://group.ning.com/index.php?controller=person&amp;amp;action=view&amp;amp;content=JonathanAquino profile] pages.&lt;br /&gt;
* [http://claimid.com/factoryjoe Chris Messina' ClaimID hCard]&lt;br /&gt;
* [http://factoryjoe.com/blog/hcard Chris Messina' hCard]&lt;br /&gt;
* [http://flock.com/about Flock About]&lt;br /&gt;
* [http://tantek.com/microformats/2006/03-01-TechPlenAgenda.html Agenda: W3C Technical Plenary Day, March 1 2006] has [[hcard|hCard]] and [[hcalendar|hCalendar]] markup. ([http://www.w3.org/2006/03/01-TechPlenAgenda.html original here]).&lt;br /&gt;
* [http://www.gr0w.com/articles/press/growsearch_launched_press_release/ GrowSearch Launched (Press Release)] uses an hCard to provide Press Contact Point.&lt;br /&gt;
* The [http://www.arborday.org/ National Arbor Day Foundation] has started using hCards for their [http://arborday.org/programs/conferences/communityforestry/index.cfm upcoming] [http://arborday.org/programs/conferences/hazardtrees-treeplanting/ conferences].&lt;br /&gt;
* [http://www.multipack.co.uk The Multipack] has numerous hCards, especially on the [http://www.multipack.co.uk/members/ members page], as well as the next meeting information.&lt;br /&gt;
* [http://deadringrancor.livejournal.com/ Justin McDowell] used an hCard when [http://deadringrancor.livejournal.com/221332.html referring to a person in his blog post]&lt;br /&gt;
* [http://davecardwell.co.uk/cv/ Dave Cardwell] has included his hCard in his Curriculum Vitae.&lt;br /&gt;
* [http://blog.usweb.com/ Shaun Shull] has written a great post on [http://blog.usweb.com/archives/how-microformats-affect-search-engine-optimization-seo How Microformats Affect SEO], and has included his [[hcard|hCard]] as one of the examples.&lt;br /&gt;
* [http://www.thefutureoftheweb.com/ Jesse Skinner] has written a simple [http://www.thefutureoftheweb.com/blog/2006/1/hcard tutorial with examples]&lt;br /&gt;
* [http://www.w3.org/2005/12/allgroupoverview.html 2006 W3C Technical Plenary Week] has marked up the venue, contacts, and program committee members all with hCard.&lt;br /&gt;
* [http://www.avf-nexus.co.uk AVF-Nexus] have a hCard on their [http://www.avf-nexus.co.uk/contact/ contact page] - (by [http://creation.uk.com Creation&amp;quot;])&lt;br /&gt;
* [http://www.thefantasticos.com/andrew/ Andrew White] posted [http://www.thefantasticos.com/andrew/index.php/my-hcard/ his hCard] and [http://www.thefantasticos.com/andrew/index.php/62/microformats-the-should-have-been-obvious-web-dev-tool/ blogged about it].&lt;br /&gt;
* [http://www.2sheds.ru Oleg &amp;quot;2sheds&amp;quot; Kourapov] in his [http://www.2sheds.ru/blog/ blog] ([http://suda.co.uk/projects/X2V/get-vcard.php?uri=http://www.2sheds.ru/blog X2V]) has turned personal profile into hCard ([http://suda.co.uk/projects/X2V/get-vcard.php?uri=http://www.2sheds.ru/blog/hcard.html X2V]) and his blogroll - into combination XFN/hCards ([http://suda.co.uk/projects/X2V/get-vcard.php?uri=http://www.2sheds.ru/blog/friends.html X2V])&lt;br /&gt;
* [http://www.approveddesign.co.uk Approved Design Consultancy] have a hCard on their [http://www.approveddesign.co.uk/about/contact/ contact page] as well as on their [http://www.approveddesign.co.uk/about/people/ people section] - (by [http://creation.uk.com Creation&amp;quot;])&lt;br /&gt;
* [http://weblog.200ok.com.au/ Ben Buchanan] and [http://www.griffith.edu.au/cgi-bin/phone_search.pl?string=colin+morris&amp;amp;format=search Colin Morris] have [http://weblog.200ok.com.au/2006/01/griffith-phonebook-adds-hcard-and.html implemented hCards and vCards] for the [http://www.griffith.edu.au Griffith University] [http://www.griffith.edu.au/find/content_phonebook.html online phone book]. Eg. [http://www.griffith.edu.au/cgi-bin/phone_search.pl?string=ben+buchanan&amp;amp;format=search Ben's vCard] and [http://www.griffith.edu.au/cgi-bin/phone_search.pl?string=colin+morris&amp;amp;format=search Colin's vCard]&lt;br /&gt;
* WWF-Australia [http://wwf.org.au/about/contactdetails/ contact details page]&lt;br /&gt;
* [http://rasterweb.net/raster/ Pete Prodoehl] used the hCard format on his [http://rasterweb.net/raster/contact.html Contact page]&lt;br /&gt;
* [http://alexander-mette.de amette] uses the hCard format in a module of his TikiWiki powered blog&lt;br /&gt;
* [http://staff.washington.edu/oren/weblog2/ Oren Sreebny] has an hcard on his blog main index template &lt;br /&gt;
* [http://www.cs.brandeis.edu/~zippy/ Patrick Tufts] has an hCard on his homepage.&lt;br /&gt;
* [http://ascii20.blogspot.com/ Mathias Kolehmainen and Jamie Taylor] have hCards on their weblog.&lt;br /&gt;
* [http://www.hoppsan.org/jamesb/blogger/ Barnaby James] has a hCard on his weblog.&lt;br /&gt;
* [http://esa-education.com/schools/map ESA Education] Uses hCards for their 100+ schools and each of the individual school sites.&lt;br /&gt;
* [http://www.thereisnocat.com/#vcard Ralph Brandi] has added an hCard to the sidebar of his weblog as a result of Tantek Çelik's portion of the Microformats presentation at SXSW 2006.&lt;br /&gt;
* [http://www.pierce.ctc.edu/ephone/ Pierce College] -- community college directory uses hCard on all individual directory entries.&lt;br /&gt;
* [http://www.ukoln.ac.uk/web-focus/events/workshops/webmaster-2006/ the Institutional Web Management Workshop 2006] have marked up all their [http://www.ukoln.ac.uk/web-focus/events/workshops/webmaster-2006/committee/ speakers with hCard].&lt;br /&gt;
* http://wikitravel.org/en/Singapore/Sentosa. Wikitravel is experimenting with hcard on its travel guides. This guide uses hcard for all its business listings. More info on http://wikitravel.org/en/Wikitravel_talk:Listings.&lt;br /&gt;
* [http://www.musik-erber.de/ Musik-Erber] uses to present contact information at the sidebar&lt;br /&gt;
* [http://cdevroe.com/about/#contact Colin D. Devroe] uses hCard to display his contact information on his about page&lt;br /&gt;
* The ECS (Scool of Electronics and Computer Science  at the University of Southampton) [http://www.ecs.soton.ac.uk/people People Pages] use vCard. Contact cjg@ecs.soton.ac.uk if there's any bugs.&lt;br /&gt;
* [http://www.southwestern.edu/~ramseyp Pat Ramsey] has his contact information on his blog marked up with hCard. Contact [mailto:ramsey.pat@gmail.com ramsey.pat@gmail.com] if there are any bugs there.&lt;br /&gt;
* [http://www.meryl.net/ Meryl K. Evans] has a hidden hCard on her homepage.&lt;br /&gt;
* [http://www.vyre.com/company/contact-us/ VYRE] is a CMS development company with a &amp;quot;contact us&amp;quot; hCard&lt;br /&gt;
* [http://www.lefdal.cc/info.php Alf Kåre Lefdal] uses hCard in the markup of his contact information&lt;br /&gt;
* [http://www.pignwhistle.com.au/ Pig N Whistle, a chain of pubs in Brisbane, Australia] is using hcard to mark up all the contact pages for its outlets and head office&lt;br /&gt;
* [http://kollitsch.de/ Patrick Kollitsch] has built his personal Profil as hCard&lt;br /&gt;
* [http://www.hbs.edu/faculty/dspar/ Harvard Business School] has hCards on their faculty pages&lt;br /&gt;
* [http://openmikes.org/ openmikes.org] uses hCards for open mike venue addresses in its listing detail pages.&lt;br /&gt;
&lt;br /&gt;
=== Examples ===&lt;br /&gt;
* [http://shiftingpixel.com/about/the-artist shifting pixel photoblog] has published an hCard.&lt;br /&gt;
* [http://thoughtport.blogspot.com/ Aiden Kenny] hasn't published his hCard yet, but he has [http://thoughtport.blogspot.com/2005/07/elemental-particles-of-web.html published his hCard icon]: http://photos1.blogger.com/blogger/4224/444/320/AK-Hcard-icon.gif&lt;br /&gt;
* [http://thedredge.org Andy Hume] uses hCards to mark-up the names and URLs of commentors on his blog, e.g. his [http://thedredge.org/2005/06/using-hcards-in-your-blog/ blog post on &amp;quot;Using hCards in your blog&amp;quot;]. &lt;br /&gt;
* [http://www.bidclix.com/ BidClix]'s [http://www.bidclix.com/AboutContact.html Contact BidClix] page has it's ''contact info'' marked up with an hCard.&lt;br /&gt;
* [http://suda.co.uk/ Brian Suda] has managed to embed a photo in [http://suda.co.uk/contact/ his hCard] through the [http://www.ietf.org/rfc/rfc2397.txt data uri scheme] by converting the image to BASE64 code. View the Source to see how this is accomplished. [http://suda.co.uk/projects/X2V/get-vcard.php?uri=http%3A//suda.co.uk/contact/ The X2V link] will extract the image and encode it for a vCard which will be displayed in some address book applications.&lt;br /&gt;
** Inspired by this I thought to try the same for SVG at [http://barefoot-ceramics.com/find Barefoot] ...&lt;br /&gt;
** &amp;amp;lt;img class=&amp;quot;photo&amp;quot; style=&amp;quot;display:none;&amp;quot; src=&amp;quot;data:image/svg+xml;text,&amp;amp;lt;?xml version='1.0' encoding='UTF-8' standalone='no'?&amp;amp;gt;&amp;amp;lt;svg xmlns:svg='http://www.w3.org/2000/svg' xmlns='http://www.w3.org/2000/svg' version='1.0' width='50' height='80' id='svg3957'&amp;amp;gt;&amp;amp;lt;defs id='defs3959' /&amp;gt;&amp;amp;lt;path d='M 28.91433,...32.192802 z' style='fill:#cc4d00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.625;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1' id='path9551' /&amp;amp;gt;&amp;amp;lt;/svg&amp;amp;gt;&amp;quot; alt=&amp;quot;Barefoot&amp;quot;&amp;amp;gt;&lt;br /&gt;
** Does it work?? Well it parses OK. Some automated tools replace the &amp;amp;lt; with %3C (etc., eg Brian Suda's vcard form). Unfortunately Kontact (KDE contacts tool) doesn't handle SVG as a vCard photo or logo format - I don't know if this is a standard. It seems it could work and maybe even does somewhere. Maybe the text field needs to be Base64 encoded? ... see [http://slashdot.org/~pbhj/journal/142382 pbhj's slashdot journal] for a bit more on this.&lt;br /&gt;
* [http://cinematreasures.org Cinema Treasures] uses hCard to markup venue information for 10,000+ movie theaters.&lt;br /&gt;
* [http://www.w3.org/People/Connolly/events/ Dan Connolly's index of events and talks] has hCards for many of the people he has met at those events. In Mar 2006, he moved a bunch of hotel contact info from his PDA to this page; it's now up to 32 hCards.&lt;br /&gt;
* [http://doncrowley.blogspot.com/ Don Crowley] has published [http://www.crowley.nl/hcard.html his hCard] as well as a nifty hCard button: http://www.crowley.nl/images/hcard.png&lt;br /&gt;
* [http://loadaveragezero.com/hnav/contact.php Douglas W. Clifton] added all types of contact information&lt;br /&gt;
* [http://eventful.com Eventful] publishes all of its venue information pages with embedded hCards.&lt;br /&gt;
* [http://www.iowamilitaryveteransband.com/members/ Iowa Military Veterans Band Contacts] - 95 hCards [http://weblog.randomchaos.com/archive/2005/10/24/Microformats/ marked up by Scott Reynen]&lt;br /&gt;
* [http://JackWolfgang.blogspot.com Jack L. Wolfgang II] has [http://jack.randomata.com/resume/ converted the addresses in his resume to hCards].&lt;br /&gt;
* [http://www.efas.fupl.asso.fr/efas/_Mathieu-Drouet_.html Mathieu Drouet] and [http://www.efas.fupl.asso.fr/efas/_Annie-Leger_.html Annie Leger] both have hCards&lt;br /&gt;
* [http://www.ndunn.com Neil Dunn] has published his rather [http://www.ndunn.com/2005/10/7/hCard good looking hCard]&lt;br /&gt;
* [http://www.oliverbrown.me.uk/ Oliver Brown] has published his hCard.&lt;br /&gt;
* [http://www.paradigmproductions.org/contact/ Paradigm Productions] published a vcard as a ul (marked up by [http://www.linkingarts.com/ Peter Jacobson])&lt;br /&gt;
* [http://www.splintered.co.uk/ Patrick H. Lauke] has marked up [http://www.splintered.co.uk/about/ his contact info with hCard].&lt;br /&gt;
* [http://blah Paul Schreiber has published his hCard on [http://paulschreiber.com/about/?contact his about page].&lt;br /&gt;
* [http://paulschreiber.com/blog/ Paul Schreiber]'s [http://concerts.shrub.ca/ Sunnyvale House Concerts] site publishes hCards for upcoming artists, as well as an hCard for the page itself.  In addition the [http://concerts.shrub.ca/shows Past Shows] page contains hCards for all past artists.&lt;br /&gt;
* [http://www.paulmichaelsmith.com/blog/hcard.htm Paul Smith] has created an hCard page which is Human Readable, and a link to X2V passing the same hCard page to generate a vCard.&lt;br /&gt;
* [http://www.windley.com/archives/2005/07/hcards_trying_o.shtml Phil Windley has published] [http://phil.windley.org/hcard.html his hCard].&lt;br /&gt;
* [http://www.go-curiosity.com/about.htm Piercarlo Slavazza] has published an hCard.&lt;br /&gt;
* [http://zooibaai.nl/ Rob Mientjes] has published his hCard on [http://zooibaai.nl/about/ his about page].&lt;br /&gt;
* [http://rbach.priv.at/Contact Robert Bachmann] has published his hCard and [http://rbach.priv.at/Images/hcard a button].&lt;br /&gt;
* [http://blah Scott Reynen has published his hCard on [http://www.randomchaos.com/document.php?source=scott_reynen his profile page].&lt;br /&gt;
* [http://www.stackframe.com/ StackFrame, LLC] has published [http://www.stackframe.com/people/ employee] and [http://www.stackframe.com/contact/ general] contact information as hCards.&lt;br /&gt;
* [http://www.wolfsreign.com Steven Ametjan] has published his hCard on [http://www.wolfsreign.com/about/ his about page].&lt;br /&gt;
* [http://tantek.com/microformats/2005/syndicate/speakers-list.html Syndicate - Speaker List] as a set of hCards&lt;br /&gt;
* [http://tagcamp.org/index.cgi?ContactList TagCamp contact list]&lt;br /&gt;
* [http://tantek.com/log Tantek's Thoughts] includes an inline author hCard at the bottom of the page.&lt;br /&gt;
* [http://technorati.com/ Technorati]'s [http://www.technorati.com/about/ About page] lists their '''Media Contact'''&lt;br /&gt;
* [http://www.deadringerart.com/ The Brothers McDowell] have hCards at their Contact page.&lt;br /&gt;
* [http://twinsparc.com/ Twinsparc] put an hCard in the header and footer of all their pages.&lt;br /&gt;
* [http://tantek.com/microformats/2005/web2/speakers.html Web 2.0 Conference speakers page marked up with hCard]&lt;br /&gt;
* [http://we05.com/ Web Essentials 05] marked up all their [http://we05.com/presenters.cfm presenters with hCard].&lt;br /&gt;
&lt;br /&gt;
=== Examples with some problems ===&lt;br /&gt;
&lt;br /&gt;
* [http://gbraad.nl/ Gerard Braad] has published an example on his [http://gbraad.nl/site/?p=profile profile] page that is almost consistent with his original [http://gbraad.nl/files/gbraad.vcf vCard] file. Also progress is made for transforming his [http://files.gbraad.nl/foaf.rdf FoaF] file to a hCard encoded representation. (also done for my spouse:[http://spouse.gbraad.nl/site/?p=profile Yong Yuan])&lt;br /&gt;
** (2005-09-27) PASSED, PASSED&lt;br /&gt;
** WARNINGS&lt;br /&gt;
*** uses 'n given-name' and 'n family-name' instead of nesting the given- and family- names inside the 'n'&lt;br /&gt;
*** has one 'tel' value with a bunch of values stuffed in&lt;br /&gt;
*** probably more problems --[[User:RyanKing|RyanKing]] 17:19, 5 Jan 2006 (PST)&lt;br /&gt;
* [http://kinrowan.net/ Cori Schlegel] [http://kinrowan.net/blog/wp/archives/2005/07/08/a-problem-with-the-structured-blogging-plug-in-for-wordpress/ discusses how he has updated] [http://kinrowan.net/blog/contact his contact page with hCard]&lt;br /&gt;
** INVALID - using 'prefix' instead of 'honorific-prefix' and type's in classnames (in both adr and tel) and has two photo's (the second could be 'logo') --[[User:RyanKing|RyanKing]] 15:15, 5 Jan 2006 (PST)&lt;br /&gt;
* The good ship [http://styrheim.com/test/leonid.html Leonid Miloslavskiy] spotted in the North Atlantic&lt;br /&gt;
** INVALID  --[[User:RyanKing|RyanKing]] 00:50, 27 Oct 2005 (PDT)&lt;br /&gt;
*** class=&amp;quot;family&amp;quot; should probably be family-name&lt;br /&gt;
*** the &amp;quot;n&amp;quot; property is missing and the &amp;quot;n&amp;quot; optimization can't be applied&lt;br /&gt;
*** the first geo propery is empty, the second one is invalid (ie, it doesn't contain lat/long)&lt;br /&gt;
* [http://landsbank.fo/#hCard Landsbanki Føroya]&lt;br /&gt;
** INVALID - using embedded rdf/xml invalidly&lt;br /&gt;
* [http://chrischerry.name/blog/contact/ Chris Cherry's contact page with his hCard]&lt;br /&gt;
** WARNING - uses class=&amp;quot;cell&amp;quot; instead of &amp;amp;lt;span class=&amp;quot;type&amp;quot;&amp;amp;gt;cell&amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
* [http://www.bath.ac.uk/contact/ University of Bath] Person Finder results are encoded with hCards so you can easily create a vCard from any result. &lt;br /&gt;
** ERROR - attempt to use Implied-N optimization where that's not possible. --[[User:RyanKing|RyanKing]] 14:29, 5 Jan 2006 (PST)&lt;br /&gt;
** Error appears for external users only. Won't be fixed any time soon. -- [[User:PhilWilson|PhilWilson]] 00:03, 28 Jan 2006 (GMT)&lt;br /&gt;
* [http://richi.co.uk/blog/2005/12/structured-blogging.html Richi Jennings] has put up his attempt&lt;br /&gt;
** INVALID, missing FN --[[User:RyanKing|RyanKing]] 12:47, 5 Jan 2006 (PST)&lt;br /&gt;
* [http://www.yellowpencil.com/contact/ Yellow Pencil] Using microformats to present company contact information&lt;br /&gt;
** First hcard has empty &amp;quot;fn&amp;quot; and no &amp;quot;n&amp;quot;. &amp;quot;fn&amp;quot; should be with &amp;quot;org&amp;quot; -- [[User: ScottReynen |ScottReynen]] 21:29, 19 Jun 2006 (CST)&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
This section is '''informative'''.&lt;br /&gt;
&lt;br /&gt;
The following implementations have been developed which either generate or parse hCards. If you have an hCard implementation, feel free to add it to the top of this list. Once the list grows too big, we'll make a separate wiki page.&lt;br /&gt;
* [http://placenamehere.com/mf/nnwextract/ Extract Microformats] is a script for NetNewsWire that supports extracting hCard and hCalendar data in blog posts (via technorati service). Written by [[User:ChrisCasciano|Chris Casciano]]&lt;br /&gt;
* [http://allinthehead.com/hkit/ hKit] is an open source PHP 5 parsing library with support for hCard.&lt;br /&gt;
* [http://kitchen.technorati.com/search Technorati Microformats Search] indexes [[hcard|hCard]], [[hcalendar|hCalendar]], and [[hreview|hReview]] as [http://tantek.com/log/2006/05.html#d31t1802 announced by Tantek].&lt;br /&gt;
** list of pages with indexing Issues so they can be looked into as to why data is not being extracted&lt;br /&gt;
** suda.co.uk/contact&lt;br /&gt;
** multipack.co.uk&lt;br /&gt;
&lt;br /&gt;
* [http://www.webstandards.org/action/dwtf/microformats/ Dreamweaver Extension suite] from the [http://webstandards.org/ Web Standards Project] enables the authoring of hCards from within Dreamweaver 8.&lt;br /&gt;
* [http://scooch.gr0w.com/ Scooch] is a slide show and presentation creator that generates a [[hCard]] for individual slide show authors and comment authors with a CSS button to parse and download via [http://suda.co.uk/projects/X2V/ X2V]. Also uses [[hReview]] for slide ratings and [[rel-tag]] for categories.&lt;br /&gt;
* [http://blog.codeeg.com/2006/03/20/flock-tails-flocktails/ Flocktails] - port of Tails extension for Flock 0.5.12 that looks for hCards, hCalendar, xFolk and hReview and tosses them into a handy topbar&lt;br /&gt;
*[http://opensource.reevoo.com/2006/03/08/release-uformats-12/ uformats] is a ruby library that can parse [[hCalendar]], [[hCard]], [[hReview]] and [[rel-tag]]&lt;br /&gt;
* [http://blog.codeeg.com/tails-firefox-extension/  Tails] is a Firefox Extension that will display the presence and details of microformats ([[hcard|hCard]], [[hcalendar|hCalendar]], [[hreview|hReview]], [[xfolk|xFolk]]) on a webpage. [https://addons.mozilla.org/firefox/2240/ Tails Export] is an extended version.&lt;br /&gt;
* [http://www.stripytshirt.co.uk/features/firefox/smartzilla Smartzilla is a Firefox Extension] that finds hCards on web pages and lets you add them to your addressbook.&lt;br /&gt;
* [http://placenamehere.com/TXP/pnh_mf/ pnh_mf] is a plugin for [http://textpattern.com/ Textpattern] that supports embedding hCard and other microformats in templates and blog posts. Written by [http://placenamehere.com/ Chris Casciano].&lt;br /&gt;
* There is [http://flickr.com/photos/factoryjoe/68755089/ evidence of built-in hCard support in the Konqueror browser].  Specifically, Konqueror 3.5, in KDE 3.5 (kubuntu Breezy w/ update).&lt;br /&gt;
* There is [http://tagcamp.org/index.cgi?ContactList evidence of a kwiki plugin for hCards].  Update: the [http://svn.kwiki.org/cwest/Kwiki-hCard/ hCard kwiki plugin svn repository].  See the [http://microwiki.caseywest.com/index.cgi?hCard documentation of the hCard kwiki plugin].&lt;br /&gt;
* [http://suda.co.uk/projects/X2V/ X2V] is a bookmarklet that parses hCard and produces a .vcf (vCard) stream.  Note: needs to be updated as the spec is refined&lt;br /&gt;
* [http://www.stripytshirt.co.uk Duncan Walker] has built [http://www.stripytshirt.co.uk/features/firefox/smartzilla a Firefox extension] that gets hCard data from a webpage, uses Brian Suda's XSL (locally) to transform it to vcard format and opens the resulting .vcf file.&lt;br /&gt;
* [http://george.hotelling.net/90percent/ George] has written a [http://george.hotelling.net/90percent/geekery/greasemonkey_and_microformats.php Greasemonkey user script] that detects hCards and allows users to easily add them to their address book application.  Relies on the X2V web service to do the conversion.&lt;br /&gt;
* [http://inside.glnetworks.de/ Martin Rehfeld] has updated the work of [http://blogmatrix.blogmatrix.com/ David Janes] and produced a [[Greasemonkey]] [http://inside.glnetworks.de/2006/06/05/microformats-have-arrived-in-firefox-15-greasemonkey-06/ script] that finds many microformat elements, including hCards, and [http://blog.davidjanes.com/mtarchives/2005_08.html#003379 provides a popup menu of actions]. The hCard to vCard conversion is done internally within the script. ''This will work with FireFox 1.5+/GreaseMonkey 0.6.4+ now.''&lt;br /&gt;
* [http://diveintomark.org/ Mark Pilgrim] has also written an [http://diveintomark.org/projects/greasemonkey/hcard/ hCard parser Greasemonkey user script].  It is self-contained and does not rely on the X2V web service.&lt;br /&gt;
* [http://www.oliverbrown.me.uk/2005/09/03/a-working-microformats-extension-to-simplexml/ Oliver Brown] has written an &amp;quot;extension&amp;quot; to [http://www.php.net/simplexml SimpleXML] that gives simple access to hCard information in PHP 5.&lt;br /&gt;
* [http://thedredge.org/ Andrew D. Hume] has built a system (Wordpress plugin?) for [http://thedredge.org/2005/06/using-hcards-in-your-blog/ using hcards in your blog] to represent people leaving comments on blog posts.&lt;br /&gt;
* The [http://tantek.com/microformats/hcard-creator.html hCard creator] is a very simple, yet illustrative, open source user interface / form / script which creates an hCard in real-time as you type in a set of contact information. &lt;br /&gt;
* [http://greenbytes.de/tech/webdav/rfc2629.xslt rfc2629.xslt] now attempts to generate hCard information ([http://ietf.org/rfc/rfc2629 RFC2629] is an XML format for authoring RFCs and Internet Drafts, see [http://greenbytes.de/tech/webdav/rfc2629xslt/rfc2629xslt.html example document])&lt;br /&gt;
* [http://tantek.com/microformats/buddylist2hcards.html iChat buddy list to hCards] - Open source AppleScript to automatically convert one's buddy list in the MacOSX iChat AIM client into a valid XHTML 1.0 Strict list of hCards. &lt;br /&gt;
* [http://dev.w3.org/cvsweb/2001/palmagent/ palmagent] is a collection of palmpilot and sidekick tools. It includes X2V derivatives xhtml2hcard.xsl and toICal.xsl plus some [http://dev.w3.org/cvsweb/2001/palmagent/hcardTest.html hcardTest] materials&lt;br /&gt;
* [http://www.openpsa.org/ OpenPsa 2.x] CRM application uses hCard for all person listings. The widget is [http://www.midgard-project.org/midcom-permalink-922834501b71daad856f35ec593c7a6d reusable across Midgard CMS]&lt;br /&gt;
* [http://www.metonymie.com Emiliano Martínez Luque] has written an experimental [http://www.metonymie.com/hCard_extract/app.html hCard finder and structured search application] that finds hCards within a given set of URLs and returns the ones that match the specified search criteria.&lt;br /&gt;
* [http://randomchaos.com/microformats/base/ Microformat Base] is an open-source PHP microformat aggregation crawler, currently recognizing hreview, hcalendar, and hcard.&lt;br /&gt;
&lt;br /&gt;
== Additional Applications ==&lt;br /&gt;
This section is '''informative'''.&lt;br /&gt;
&lt;br /&gt;
There are numerous potential additional uses and applications for hCards on the Web.  The following are merely a few thoughts and possibilities that folks have come up with:&lt;br /&gt;
&lt;br /&gt;
* As an open standard/format for [http://www.gravatar.com/ Gravatars].&lt;br /&gt;
* Marking up individual authors of blog posts on a group blog&lt;br /&gt;
* Marking up people's names and URLs in a blogroll&lt;br /&gt;
* Any reference to people in blog posts (e.g. when citing them, or referencing them, or describing them, by name).&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
=== Normative References ===&lt;br /&gt;
* [http://www.w3.org/TR/2002/REC-xhtml1-20020801/ XHTML 1.0 SE]&lt;br /&gt;
* [http://www.ietf.org/rfc/rfc2426.txt vCard RFC2426]&lt;br /&gt;
&lt;br /&gt;
=== Informative References ===&lt;br /&gt;
* [http://www.w3.org/2002/12/cal/rfc2426 HTML reformatted version of RFC2426]&lt;br /&gt;
* [http://w3.org/TR/REC-CSS1 CSS1]&lt;br /&gt;
* [http://tantek.com/log/2004/09.html#hcard hCard term introduced and defined on the Web, 20040930]&lt;br /&gt;
* [http://wiki.oreillynet.com/foocamp04/index.cgi?SimpleSemanticFormats FOO Camp 2004 Simple Semantic Formats presentation, 20040910]&lt;br /&gt;
* Contributed from http://developers.technorati.com/wiki/hCard.&lt;br /&gt;
* [http://www.w3.org/TR/xhtml11 XHTML 1.1]&lt;br /&gt;
&lt;br /&gt;
==== Specifications That Use hCard ====&lt;br /&gt;
* [[adr]]&lt;br /&gt;
* [[geo]]&lt;br /&gt;
* [[hcalendar|hCalendar]]&lt;br /&gt;
* [[hreview|hReview]]&lt;br /&gt;
&lt;br /&gt;
==== Similar Work ====&lt;br /&gt;
* [http://www.intertwingly.net/wiki/pie/PaceBetterPersonElement Atom PaceBetterPersonElement]&lt;br /&gt;
* [http://www.jabber.org/jeps/jep-0054.html JEP-0054: vcard-temp]&lt;br /&gt;
&lt;br /&gt;
== Related Pages ==&lt;br /&gt;
* [http://microformats.org/code/hcard/creator hCard creator] ([[hcard-creator-feedback|feedback]]) - create your own hCard.&lt;br /&gt;
* [[hcard-authoring|hCard authoring]] - learn how to add hCard markup to your existing contact info.&lt;br /&gt;
* [[hcard-faq|hCard FAQ]] - If you have any questions about hCard, check here, and if you don't find answers, add your questions!&lt;br /&gt;
* [[hcard-parsing|hCard parsing]] - Normatively details of how to parse hCards.&lt;br /&gt;
* [[hcard-issues|hCard issues]] - Please add any issues with the specification to the issues page.&lt;br /&gt;
* [[hcard-profile|hCard profile]] - The XMDP profile for hCard&lt;br /&gt;
&lt;br /&gt;
This specification is a work in progress. As additional aspects are discussed, understood, and written, they will be added. These thoughts, issues, and questions are kept in separate pages.&lt;br /&gt;
&lt;br /&gt;
* [[hcard-brainstorming|hCard Brainstorming]] - where we are keeping our brainstorms and other explorations relating to hCard&lt;br /&gt;
* [[hcard-tests|hCard tests]] - a wiki page with actual embedded hCards to try parsing.&lt;br /&gt;
&lt;br /&gt;
== Further Reading ==&lt;br /&gt;
* [http://www.digital-web.com/articles/microformats_primer/ Digital Web Magazine: Microformats Primer] by Garrett Dimon has a good intro to hCard&lt;br /&gt;
* [http://24ways.org/advent/practical-microformats-with-hcard Practical Microformats with hCard] by Drew McLellan&lt;br /&gt;
* [http://thedredge.org/ Andrew D. Hume] has written a blog post on [http://usabletype.com/articles/2005/usable-microformats/ usable microformats] which discusses hCard&lt;br /&gt;
* [http://www.thefutureoftheweb.com/blog/2006/1/hcard Jesse Skinner's introduction to hCard]&lt;br /&gt;
* [http://blog.usweb.com/ Shaun Shull's] great post on [http://blog.usweb.com/archives/how-microformats-affect-search-engine-optimization-seo How Microformats Affect SEO], including his [[hcard|hCard]] as an example.&lt;br /&gt;
* See also [http://www.technorati.com/cosmos/referer.html blogs discussing this page] and the [http://technorati.com/tags/hcard hCard tag]&lt;/div&gt;</summary>
		<author><name>TerrellRussell</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=citation-formats&amp;diff=9262</id>
		<title>citation-formats</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=citation-formats&amp;diff=9262"/>
		<updated>2006-08-05T22:10:22Z</updated>

		<summary type="html">&lt;p&gt;TerrellRussell: /* MODS (Metadata Object Description Schema) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Citation Formats =&lt;br /&gt;
&lt;br /&gt;
This page will display several different types of citation format types. The idea is to compare what properties are common amonst all of the formats and which ones should be blended into this microformat.&lt;br /&gt;
&lt;br /&gt;
See also:&lt;br /&gt;
* [[citation]]&lt;br /&gt;
* [[citation-brainstorming]]&lt;br /&gt;
* [[citation-examples]]&lt;br /&gt;
* [[citation-faq]]&lt;br /&gt;
&lt;br /&gt;
== Comparison chart ==&lt;br /&gt;
The following chart maps the terms from one implementation to another. This is important because if all the properties are introduced to this microformat, then it's possible to map them to a number of different formats. The table currently only uses Dublin Core, MODS, and bibTeX. Each column has all the properties and their equivalent in each format. If there is no corresponding property, the cell is grey. At the bottom of the list are the unique terms to each format. Dublin Core has basic terms and terms that extend the basic ones. If the property is an extension of a basic term it is in ()'s. MODS uses XML, so any sub-properties are listed in their tree form, property/sub-property.&lt;br /&gt;
&lt;br /&gt;
THIS IS NOT DEFINITIVE, any errors should be corrected. More formats will be added to the list as they are mapped.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;th&amp;gt;Dublin Core&amp;lt;/th&amp;gt;&lt;br /&gt;
		&amp;lt;th&amp;gt;MODS&amp;lt;/th&amp;gt;&lt;br /&gt;
		&amp;lt;th&amp;gt;bibTeX&amp;lt;/th&amp;gt;&lt;br /&gt;
		&amp;lt;th&amp;gt;Z39.80&amp;lt;/th&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Title (alternative)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;titleInfo/title&amp;lt;br/&amp;gt;titleInfo/PartNum&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;booktitle&amp;lt;br/&amp;gt;title&amp;lt;br/&amp;gt;chapter&amp;lt;br/&amp;gt;number&amp;lt;br/&amp;gt;pages&amp;lt;br/&amp;gt;volume&amp;lt;br/&amp;gt;series&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Analytic Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Collective or Series Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Monographic Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Work Fraction Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Location of Conference&amp;lt;br/&amp;gt;&lt;br /&gt;
Main Entry&amp;lt;br/&amp;gt;&lt;br /&gt;
Name of Conference&amp;lt;br/&amp;gt;&lt;br /&gt;
Number of Meeting&amp;lt;br/&amp;gt;&lt;br /&gt;
Other Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Parallel Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Title Abbriviation&amp;lt;br/&amp;gt;&lt;br /&gt;
Title of Conference Proceedings&amp;lt;br/&amp;gt;&lt;br /&gt;
Translated Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Uniform Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Abbriviated Translated Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Symposium or Session Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Collective or Series Edition&amp;lt;br/&amp;gt;&lt;br /&gt;
Video/Film Edition&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;creator&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;name/namePart&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;author&amp;lt;br/&amp;gt;creator&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Author, Primary&amp;lt;br/&amp;gt;&lt;br /&gt;
Corporate Author, Primary&amp;lt;br/&amp;gt;&lt;br /&gt;
Abstract Author&amp;lt;br/&amp;gt;&lt;br /&gt;
Authorship Statement&amp;lt;br/&amp;gt;&lt;br /&gt;
Acknowledged Supporters&amp;lt;br/&amp;gt;&lt;br /&gt;
Assignee for Patents&amp;lt;br/&amp;gt;&lt;br /&gt;
Chairperson of Conference&amp;lt;br/&amp;gt;&lt;br /&gt;
Director of AV Program&amp;lt;br/&amp;gt;&lt;br /&gt;
Other Author&amp;lt;br/&amp;gt;&lt;br /&gt;
Reviewed Book Author&amp;lt;br/&amp;gt;&lt;br /&gt;
Studio&amp;lt;br/&amp;gt;&lt;br /&gt;
Sponsor of Conference&amp;lt;br/&amp;gt;&lt;br /&gt;
Staff/Cast&amp;lt;br/&amp;gt;&lt;br /&gt;
Symposium Chairperson&amp;lt;br/&amp;gt;&lt;br /&gt;
Author Address or Affiliation&amp;lt;br/&amp;gt;&lt;br /&gt;
Author Country&amp;lt;br/&amp;gt;&lt;br /&gt;
Electronic Address of Author&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;subject&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;subject/topic&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;keywords&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Description (abstract | tableOfContents)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;abstract&amp;lt;br/&amp;gt;note&amp;lt;br/&amp;gt;tableOfContents&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;abstract&amp;lt;br/&amp;gt;annotation&amp;lt;br/&amp;gt;note&amp;lt;br/&amp;gt;contents&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Contributor&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;editor?&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Book/Report/Volume Editor&amp;lt;br/&amp;gt;&lt;br /&gt;
Producer&amp;lt;br/&amp;gt;&lt;br /&gt;
Translator&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Date (available | created | dateAccepted | dateCopyrighted | dateSubmitted | issued | modified | valid)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;originInfo/dateIssued&amp;lt;br/&amp;gt;originInfo/dateCreated&amp;lt;br/&amp;gt;originInfo/dateCaptured&amp;lt;br/&amp;gt;originInfo/dateOther&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;month&amp;lt;br/&amp;gt;year&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Copyright Year&amp;lt;br/&amp;gt;Date-generic&amp;lt;br/&amp;gt;Date of conference&amp;lt;br/&amp;gt;Date of Publication&amp;lt;br/&amp;gt;Date of Update/Revisou/Issuance of Database Record&amp;lt;br/&amp;gt;Former Date&amp;lt;br/&amp;gt;Entry date for Database Record&amp;lt;br/&amp;gt;Database Update&amp;lt;br/&amp;gt;Year of Publication&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Type&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;typeOfResource&amp;lt;br/&amp;gt;genre&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;@class&amp;lt;br/&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Format (extent | medium)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;physicalDescription/internetMediaType&amp;lt;br/&amp;gt;physicalDescription/extent&amp;lt;br/&amp;gt;physicalDescription/form&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;howpublished&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;identifier (bibliographicCitation)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;identifier&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;ISBN&amp;lt;br/&amp;gt;ISSN&amp;lt;br/&amp;gt;LCCN&amp;lt;br/&amp;gt;URL&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;ISBN&amp;lt;br/&amp;gt;Identifier&amp;lt;br/&amp;gt;Report Identfier&amp;lt;br/&amp;gt;ISSN&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Source&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;relatedItem&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#cccccc&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;language&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;language&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;language&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#cccccc&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Relation (...)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;relatedItem/...&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;crossRef&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Coverage (spacial | temporal)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;subject/temporal&amp;lt;br/&amp;gt;subject/geographic&amp;lt;br/&amp;gt;subject/hierarchicalGeographic&amp;lt;br/&amp;gt;subject/cartographics&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#cccccc&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;classifications&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#cccccc&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Rights (accessRights | license)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;accessConditions&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;copyright&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;publisher&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#cccccc&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;publisher&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Publisher Name&amp;lt;br/&amp;gt;&lt;br /&gt;
Place of Publication&amp;lt;br/&amp;gt;&lt;br /&gt;
Country of Publication&amp;lt;br/&amp;gt;&lt;br /&gt;
Generic Address&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;audience (educationLevel | mediator)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;targetAudience&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#cccccc&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#999999&amp;quot;&amp;gt;accualMethod&amp;lt;br/&amp;gt;accualPeriodicaty&amp;lt;br/&amp;gt;accualPolicy&amp;lt;br/&amp;gt;instrcutionalMethod&amp;lt;br/&amp;gt;provenance&amp;lt;br/&amp;gt;rightsHolder&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#999999&amp;quot;&amp;gt;location&amp;lt;br/&amp;gt;extension&amp;lt;br/&amp;gt;recordInfo&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#999999&amp;quot;&amp;gt;address&amp;lt;br/&amp;gt;afflilication&amp;lt;br/&amp;gt;location&amp;lt;br/&amp;gt;edition&amp;lt;br/&amp;gt;institution&amp;lt;br/&amp;gt;journal&amp;lt;br/&amp;gt;key&amp;lt;br/&amp;gt;mrnumber&amp;lt;br/&amp;gt;organization&amp;lt;br/&amp;gt;price&amp;lt;br/&amp;gt;school&amp;lt;br/&amp;gt;size&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#999999&amp;quot;&amp;gt;(the following need to be mapped to the above rows or left here as other)&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Database Source&amp;lt;br/&amp;gt;&lt;br /&gt;
Databse Record Identifier&amp;lt;br/&amp;gt;&lt;br /&gt;
Database Producer Name&amp;lt;br/&amp;gt;&lt;br /&gt;
Rights Management&amp;lt;br/&amp;gt;&lt;br /&gt;
Subfile&amp;lt;br/&amp;gt;&lt;br /&gt;
Other Source Identifier&amp;lt;br/&amp;gt;&lt;br /&gt;
Vendor Record Identifier&amp;lt;br/&amp;gt;&lt;br /&gt;
Database Vendor Name&amp;lt;br/&amp;gt;&lt;br /&gt;
Column Number&amp;lt;br/&amp;gt;&lt;br /&gt;
Edition&amp;lt;br/&amp;gt;&lt;br /&gt;
Frequency of Publication&amp;lt;br/&amp;gt;&lt;br /&gt;
Internet Location for Document&amp;lt;br/&amp;gt;&lt;br /&gt;
Supplement/Part/Special number identifer&amp;lt;br/&amp;gt;&lt;br /&gt;
Issue Identifier&amp;lt;br/&amp;gt;&lt;br /&gt;
Location in Work&amp;lt;br/&amp;gt;&lt;br /&gt;
Number of the Chapter&amp;lt;br/&amp;gt;&lt;br /&gt;
Number in Series&amp;lt;br/&amp;gt;&lt;br /&gt;
Volume Identifier&amp;lt;br/&amp;gt;&lt;br /&gt;
Section Indentifier&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;	&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Dublin Core Metadata ==&lt;br /&gt;
[http://dublincore.org/ Dublin Core] metadata uses a small vocabulary to describe the data.&lt;br /&gt;
* contributor&lt;br /&gt;
* coverage&lt;br /&gt;
* creator&lt;br /&gt;
* date&lt;br /&gt;
* description&lt;br /&gt;
* format&lt;br /&gt;
* identifier&lt;br /&gt;
* language&lt;br /&gt;
* publisher&lt;br /&gt;
* relation&lt;br /&gt;
* rights&lt;br /&gt;
* source&lt;br /&gt;
* subject&lt;br /&gt;
* title&lt;br /&gt;
* type&lt;br /&gt;
&lt;br /&gt;
From those there are specialised types which are just refinements of the previous, for example:&lt;br /&gt;
&lt;br /&gt;
* abstract refines description.&lt;br /&gt;
* accessRights refines rights&lt;br /&gt;
&lt;br /&gt;
[http://dublincore.org/documents/dc-citation-guidelines/ Guidelines for Encoding Bibliographic Citation Information in Dublin Core Metadata]&lt;br /&gt;
&lt;br /&gt;
== MODS (Metadata Object Description Schema) ==&lt;br /&gt;
This is a format developed for the Library of Congress for a bibliographic element set that may be used for a variety of purposes, and particularly for library applications. &lt;br /&gt;
&lt;br /&gt;
[http://www.loc.gov/standards/mods/ http://www.loc.gov/standards/mods/]&lt;br /&gt;
&lt;br /&gt;
(the schema is very big, once i devote the proper time to review it, i will post more about the structure -brian)&lt;br /&gt;
&lt;br /&gt;
== NLM Journal Publishing DTD ==&lt;br /&gt;
&lt;br /&gt;
[http://dtd.nlm.nih.gov/publishing/tag-library/2.1/n-fv30.html http://dtd.nlm.nih.gov/publishing/tag-library/2.1/n-fv30.html]&lt;br /&gt;
&lt;br /&gt;
The [http://dtd.nlm.nih.gov/publishing/tag-library/ NLM Journal Publishing DTD] defines the schema used for publishing journal articles as XML. The &amp;lt;pre&amp;gt;&amp;lt;citation&amp;gt;&amp;lt;/pre&amp;gt; element can be placed with paragraphs or within a &amp;lt;pre&amp;gt;&amp;lt;ref-list&amp;gt;&amp;lt;/pre&amp;gt; element at the end of the article.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Although the DTD does not enforce it, a citation to a journal article should be tagged with as many as possible of the following, so that PubMed Central, CrossRef, or other matching service can make the citation into a live link:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;source&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;The title of a journal, book, conference proceedings, etc. that is the source of the cited material. (Note: In PubMed Central processing, this is typically the MEDLINE abbreviation of the journal name.)&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;article-title&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Title of the article&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;volume&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Volume of the journal&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;issue&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Issue of the journal&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;fpage&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Page number on which the article starts&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Name of an author or editor&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;year&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Year of publication&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;month&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Month of publication (if present)&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;day&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Date of publication (if present)&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The other elements (described [http://dtd.nlm.nih.gov/publishing/tag-library/2.1/n-fv30.html here]) may be tagged if desired. Use the &amp;lt;source&amp;gt; element for titles of books, conference proceedings, etc.&amp;quot; &lt;br /&gt;
&lt;br /&gt;
== XMLResume ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;!ELEMENT pubs (pub+)&amp;gt;&lt;br /&gt;
&amp;lt;!ENTITY % pubElements &amp;quot;(artTitle|bookTitle|author|date|pubDate|publisher|pageNums|url)&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!ELEMENT pub (para | %pubElements;)*&amp;gt;&lt;br /&gt;
&amp;lt;!ATTLIST pub id ID #IMPLIED&amp;gt;&lt;br /&gt;
&amp;lt;!ELEMENT artTitle (#PCDATA | link)*&amp;gt;&lt;br /&gt;
&amp;lt;!ELEMENT bookTitle (#PCDATA | link)*&amp;gt;&lt;br /&gt;
&amp;lt;!ELEMENT author (#PCDATA)&amp;gt;&lt;br /&gt;
&amp;lt;!ATTLIST author name IDREF #IMPLIED&amp;gt;&lt;br /&gt;
&amp;lt;!ELEMENT pubDate (month?, year)&amp;gt; &amp;lt;!-- Deprecated in 1.4.0. --&amp;gt;&lt;br /&gt;
&amp;lt;!ELEMENT publisher (#PCDATA | link | url)*&amp;gt;&lt;br /&gt;
&amp;lt;!ELEMENT pageNums (#PCDATA)&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* author&lt;br /&gt;
* publication date&lt;br /&gt;
* publisher&lt;br /&gt;
* pages&lt;br /&gt;
* title (article/book)&lt;br /&gt;
* url&lt;br /&gt;
&lt;br /&gt;
== BibTeX ==&lt;br /&gt;
=== Fields Used by Bibtex ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=&amp;quot;1&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;abstract:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;An abstract of the work.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;address:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Publisher's address. For major publishing houses,&lt;br /&gt;
just the city is given. For small publishers, you can help the reader by giving the complete address.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;affiliation:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The author's affiliation.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;annote:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;An annotation. It is not used by he standard bibliography styles, but may be used by others that produce an annotated bibliography.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;author:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The name(s) of the author(s).&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;booktitle:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Title of a book, part of which is being cited. For book entries, use the &amp;lt;strong&amp;gt;title&amp;lt;/strong&amp;gt; field instead.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;chapter:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A chapter (or section) number.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;contents:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A Table of Contents.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;copyright:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Copyright information.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;crossref:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The database key of the entry being cross-referenced.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;edition:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The edition of a book - for example&lt;br /&gt;
        &amp;amp;quot;Second&amp;amp;quot;. Notice that it is in capitals.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;editor:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Name(s) of editor(s). If there is also an author field, then the editor field gives the editor of the book or collection in which the reference appears.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;howpublished:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;How something strange has been published. The first word should be capitalized.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;institution:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The sponsoring institution of a technical report.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;ISBN:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The International Standard Book Number.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;ISSN:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The International Standard Serial Number. Used to&lt;br /&gt;
        identify a journal.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;journal:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A journal name. Abbreviations are provided for many journals.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;key:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Used for alphabetizing and creating a label when the author and editor fields are missing. This field should not be confused with the key that appears at the beginning of the reference.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;keywords:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Key words used for searching or possibly for annotation.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;language:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The language the document is written in.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;LCCN:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The Library of Congress Call Number.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;location:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A location associated with the entry, such as the city in which a conference took place.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;month:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The month in which the work was published or, for an unpublished work, in which it was written.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;mrnumber:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The &amp;lt;em&amp;gt;Mathematical Reviews&amp;lt;/em&amp;gt; number.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;note:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Any additional information that can help the reader. First word should be capitalized.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;number:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The number of a journal, magazine, technical report, or of a work in a series. An issue of a journal or magazine is usually identified by its volume and number; the organization that issues a technical report usually gives it a number; and sometimes books are given numbers in a named series.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;organization:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The organization that sponsors a conference or publishes a manual.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;pages:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;One or more page numbers or ranges of number, such as 37--42, or 7,53,82--94.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;price:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The price of the material.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;publisher:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The publisher's name.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;school:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The name of the school where a thesis was written.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;series:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Then name given a series or set of books. When citing an entire book, the title field gives its title and the optional series field gives the name of a series in which the book was published.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;size:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The physical dimensions of the work.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;title:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The work's title.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;type:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The type of technical report - for example,&lt;br /&gt;
        &amp;amp;quot;Research Note&amp;amp;quot;.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;url:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The WWW Universal Resource Locator that points to the item being referenced. Often used for technical reports to point to the FTP site where it resides.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;volume:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The volume of a journal or multivolume book.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;year:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The year of publication or, for an unpublished work, the year it was written. It should only consist of numerals, such as 1976.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== BibTeX citation Types ===&lt;br /&gt;
A reference can be to any of a variety of types. Following is a list of types. Each one also explains the fields associated with that type. Any fields not listed as required or optional are considered to be ignored.&lt;br /&gt;
&amp;lt;table border=&amp;quot;1&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;article:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;An article from a journal or magazine. Required fields: author, title, journal, year. Optional fields: volume, number, pages, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;book:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A book with an explicit publisher. Required fields: author or editor, title, publisher, year. Optional fields: volume, series, address, edition, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;booklet:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A work that is printed and bound, but without a named publisher or sponsoring institution. Required fields: title. Optional fields: author, howpublished, address, month, year, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;collection:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A collection of works. Same as Proceedings.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;conference:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The same as Inproceedings.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;inbook:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A part of a book, which may be a chapter and/or arange of pages. Required fields: author or editor, title, chapter and/or pages, publisher, year. Optional fields: volumer, series, address, edition, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;incollection:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A part of a book with its own title. Required fields: author, title, booktitle, publisher, year. Optional fields: editor, pages, organization, publisher, address, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;inproceedings:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;An article in a conference proceedings. Required fields: author, title, booktitle, year. Optional fields: editor, pages, organization, publisher, address, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;manual:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Technical documentation. Required fields: title. Optional fields: author, organization, address, edition, month, year, note.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;mastersthesis:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A Master's thesis. Required fields: author, title, school, year. Optional fields: address, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;misc:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Use this type when nothing else fits. Required fields: none. Optional fields: author, title, howpublished, month, year, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;patent:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A patent.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;phdthesis:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A Ph.D. thesis. Required fields: author, title, school, year. Optional fields: address, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;proceedings:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The proceedings of a conference. Required fields: title, year. Optional fields: editor, publisher, organization, address, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;techreport:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A report published by a school or other institution, usually numbered within a series. Required fields: author, title, institution, year. Optional fields: type, number, address, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;unpublished:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A document with an author and title, but not formally published. Required fields: author, title, note. Optional fields: month, year, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Examples ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
@book{kn:gnus,&lt;br /&gt;
&lt;br /&gt;
AUTHOR = &amp;quot;Donald E. Knudson&amp;quot;,&lt;br /&gt;
TITLE = &amp;quot;1966 World Gnus Almanac&amp;quot;,&lt;br /&gt;
PUBLISHER = {Permafrost Press},&lt;br /&gt;
ADDRESS = {Novosibirsk} }&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;book&amp;quot; id=&amp;quot;kn:gnus&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;author&amp;quot;&amp;gt;Donald E. Knudson&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;title&amp;quot;&amp;gt;1966 World Gnus Almanac&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;publisher&amp;quot;&amp;gt;Permafrost Press&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;address&amp;quot;&amp;gt;Novosibirsk&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
@article{XAi_HSCheng_1994a,&lt;br /&gt;
&lt;br /&gt;
author = &amp;quot;X. Ai and H. S. Cheng&amp;quot;,&lt;br /&gt;
title = &amp;quot;Influence of moving dent on point {EHL} contacts&amp;quot;,&lt;br /&gt;
journal = &amp;quot;Tribol. Trans.&amp;quot;,&lt;br /&gt;
volume = &amp;quot;37&amp;quot;,&lt;br /&gt;
year = &amp;quot;1994&amp;quot;,&lt;br /&gt;
pages = &amp;quot;323--335&amp;quot;,&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;article&amp;quot; id=&amp;quot;XAi_HSCheng_1994a&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;author&amp;quot;&amp;gt;X. Ai and H. S. Cheng&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;title&amp;quot;&amp;gt;Influence of moving dent on point {EHL} contacts&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;journal&amp;quot;&amp;gt;Tribol. Trans.&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;volume&amp;quot;&amp;gt;37&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;year&amp;quot;&amp;gt;1994&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;pages&amp;quot;&amp;gt;323--335&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Bib-enabled Applications===&lt;br /&gt;
&lt;br /&gt;
Reference-management applications that support the bib format.  &amp;lt;strong&amp;gt;This is an incomplete list&amp;lt;/strong&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
====Desktop Applications====&lt;br /&gt;
* [http://www.endnote.com EndNote] (Large market share)&lt;br /&gt;
* [http://bibdesk.sourceforge.net/ BibDesk]&lt;br /&gt;
* [http://www.mackichan.com/index.html?bibdb/default.htm~mainFrame BibDB]&lt;br /&gt;
* [http://sourceforge.net/projects/bib-it/ Bib-it]&lt;br /&gt;
* Large list of other apps at [http://dmoz.org/Computers/Software/Typesetting/TeX/BibTeX/ dmoz] and [http://en.wikipedia.org/wiki/BibTeX#Software Wikipedia]&lt;br /&gt;
&lt;br /&gt;
====Web Applications====&lt;br /&gt;
* [http://www.refworks.com RefWorks] (Large market share)&lt;br /&gt;
* [http://www.citeulike.org/ CiteULike]&lt;br /&gt;
* [http://citeseer.ist.psu.edu/ CiteSeer]&lt;br /&gt;
* [http://www.bibsonomy.org/ BibSonomy]&lt;br /&gt;
* [http://www.connotea.org Connotea]&lt;br /&gt;
* [http://www.2ndminute.org:8080/amatex Amatex - converts Amazon to Bib format]&lt;br /&gt;
* Many others can be found at [http://en.wikipedia.org/wiki/BibTeX#External_links Wikipedia]&lt;br /&gt;
&lt;br /&gt;
====Academic Databases====&lt;br /&gt;
* [http://academic.live.com/ Windows Live Academic Search]&lt;br /&gt;
* [http://portal.acm.org/dl.cfm?dl=ACM ACM Digital Library]&lt;br /&gt;
* [http://www.ncbi.nlm.nih.gov/books/bv.fcgi PubMed] via TexMed&lt;br /&gt;
&lt;br /&gt;
== RIS ==&lt;br /&gt;
&lt;br /&gt;
RIS is similar to BibTeX and is handled by most desktop and web-based bibliography management software.&lt;br /&gt;
&lt;br /&gt;
The specification and field types/tags are described at [http://www.refman.com/support/risformat_intro.asp http://www.refman.com/support/risformat_intro.asp]&lt;br /&gt;
&lt;br /&gt;
In particular, see [http://www.refman.com/support/risformat_reftypes.asp the list of different reference types].&lt;br /&gt;
&lt;br /&gt;
A sample item in RIS format:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
TY  - JOUR&lt;br /&gt;
A1  - Baldwin,S.A.&lt;br /&gt;
A1  - Fugaccia,I.&lt;br /&gt;
A1  - Brown,D.R.&lt;br /&gt;
A1  - Brown,L.V.&lt;br /&gt;
A1  - Scheff,S.W.&lt;br /&gt;
T1  - Blood-brain barrier breach following&lt;br /&gt;
cortical contusion in the rat&lt;br /&gt;
JO  - J.Neurosurg.&lt;br /&gt;
Y1  - 1996&lt;br /&gt;
VL  - 85&lt;br /&gt;
SP  - 476&lt;br /&gt;
EP  - 481&lt;br /&gt;
RP  - Not In File&lt;br /&gt;
KW  - cortical contusion&lt;br /&gt;
KW  - blood-brain barrier&lt;br /&gt;
KW  - horseradish peroxidase&lt;br /&gt;
KW  - head trauma&lt;br /&gt;
KW  - hippocampus&lt;br /&gt;
KW  - rat&lt;br /&gt;
ER  -&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://www-static.cc.gatech.edu/classes/RWL/Projects/citation/Applet/OnlineHelp/refer_doc.html Refer] is a similar, smaller bibliographic format.&lt;br /&gt;
&lt;br /&gt;
* author&lt;br /&gt;
* title&lt;br /&gt;
* type&lt;br /&gt;
* Identifier&lt;br /&gt;
* notes/abstract&lt;br /&gt;
* reprint status&lt;br /&gt;
* keyword&lt;br /&gt;
* volume&lt;br /&gt;
* issue&lt;br /&gt;
* pages&lt;br /&gt;
* year&lt;br /&gt;
* periodical name (where published)&lt;br /&gt;
* publisher&lt;br /&gt;
** publisher city&lt;br /&gt;
** publisher address&lt;br /&gt;
* related links&lt;br /&gt;
* link to PDF&lt;br /&gt;
* availablity&lt;br /&gt;
&lt;br /&gt;
== OpenURL ==&lt;br /&gt;
&lt;br /&gt;
OpenURL aka [http://www.niso.org/standards/standard_detail.cfm?std_id=783 Z39.88] defines a standard way of bundling citation data in a URL. It is widely deployed in academic libraries around the world to provide access to licensed content via link resolvers such as [http://www.exlibrisgroup.com/sfx_openurl.htm SFX]. The Context Object in Span ([http://ocoins.info/ COinS]) community standard represents one way to embed OpenURLs in XHTML without including a resolver target. OpenURL also provides an XML encoding.&lt;br /&gt;
&lt;br /&gt;
Example (from a book review written using the Structured Blogging plugin):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;ISBN&amp;lt;/b&amp;gt;: &amp;lt;span class='Z3988'&lt;br /&gt;
title='ctx_ver=Z39.88-2004&amp;amp;amp;amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;amp;amp;amp;rft.isbn=0679426612'&amp;gt;&lt;br /&gt;
0679426612&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Another example, a journal this time:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;Z3988&amp;quot; title=&amp;quot;ctx_ver=Z39.88-2004&amp;amp;amp;rft_val_fmt=info:ofi/fmt:kev:mtx:journal&amp;amp;amp;rft.issn=1045-4438&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As you can see this isn't very much like semantic XHTML at all. However significant work has gone into defining the set of Key/Encoded Values (KEVs) that can be used in various [http://alcme.oclc.org/openurl/servlet/OAIHandler?verb=ListRecords&amp;amp;metadataPrefix=oai_dc&amp;amp;set=Core:Metadata+Formats types] of citations: [http://www.openurl.info/registry/docs/mtx/info:ofi/fmt:kev:mtx:book book], [http://www.openurl.info/registry/docs/mtx/info:ofi/fmt:kev:mtx:dissertation dissertation], [http://www.openurl.info/registry/docs/mtx/info:ofi/fmt:kev:mtx:journal journal], [http://www.openurl.info/registry/docs/mtx/info:ofi/fmt:kev:mtx:patent patent]. It would be possible to simply provide a standard XHTML bundling for these keys as a microformat.&lt;br /&gt;
&lt;br /&gt;
=== Example ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;openurl-journal&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;aulast&amp;quot;&amp;gt;Berners-Lee&amp;lt;/span&amp;gt;, &lt;br /&gt;
   &amp;lt;span class=&amp;quot;aufirst&amp;quot;&amp;gt;Tim&amp;lt;/a&amp;gt;; Hendler, James; Lassila, Ora.&amp;lt;/span&amp;gt;&lt;br /&gt;
   &amp;quot;&amp;lt;span class=&amp;quot;atitle&amp;quot;&amp;gt;The Semantic Web&amp;lt;/span&amp;gt;&amp;quot;. &lt;br /&gt;
   &amp;lt;span class=&amp;quot;jtitle&amp;quot;&amp;gt;Scientific American&amp;lt;/span&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;volume&amp;quot;&amp;gt;284&amp;lt;/span&amp;gt;(&amp;lt;span class=&amp;quot;issue&amp;quot;&amp;gt;5&amp;lt;/span&amp;gt;), pp.&lt;br /&gt;
   pp. &amp;lt;span class=&amp;quot;pages&amp;quot;&amp;gt;34-43&amp;lt;/span&amp;gt;. &lt;br /&gt;
   &amp;lt;span class=&amp;quot;issn&amp;quot;&amp;gt;0036-8733&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using OpenURL in this way would enable third party applications that could, say grab citation metadata from a blog, and without much work fire it off at your university's or public libraries openurl resolver to see if the article is available via a licensed databases. The benefits [http://www.infotoday.com/newsbreaks/nb050801-1.shtml have] [http://www.ariadne.ac.uk/issue43/chudnov/ been] [http://www.wallandbinkley.com/quaedam/?p=30 noted] [http://hublog.hubmed.org/archives/001163.html elsewhere].&lt;br /&gt;
&lt;br /&gt;
== The OpenURL Briefly Explained ==&lt;br /&gt;
&lt;br /&gt;
An OpenURL consists of two independent parts:  the ContextObject (or the bibliographic metadata surrounding a citation) and the location of resolver to parse the metadata and present contextual services based on said metadata.  The problem is that the term &amp;quot;OpenURL&amp;quot; is also used as a catch-all for all of the independent parts and how they work.  This is mainly because it's a catchier term than &amp;quot;Z39.88&amp;quot;, which is the [http://www.niso.org/standards/standard_detail.cfm?std_id=783 NISO standard all this is based upon].&lt;br /&gt;
&lt;br /&gt;
The most common representation of the OpenURL ContextObject is seen as arguments in a URL string (which is referred to as &amp;quot;San Antonio Profile 1&amp;quot; -- more commonly SAP1 -- and is represented in Key Encoded Values -- KEVs).  This &amp;quot;representation&amp;quot; is independent of the ContextObject (from here on known as CO) itself and is only intended to permit the CO to be transmitted via an HTTP GET request.&lt;br /&gt;
&lt;br /&gt;
There is also SAP2, which is an XML representation of the CO (see:  [http://alcme.oclc.org/openurl/servlet/OAIHandler?verb=GetRecord&amp;amp;metadataPrefix=oai_dc&amp;amp;identifier=info:ofi/fmt:xml:xsd:ctx here]  for more information) and is a much more human readable format.  This still falls outside the scope of microformats, but makes the point that encoding has nothing to do with the CO itself.  They are just agreed upon means of conveying the CO to enable machines act upon them consistently.&lt;br /&gt;
&lt;br /&gt;
The ContextObject could be conveyed just as easily in XHTML using attributes, as long as the terms follow the vocabulary defined in the OpenURL framework.  The important thing to focus on here is the ContextObject -- the address of the link resolver ''is'' institution-specific and should be handled by a user's (or machine's) activating agent.&lt;br /&gt;
&lt;br /&gt;
However, the link resolver is still a very important component to this whole process.  Getting users &amp;quot;appropriate copy&amp;quot; is a very real (and very difficult) problem that libraries are trying to solve.  Link resolvers are a pretty efficient means of overcoming this hurdle, so it would make sense to mark up bibiographic citations in a way that link resolvers can easily parse.&lt;br /&gt;
&lt;br /&gt;
== Z39.80 ==&lt;br /&gt;
I'm not sure the best place for a guide to Z39.80 so please add links as you see fit:&lt;br /&gt;
&lt;br /&gt;
[http://www.niso.org/standards/resources/drft4rev.html http://www.niso.org/standards/resources/drft4rev.html]&lt;br /&gt;
&lt;br /&gt;
== DocBook ==&lt;br /&gt;
&lt;br /&gt;
A subset of the DocBook vocabulary is dedicated to representing a bibliography: http://www.docbook.org/tdg/en/html/bibliography.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE bibliography PUBLIC &amp;quot;-//OASIS//DTD DocBook XML V4.1.2//EN&amp;quot;&lt;br /&gt;
          &amp;quot;http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;bibliography&amp;gt;&lt;br /&gt;
  &amp;lt;title&amp;gt;Languages and Semantics&amp;lt;/title&amp;gt;&lt;br /&gt;
  &amp;lt;bibliodiv&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt;Books&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;biblioentry&amp;gt;&lt;br /&gt;
      &amp;lt;title&amp;gt;Course in General Linguistics&amp;lt;/title&amp;gt;&lt;br /&gt;
      &amp;lt;abbrev&amp;gt;deSaussure59&amp;lt;/abbrev&amp;gt;&lt;br /&gt;
      &amp;lt;author&amp;gt;&amp;lt;firstname&amp;gt;Ferdinand&amp;lt;/firstname&amp;gt;&amp;lt;surname&amp;gt;de Saussure&amp;lt;/surname&amp;gt;&amp;lt;/author&amp;gt;&lt;br /&gt;
      &amp;lt;editor&amp;gt;&amp;lt;firstname&amp;gt;Charles&amp;lt;/firstname&amp;gt;&amp;lt;surname&amp;gt;Bally&amp;lt;/surname&amp;gt;&amp;lt;/editor&amp;gt;&lt;br /&gt;
      &amp;lt;editor&amp;gt;&amp;lt;firstname&amp;gt;Albert&amp;lt;/firstname&amp;gt;&amp;lt;surname&amp;gt;Sechehaye&amp;lt;/surname&amp;gt;&amp;lt;/editor&amp;gt;&lt;br /&gt;
      &amp;lt;othercredit role=&amp;quot;translator&amp;quot;&amp;gt;&amp;lt;firstname&amp;gt;Wade&amp;lt;/firstname&amp;gt;&amp;lt;surname&amp;gt;Baskin&amp;lt;/surname&amp;gt;&amp;lt;/othercredit&amp;gt;&lt;br /&gt;
      &amp;lt;copyright&amp;gt;&lt;br /&gt;
        &amp;lt;year&amp;gt;1959&amp;lt;/year&amp;gt;&lt;br /&gt;
        &amp;lt;holder&amp;gt;The Philosophical Library Inc.&amp;lt;/holder&amp;gt;&lt;br /&gt;
      &amp;lt;/copyright&amp;gt;&lt;br /&gt;
      &amp;lt;isbn&amp;gt;07-016524-6&amp;lt;/isbn&amp;gt;&lt;br /&gt;
      &amp;lt;publisher&amp;gt;&lt;br /&gt;
        &amp;lt;publishername&amp;gt;McGraw-Hill Book Company&amp;lt;/publishername&amp;gt;&lt;br /&gt;
      &amp;lt;/publisher&amp;gt;  &lt;br /&gt;
    &amp;lt;/biblioentry&amp;gt;&lt;br /&gt;
  &amp;lt;/bibliodiv&amp;gt;&lt;br /&gt;
&amp;lt;/bibliography&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* publisher&lt;br /&gt;
* copyright&lt;br /&gt;
* identifier (ISBN)&lt;br /&gt;
* title&lt;br /&gt;
* author/editor/other credit/&lt;br /&gt;
* type (book)&lt;br /&gt;
&lt;br /&gt;
== Ann Arbor District Library XML feed ==&lt;br /&gt;
&lt;br /&gt;
Here's a record in XML format from their project to simplify&lt;br /&gt;
access to the catalog.  More discussion on [http://www.blyberg.net John Blyberg's blog].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;p:Record&amp;gt;&lt;br /&gt;
  &amp;lt;callnum&amp;gt;823 Bu&amp;lt;/callnum&amp;gt;&lt;br /&gt;
  &amp;lt;author&amp;gt;Burkart, Gina, 1971-&amp;lt;/author&amp;gt;&lt;br /&gt;
  &amp;lt;fulltitle&amp;gt;A parent's guide to Harry Potter / Gina Burkart&amp;lt;/fulltitle&amp;gt;&lt;br /&gt;
  &amp;lt;title&amp;gt;A parent's guide to Harry Potter &amp;lt;/title&amp;gt;&lt;br /&gt;
  &amp;lt;pubinfo&amp;gt;Downers Grove, Ill. : InterVarsity Press, c2005&amp;lt;/pubinfo&amp;gt;&lt;br /&gt;
  &amp;lt;desc&amp;gt;112 p&amp;lt;/desc&amp;gt;&lt;br /&gt;
  &amp;lt;bibliography&amp;gt;Includes bibliographical references&amp;lt;/bibliography&amp;gt;&lt;br /&gt;
  &amp;lt;contents&amp;gt;&lt;br /&gt;
    The Harry hype -- More than a story -- The modern fairy tale -- Discussing fantasy with children --&lt;br /&gt;
    Morals, not magic -- The real issues in Harry Potter -- Dealing with traumatic experiences -- Facing &lt;br /&gt;
    fears -- Battling bullies -- Delving into diversity -- Hiding hurts -- Letting go of anger -- Getting &lt;br /&gt;
    help -- Choosing good over evil -- The power of love -- Facing spiritual battles&lt;br /&gt;
  &amp;lt;/contents&amp;gt;&lt;br /&gt;
  &amp;lt;isbn&amp;gt;0830832882&amp;lt;/isbn&amp;gt;&lt;br /&gt;
  &amp;lt;price&amp;gt;$11.00&amp;lt;/price&amp;gt;&lt;br /&gt;
  &amp;lt;lang&amp;gt;eng&amp;lt;/lang&amp;gt;&lt;br /&gt;
  &amp;lt;copies&amp;gt;0&amp;lt;/copies&amp;gt;&lt;br /&gt;
  &amp;lt;catdate&amp;gt;08-16-2005&amp;lt;/catdate&amp;gt;&lt;br /&gt;
  &amp;lt;mattype&amp;gt;a&amp;lt;/mattype&amp;gt;&lt;br /&gt;
  &amp;lt;avail&amp;gt;No copies available&amp;lt;/avail&amp;gt;&lt;br /&gt;
  &amp;lt;recordlink xlink:href=&amp;quot;http://www.aadl.org/cat/seek/record=1249810&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/p:Record&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* url&lt;br /&gt;
* availablity&lt;br /&gt;
* identifier (ISBN/call number)&lt;br /&gt;
* author&lt;br /&gt;
* title&lt;br /&gt;
* publisher&lt;br /&gt;
* pages&lt;br /&gt;
* description/contents&lt;br /&gt;
&lt;br /&gt;
== SimpleDC supported by the zoom toolkit ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;dc xmlns=&amp;quot;http/www.loc.gov/zing/srw/dcschema/v1.0/&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;title&amp;gt;Kantor Salomon Sulzer und seine Zeit : eine Dokumentation /&amp;lt;/title&amp;gt;&lt;br /&gt;
 &amp;lt;creator&amp;gt;Avenary, Hanoch.&amp;lt;/creator&amp;gt;&lt;br /&gt;
 &amp;lt;creator&amp;gt;Pass, Walter.&amp;lt;/creator&amp;gt;&lt;br /&gt;
 &amp;lt;creator&amp;gt;Vielmetti, Nikolaus.&amp;lt;/creator&amp;gt;&lt;br /&gt;
 &amp;lt;creator&amp;gt;Adler, Israel, (1925-)&amp;lt;/creator&amp;gt;&lt;br /&gt;
 &amp;lt;subject&amp;gt;Sulzer, Salomon, -- 1804-1890.&amp;lt;/subject&amp;gt;&lt;br /&gt;
 &amp;lt;subject&amp;gt;Jewish composers -- Austria -- Biography.&amp;lt;/subject&amp;gt;&lt;br /&gt;
 &amp;lt;subject&amp;gt;Cantors, Jewish -- Biography.&amp;lt;/subject&amp;gt;&lt;br /&gt;
 &amp;lt;date&amp;gt;1985&amp;lt;/date&amp;gt;&lt;br /&gt;
 &amp;lt;publisher&amp;gt;Sigmaringen : Jan Thorbecke Verlag&amp;lt;/publisher&amp;gt;&lt;br /&gt;
 &amp;lt;identifier&amp;gt;3799540636&amp;lt;/identifier&amp;gt;&lt;br /&gt;
 &amp;lt;description&amp;gt;300 p., [12] p. of plates : ill., music, ports. ; 24 cm.&amp;lt;/description&amp;gt;&lt;br /&gt;
&amp;lt;/dc&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
this is the output of marc.toSimpleDC()&lt;br /&gt;
&lt;br /&gt;
* title&lt;br /&gt;
* creator (author)&lt;br /&gt;
* subjects&lt;br /&gt;
* date&lt;br /&gt;
* publisher&lt;br /&gt;
* identifier&lt;br /&gt;
* description&lt;br /&gt;
&lt;br /&gt;
(NOTE: this schema is from the example, not the source schema)&lt;br /&gt;
&lt;br /&gt;
== SRU from the Library of Congress ==&lt;br /&gt;
&lt;br /&gt;
http://z3950.loc.gov:7090/voyager?version=1.1&amp;amp;operation=searchRetrieve&amp;amp;query=dinosaur&amp;amp;maximumRecords=1&amp;amp;recordSchema=dc&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;zs:searchRetrieveResponse xmlns:zs=&amp;quot;http://www.loc.gov/zing/srw/&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;zs:version&amp;gt;1.1&amp;lt;/zs:version&amp;gt;&lt;br /&gt;
  &amp;lt;zs:numberOfRecords&amp;gt;1701&amp;lt;/zs:numberOfRecords&amp;gt;&lt;br /&gt;
  &amp;lt;zs:records&amp;gt;&lt;br /&gt;
    &amp;lt;zs:record&amp;gt;&lt;br /&gt;
      &amp;lt;zs:recordSchema&amp;gt;info:srw/schema/1/dc-v1.1&amp;lt;/zs:recordSchema&amp;gt;&lt;br /&gt;
      &amp;lt;zs:recordPacking&amp;gt;xml&amp;lt;/zs:recordPacking&amp;gt;&lt;br /&gt;
      &amp;lt;zs:recordData&amp;gt;&lt;br /&gt;
        &amp;lt;srw_dc:dc xmlns:srw_dc=&amp;quot;info:srw/schema/1/dc-schema&amp;quot; &lt;br /&gt;
             xmlns:xsi=&amp;quot;http://www.w3.org/2001/XMLSchema-instance&amp;quot; &lt;br /&gt;
             xmlns=&amp;quot;http://purl.org/dc/elements/1.1/&amp;quot; &lt;br /&gt;
             xsi:schemaLocation=&amp;quot;info:srw/schema/1/dc-schema http://www.loc.gov/z3950/agency/zing/srw/dc-schema.xsd&amp;quot;&amp;gt;&lt;br /&gt;
          &amp;lt;title&amp;gt;3-D dinosaur adventure [computer file].&amp;lt;/title&amp;gt;&lt;br /&gt;
          &amp;lt;creator&amp;gt;Knowledge Adventure, Inc.&amp;lt;/creator&amp;gt;&lt;br /&gt;
          &amp;lt;type&amp;gt;software, multimedia&amp;lt;/type&amp;gt;&lt;br /&gt;
          &amp;lt;publisher&amp;gt;Glendale, CA : Knowledge Adventure,&amp;lt;/publisher&amp;gt;&lt;br /&gt;
&lt;br /&gt;
          &amp;lt;date&amp;gt;c1995.&amp;lt;/date&amp;gt;&lt;br /&gt;
          &amp;lt;language&amp;gt;eng&amp;lt;/language&amp;gt;&lt;br /&gt;
          &amp;lt;description&amp;gt;Employs a dinosaur theme-park setting to introduce users to Triassic, Jurassic, and &lt;br /&gt;
            Cretaceous periods. Features hypertext dinosaur encyclopedia covering 150 million years of &lt;br /&gt;
            paleontology. Includes animated video simulations, three-dimensional dinosaur museum, narration,&lt;br /&gt;
            games, activities, and color illustrations.&amp;lt;/description&amp;gt;&lt;br /&gt;
          &amp;lt;description&amp;gt;Ages 5 to 10.&amp;lt;/description&amp;gt;&lt;br /&gt;
          &amp;lt;description&amp;gt;System requirements for PC: 486SX/25MHz processor or higher; 8MB RAM; Windows 3.1, &lt;br /&gt;
            3.11, or 95; SVGA 256-color graphics adapter; hard drive with 5MB free space; double-speed CD-ROM&lt;br /&gt;
            drive; MPC-compatible sound card; mouse.&amp;lt;/description&amp;gt;&lt;br /&gt;
          &amp;lt;description&amp;gt;System requirements for Macintosh: 68040 or Power PC processor; 8MB RAM; System 7.0 or&lt;br /&gt;
            higher; 256-color graphics capability; thirteen-inch color monitor or larger; hard drive with 4MB&lt;br /&gt;
            free space; double-speed CD-ROM drive.&amp;lt;/description&amp;gt;&lt;br /&gt;
            &lt;br /&gt;
          &amp;lt;description&amp;gt;Ages 5 to 10.&amp;lt;/description&amp;gt;&lt;br /&gt;
          &amp;lt;description&amp;gt;Employs a dinosaur theme-park setting to introduce users to Triassic, Jurassic, and &lt;br /&gt;
            Cretaceous periods. Features hypertext dinosaur encyclopedia covering 150 million years of paleontology.&lt;br /&gt;
            Includes animated video simulations, three-dimensional dinosaur museum, narration, games, activities, &lt;br /&gt;
            and color illustrations.&amp;lt;/description&amp;gt;&lt;br /&gt;
          &amp;lt;subject&amp;gt;Dinosaurs--Juvenile software.&amp;lt;/subject&amp;gt;&lt;br /&gt;
          &amp;lt;subject&amp;gt;Dinosaurs.&amp;lt;/subject&amp;gt;&lt;br /&gt;
          &amp;lt;identifier&amp;gt;URN:ISBN:1569972133&amp;lt;/identifier&amp;gt;&lt;br /&gt;
        &amp;lt;/srw_dc:dc&amp;gt;&lt;br /&gt;
      &amp;lt;/zs:recordData&amp;gt;&lt;br /&gt;
      &amp;lt;zs:recordPosition&amp;gt;1&amp;lt;/zs:recordPosition&amp;gt;&lt;br /&gt;
    &amp;lt;/zs:record&amp;gt;&lt;br /&gt;
  &amp;lt;/zs:records&amp;gt;&lt;br /&gt;
&amp;lt;/zs:searchRetrieveResponse&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
NOTE: this is just Dublin Core data in a special LOC envelope&lt;br /&gt;
&lt;br /&gt;
== University of Bath reference type ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
		&amp;lt;reference&amp;gt;&lt;br /&gt;
			&amp;lt;authors&amp;gt;&lt;br /&gt;
				&amp;lt;author&amp;gt;&lt;br /&gt;
					&amp;lt;forename&amp;gt;E&amp;lt;/forename&amp;gt;&lt;br /&gt;
					&amp;lt;forename&amp;gt;M&amp;lt;/forename&amp;gt;&lt;br /&gt;
					&amp;lt;surname&amp;gt;Phillips&amp;lt;/surname&amp;gt;&lt;br /&gt;
				&amp;lt;/author&amp;gt;&lt;br /&gt;
				&amp;lt;author&amp;gt;&lt;br /&gt;
					&amp;lt;forename&amp;gt;D&amp;lt;/forename&amp;gt;&lt;br /&gt;
					&amp;lt;forename&amp;gt;S&amp;lt;/forename&amp;gt;&lt;br /&gt;
					&amp;lt;surname&amp;gt;Pugh&amp;lt;/surname&amp;gt;&lt;br /&gt;
				&amp;lt;/author&amp;gt;&lt;br /&gt;
			&amp;lt;/authors&amp;gt;&lt;br /&gt;
			&amp;lt;date&amp;gt;1994&amp;lt;/date&amp;gt;&lt;br /&gt;
			&amp;lt;entity&amp;gt;&lt;br /&gt;
				&amp;lt;book title=&amp;quot;How to get a PhD:  A handbook for students and their supervisors&amp;quot;&amp;gt;&lt;br /&gt;
					&amp;lt;location&amp;gt;&lt;br /&gt;
						&amp;lt;placeofpublication&amp;gt;Buckinghamshire&amp;lt;/placeofpublication&amp;gt;&lt;br /&gt;
						&amp;lt;publisher&amp;gt;Open University&amp;lt;/publisher&amp;gt;&lt;br /&gt;
					&amp;lt;/location&amp;gt;&lt;br /&gt;
				&amp;lt;/book&amp;gt;&lt;br /&gt;
			&amp;lt;/entity&amp;gt;&lt;br /&gt;
		&amp;lt;/reference&amp;gt;&lt;br /&gt;
&lt;br /&gt;
		&amp;lt;reference&amp;gt;&lt;br /&gt;
			&amp;lt;authors&amp;gt;&lt;br /&gt;
				&amp;lt;author&amp;gt;&lt;br /&gt;
					&amp;lt;forename&amp;gt;Michael&amp;lt;/forename&amp;gt;&lt;br /&gt;
					&amp;lt;surname&amp;gt;Fumento&amp;lt;/surname&amp;gt;&lt;br /&gt;
				&amp;lt;/author&amp;gt;&lt;br /&gt;
			&amp;lt;/authors&amp;gt;&lt;br /&gt;
			&amp;lt;date&amp;gt;1996&amp;lt;/date&amp;gt;&lt;br /&gt;
			&amp;lt;entity&amp;gt;&lt;br /&gt;
				&amp;lt;website pagetitle=&amp;quot;Radon&amp;amp;apos;s Real Threat is to the EPA&amp;quot; &lt;br /&gt;
uri=&amp;quot;http://www.consumeralert.org/fumento/radon1.htm&amp;quot;/&amp;gt;&lt;br /&gt;
			&amp;lt;/entity&amp;gt;&lt;br /&gt;
			&amp;lt;frdescription&amp;gt;an article by a prolific newspaper columnist in the USA - &lt;br /&gt;
quotes empirical scientific research showing no provable link between radon in homes and elevated &lt;br /&gt;
cases of lung cancer&amp;lt;/frdescription&amp;gt;&lt;br /&gt;
		&amp;lt;/reference&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[http://www.bath.ac.uk/schemas/screenshots/referencetype.png Schema extract]&lt;br /&gt;
&lt;br /&gt;
* author&lt;br /&gt;
* date&lt;br /&gt;
* url&lt;br /&gt;
* description&lt;br /&gt;
* type (book/journal/conference)&lt;br /&gt;
* title&lt;br /&gt;
* artile&lt;br /&gt;
* volume&lt;br /&gt;
* issue&lt;br /&gt;
* chapter&lt;br /&gt;
* pages&lt;br /&gt;
* publisher&lt;br /&gt;
** publisher data (address, city, ...)&lt;br /&gt;
&lt;br /&gt;
== Implied Schema ==&lt;br /&gt;
This is the start of the short list of common properties across documented formats. Once this is finished, there will be a union of Implied schemas between EXAMPLES and IMPLEMENTATIONS and we will see what that looks like. (This currently only covers a few of the formats listed, some documented formats still need to be explored)&lt;br /&gt;
&lt;br /&gt;
* creator (author, editor, translator, contributor) - this can be handled with hCard, but will need an additional property to refine what &amp;quot;creator&amp;quot; means&lt;br /&gt;
* publisher (this can also be handled with hCard)&lt;br /&gt;
* subject/topics/keywords/categories/genre (there is a rel=&amp;quot;tag&amp;quot; microformat)&lt;br /&gt;
* Description (abstract, note, tableOfContents)&lt;br /&gt;
* typeOfResource/format&lt;br /&gt;
&lt;br /&gt;
common location information&lt;br /&gt;
* volume&lt;br /&gt;
* issue&lt;br /&gt;
* page&lt;br /&gt;
* edition&lt;br /&gt;
&lt;br /&gt;
Date Fields&lt;br /&gt;
* Date Published (some formats have YEAR/MONTH sperately)&lt;br /&gt;
* Date accessed (see [http://www.columbia.edu/cu/cup/cgos/basic.html here] for examples)&lt;br /&gt;
&lt;br /&gt;
Again, I'll emphasize: &amp;quot;date published&amp;quot; is problematic. If one needs specificity, then better to have the following list of date classes: date (the generic), issued (braoder than published), copyright (often not the same as issuance date), accessed. -- bruce&lt;br /&gt;
&lt;br /&gt;
Other fields&lt;br /&gt;
* Copyright/usage&lt;br /&gt;
* audience&lt;br /&gt;
&lt;br /&gt;
* identifier (ISBN, ISSN, id, internal only, other)&lt;br /&gt;
* language (this can be handled by the xml:lang attribute native to HTML)&lt;br /&gt;
&lt;br /&gt;
== Types and Roles ==&lt;br /&gt;
(Section is informative only as a place to capture various parts of publication citations.)&lt;br /&gt;
&lt;br /&gt;
There are many different types of publications and this information should be captured in the citation. Possible types include:&lt;br /&gt;
* Novel/fiction (specify type -- literature, SF, romance, etc.?)&lt;br /&gt;
* Non-fiction&lt;br /&gt;
* Poem&lt;br /&gt;
* Play&lt;br /&gt;
* Magazine&lt;br /&gt;
* Reference (separate out encyclopedia, dictionary, almanac, etc.?)&lt;br /&gt;
* Journal&lt;br /&gt;
* Article within a journal&lt;br /&gt;
* Chapter within a book&lt;br /&gt;
* Dissertation&lt;br /&gt;
* Web Site&lt;br /&gt;
* Page within a web site&lt;br /&gt;
* Music Recording&lt;br /&gt;
* Video Recording&lt;br /&gt;
* Interview&lt;br /&gt;
* Physical object (Statue, Painting, etc.)&lt;br /&gt;
* ??&lt;br /&gt;
&lt;br /&gt;
Question: &lt;br /&gt;
Certain works have specific types of citations, for example, the Bible--and, I assume, other religious works--have very specific citation formats with different relevant information (chapter/verse) than others, as do the works of Shakespeare. Should these be considered separate types/roles?&lt;br /&gt;
&lt;br /&gt;
A: I think in terms of types, we should at least note the items (chapter, verse, etc). How they get dealt with is still way up in the air. - [[User:Tim White|Tim White]]&lt;br /&gt;
&lt;br /&gt;
Likewise, there are several different roles associated with publications -- author, co-author, editor, translator, etc. Should these be captured under a master &amp;quot;role&amp;quot; or treated as individual elements?&lt;br /&gt;
&lt;br /&gt;
A: Good question. I think there is an important distinction, but whether we follow a design pattern of &amp;quot;role-*&amp;quot; (or more likely &amp;quot;author-*) or some other pattern hasn't been discussed yet. - Tim&lt;br /&gt;
&lt;br /&gt;
== Biblio RDF Class Schema ==&lt;br /&gt;
Regading the issue of types notes above, the [http://vocab.org/biblio/schema biblio schema] provides a comprehensive set of classes to describe citation metadata. It might prove useful as a guide for a micro-format. The primary classes are Agent, Reference, Collection, and Event. An &amp;quot;Article&amp;quot;, then, would be a subclass of &amp;quot;Part&amp;quot;, which in turn is a subclass of Reference. Likewise, a &amp;quot;Journal&amp;quot; is a subclass of a &amp;quot;Periodical,&amp;quot; which in turn is a subclass of &amp;quot;Collection.&amp;quot; An article would typically be linked to a journal through a dcterms:isPartOf relation.&lt;br /&gt;
&lt;br /&gt;
== ISBN Uniform Resource Names ==&lt;br /&gt;
&lt;br /&gt;
[http://www.faqs.org/rfcs/rfc3187.html RFC3187] defines an ISBN namespace for Uniform Resource Names (URNs).&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&lt;br /&gt;
URN:ISBN:0-395-36341-1&lt;br /&gt;
&lt;br /&gt;
I'm not sure if any browser uses this data, but it might have an application in citations describing registered materials with an ISBN.&lt;br /&gt;
&lt;br /&gt;
There is also a URN namespace for ISSN (International Standard Serial Number), which identifies serials/periodicals e.g. [http://alistapart.com A List Apart].  It is defined in [http://www.faqs.org/rfcs/rfc3044.html RFC3044].  Additional URN namespaces are listed at http://www.iana.org/assignments/urn-namespaces.&lt;br /&gt;
&lt;br /&gt;
== You should know == &lt;br /&gt;
* There are more then 1.300 citation ''styles'' in EndNote 9.&lt;br /&gt;
* Libraries have developed formats and rules for publications since more than 100 years. There are millions of records in library catalougues. You should '''at least''' be familiar with AACR and FRBR. There '''already are''' effords to create a new &amp;quot;microformat&amp;quot; called ''Resource Description and Access'' (RDA) [http://www.collectionscanada.ca/jsc/rdaprospectus.html]. Why don't you try to work with the professionals instead of amateurishly trying to reinvent the wheel and create yet another incompatible format? -- [[User:JakobVoss|JakobVoss]] 01:39, 5 Jun 2006 (PDT)&lt;br /&gt;
** I agree that the people involved in developing this microformat (including me) ought to be aware of these efforts (in particular FRBR), but I also think your argument is hopelessly naive and pretentious. The professionals you refer to are in fact library professionals, with their own bizarre traditios and unique information needs. Those are different than the professional scholars for whom citations are critical (me), or to the professional web developers who might want to implement these formats. What I do think is important is for us to understand the different design traditions, and their trade-offs, rather than to blindly create a microformat based on one of them -- Bruce (author of citeproc [http://xbiblio.sourceforge.net/citeproc] and csl [http://xbiblio.sourceforge.net/csl]).&lt;br /&gt;
&lt;br /&gt;
Nice to meet you, Bruce! Maybe I'm naive but it still think that there is a way to combine the best of both worlds: scholars and library professionals. Both have developed bizarre traditions and it would be a pitty to create a new bizarre microformat that is not based on both of them. Thanks to your links to xbiblio. I a stumbled upon it a while ago but have to look at it deeper. -- [[User:JakobVoss|JakobVoss]] 11:48, 19 Jul 2006 (PDT)&lt;br /&gt;
&lt;br /&gt;
== OpenDocument ==&lt;br /&gt;
The OpenDocument Format also includes parts for citation and bibliography. See also the [http://bibliographic.openoffice.org/ OpenOffice Bibliographic project]. -- [[User:JakobVoss|JakobVoss]] 11:55, 19 Jul 2006 (PDT)&lt;/div&gt;</summary>
		<author><name>TerrellRussell</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=citation-formats&amp;diff=8021</id>
		<title>citation-formats</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=citation-formats&amp;diff=8021"/>
		<updated>2006-08-05T22:09:49Z</updated>

		<summary type="html">&lt;p&gt;TerrellRussell: /* Dublin Core Metadata */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Citation Formats =&lt;br /&gt;
&lt;br /&gt;
This page will display several different types of citation format types. The idea is to compare what properties are common amonst all of the formats and which ones should be blended into this microformat.&lt;br /&gt;
&lt;br /&gt;
See also:&lt;br /&gt;
* [[citation]]&lt;br /&gt;
* [[citation-brainstorming]]&lt;br /&gt;
* [[citation-examples]]&lt;br /&gt;
* [[citation-faq]]&lt;br /&gt;
&lt;br /&gt;
== Comparison chart ==&lt;br /&gt;
The following chart maps the terms from one implementation to another. This is important because if all the properties are introduced to this microformat, then it's possible to map them to a number of different formats. The table currently only uses Dublin Core, MODS, and bibTeX. Each column has all the properties and their equivalent in each format. If there is no corresponding property, the cell is grey. At the bottom of the list are the unique terms to each format. Dublin Core has basic terms and terms that extend the basic ones. If the property is an extension of a basic term it is in ()'s. MODS uses XML, so any sub-properties are listed in their tree form, property/sub-property.&lt;br /&gt;
&lt;br /&gt;
THIS IS NOT DEFINITIVE, any errors should be corrected. More formats will be added to the list as they are mapped.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;th&amp;gt;Dublin Core&amp;lt;/th&amp;gt;&lt;br /&gt;
		&amp;lt;th&amp;gt;MODS&amp;lt;/th&amp;gt;&lt;br /&gt;
		&amp;lt;th&amp;gt;bibTeX&amp;lt;/th&amp;gt;&lt;br /&gt;
		&amp;lt;th&amp;gt;Z39.80&amp;lt;/th&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Title (alternative)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;titleInfo/title&amp;lt;br/&amp;gt;titleInfo/PartNum&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;booktitle&amp;lt;br/&amp;gt;title&amp;lt;br/&amp;gt;chapter&amp;lt;br/&amp;gt;number&amp;lt;br/&amp;gt;pages&amp;lt;br/&amp;gt;volume&amp;lt;br/&amp;gt;series&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Analytic Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Collective or Series Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Monographic Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Work Fraction Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Location of Conference&amp;lt;br/&amp;gt;&lt;br /&gt;
Main Entry&amp;lt;br/&amp;gt;&lt;br /&gt;
Name of Conference&amp;lt;br/&amp;gt;&lt;br /&gt;
Number of Meeting&amp;lt;br/&amp;gt;&lt;br /&gt;
Other Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Parallel Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Title Abbriviation&amp;lt;br/&amp;gt;&lt;br /&gt;
Title of Conference Proceedings&amp;lt;br/&amp;gt;&lt;br /&gt;
Translated Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Uniform Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Abbriviated Translated Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Symposium or Session Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Collective or Series Edition&amp;lt;br/&amp;gt;&lt;br /&gt;
Video/Film Edition&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;creator&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;name/namePart&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;author&amp;lt;br/&amp;gt;creator&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Author, Primary&amp;lt;br/&amp;gt;&lt;br /&gt;
Corporate Author, Primary&amp;lt;br/&amp;gt;&lt;br /&gt;
Abstract Author&amp;lt;br/&amp;gt;&lt;br /&gt;
Authorship Statement&amp;lt;br/&amp;gt;&lt;br /&gt;
Acknowledged Supporters&amp;lt;br/&amp;gt;&lt;br /&gt;
Assignee for Patents&amp;lt;br/&amp;gt;&lt;br /&gt;
Chairperson of Conference&amp;lt;br/&amp;gt;&lt;br /&gt;
Director of AV Program&amp;lt;br/&amp;gt;&lt;br /&gt;
Other Author&amp;lt;br/&amp;gt;&lt;br /&gt;
Reviewed Book Author&amp;lt;br/&amp;gt;&lt;br /&gt;
Studio&amp;lt;br/&amp;gt;&lt;br /&gt;
Sponsor of Conference&amp;lt;br/&amp;gt;&lt;br /&gt;
Staff/Cast&amp;lt;br/&amp;gt;&lt;br /&gt;
Symposium Chairperson&amp;lt;br/&amp;gt;&lt;br /&gt;
Author Address or Affiliation&amp;lt;br/&amp;gt;&lt;br /&gt;
Author Country&amp;lt;br/&amp;gt;&lt;br /&gt;
Electronic Address of Author&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;subject&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;subject/topic&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;keywords&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Description (abstract | tableOfContents)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;abstract&amp;lt;br/&amp;gt;note&amp;lt;br/&amp;gt;tableOfContents&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;abstract&amp;lt;br/&amp;gt;annotation&amp;lt;br/&amp;gt;note&amp;lt;br/&amp;gt;contents&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Contributor&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;editor?&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Book/Report/Volume Editor&amp;lt;br/&amp;gt;&lt;br /&gt;
Producer&amp;lt;br/&amp;gt;&lt;br /&gt;
Translator&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Date (available | created | dateAccepted | dateCopyrighted | dateSubmitted | issued | modified | valid)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;originInfo/dateIssued&amp;lt;br/&amp;gt;originInfo/dateCreated&amp;lt;br/&amp;gt;originInfo/dateCaptured&amp;lt;br/&amp;gt;originInfo/dateOther&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;month&amp;lt;br/&amp;gt;year&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Copyright Year&amp;lt;br/&amp;gt;Date-generic&amp;lt;br/&amp;gt;Date of conference&amp;lt;br/&amp;gt;Date of Publication&amp;lt;br/&amp;gt;Date of Update/Revisou/Issuance of Database Record&amp;lt;br/&amp;gt;Former Date&amp;lt;br/&amp;gt;Entry date for Database Record&amp;lt;br/&amp;gt;Database Update&amp;lt;br/&amp;gt;Year of Publication&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Type&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;typeOfResource&amp;lt;br/&amp;gt;genre&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;@class&amp;lt;br/&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Format (extent | medium)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;physicalDescription/internetMediaType&amp;lt;br/&amp;gt;physicalDescription/extent&amp;lt;br/&amp;gt;physicalDescription/form&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;howpublished&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;identifier (bibliographicCitation)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;identifier&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;ISBN&amp;lt;br/&amp;gt;ISSN&amp;lt;br/&amp;gt;LCCN&amp;lt;br/&amp;gt;URL&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;ISBN&amp;lt;br/&amp;gt;Identifier&amp;lt;br/&amp;gt;Report Identfier&amp;lt;br/&amp;gt;ISSN&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Source&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;relatedItem&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#cccccc&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;language&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;language&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;language&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#cccccc&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Relation (...)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;relatedItem/...&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;crossRef&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Coverage (spacial | temporal)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;subject/temporal&amp;lt;br/&amp;gt;subject/geographic&amp;lt;br/&amp;gt;subject/hierarchicalGeographic&amp;lt;br/&amp;gt;subject/cartographics&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#cccccc&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;classifications&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#cccccc&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Rights (accessRights | license)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;accessConditions&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;copyright&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;publisher&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#cccccc&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;publisher&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Publisher Name&amp;lt;br/&amp;gt;&lt;br /&gt;
Place of Publication&amp;lt;br/&amp;gt;&lt;br /&gt;
Country of Publication&amp;lt;br/&amp;gt;&lt;br /&gt;
Generic Address&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;audience (educationLevel | mediator)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;targetAudience&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#cccccc&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#999999&amp;quot;&amp;gt;accualMethod&amp;lt;br/&amp;gt;accualPeriodicaty&amp;lt;br/&amp;gt;accualPolicy&amp;lt;br/&amp;gt;instrcutionalMethod&amp;lt;br/&amp;gt;provenance&amp;lt;br/&amp;gt;rightsHolder&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#999999&amp;quot;&amp;gt;location&amp;lt;br/&amp;gt;extension&amp;lt;br/&amp;gt;recordInfo&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#999999&amp;quot;&amp;gt;address&amp;lt;br/&amp;gt;afflilication&amp;lt;br/&amp;gt;location&amp;lt;br/&amp;gt;edition&amp;lt;br/&amp;gt;institution&amp;lt;br/&amp;gt;journal&amp;lt;br/&amp;gt;key&amp;lt;br/&amp;gt;mrnumber&amp;lt;br/&amp;gt;organization&amp;lt;br/&amp;gt;price&amp;lt;br/&amp;gt;school&amp;lt;br/&amp;gt;size&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#999999&amp;quot;&amp;gt;(the following need to be mapped to the above rows or left here as other)&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Database Source&amp;lt;br/&amp;gt;&lt;br /&gt;
Databse Record Identifier&amp;lt;br/&amp;gt;&lt;br /&gt;
Database Producer Name&amp;lt;br/&amp;gt;&lt;br /&gt;
Rights Management&amp;lt;br/&amp;gt;&lt;br /&gt;
Subfile&amp;lt;br/&amp;gt;&lt;br /&gt;
Other Source Identifier&amp;lt;br/&amp;gt;&lt;br /&gt;
Vendor Record Identifier&amp;lt;br/&amp;gt;&lt;br /&gt;
Database Vendor Name&amp;lt;br/&amp;gt;&lt;br /&gt;
Column Number&amp;lt;br/&amp;gt;&lt;br /&gt;
Edition&amp;lt;br/&amp;gt;&lt;br /&gt;
Frequency of Publication&amp;lt;br/&amp;gt;&lt;br /&gt;
Internet Location for Document&amp;lt;br/&amp;gt;&lt;br /&gt;
Supplement/Part/Special number identifer&amp;lt;br/&amp;gt;&lt;br /&gt;
Issue Identifier&amp;lt;br/&amp;gt;&lt;br /&gt;
Location in Work&amp;lt;br/&amp;gt;&lt;br /&gt;
Number of the Chapter&amp;lt;br/&amp;gt;&lt;br /&gt;
Number in Series&amp;lt;br/&amp;gt;&lt;br /&gt;
Volume Identifier&amp;lt;br/&amp;gt;&lt;br /&gt;
Section Indentifier&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;	&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Dublin Core Metadata ==&lt;br /&gt;
[http://dublincore.org/ Dublin Core] metadata uses a small vocabulary to describe the data.&lt;br /&gt;
* contributor&lt;br /&gt;
* coverage&lt;br /&gt;
* creator&lt;br /&gt;
* date&lt;br /&gt;
* description&lt;br /&gt;
* format&lt;br /&gt;
* identifier&lt;br /&gt;
* language&lt;br /&gt;
* publisher&lt;br /&gt;
* relation&lt;br /&gt;
* rights&lt;br /&gt;
* source&lt;br /&gt;
* subject&lt;br /&gt;
* title&lt;br /&gt;
* type&lt;br /&gt;
&lt;br /&gt;
From those there are specialised types which are just refinements of the previous, for example:&lt;br /&gt;
&lt;br /&gt;
* abstract refines description.&lt;br /&gt;
* accessRights refines rights&lt;br /&gt;
&lt;br /&gt;
[http://dublincore.org/documents/dc-citation-guidelines/ Guidelines for Encoding Bibliographic Citation Information in Dublin Core Metadata]&lt;br /&gt;
&lt;br /&gt;
== MODS (Metadata Object Description Schema) ==&lt;br /&gt;
This is a format developed for the Libray of Congress for a bibliographic element set that may be used for a variety of purposes, and particularly for library applications. &lt;br /&gt;
&lt;br /&gt;
[http://www.loc.gov/standards/mods/ http://www.loc.gov/standards/mods/]&lt;br /&gt;
&lt;br /&gt;
(the schema is very big, once i devote the proper time to review it, i will post more about the structure -brian)&lt;br /&gt;
&lt;br /&gt;
== NLM Journal Publishing DTD ==&lt;br /&gt;
&lt;br /&gt;
[http://dtd.nlm.nih.gov/publishing/tag-library/2.1/n-fv30.html http://dtd.nlm.nih.gov/publishing/tag-library/2.1/n-fv30.html]&lt;br /&gt;
&lt;br /&gt;
The [http://dtd.nlm.nih.gov/publishing/tag-library/ NLM Journal Publishing DTD] defines the schema used for publishing journal articles as XML. The &amp;lt;pre&amp;gt;&amp;lt;citation&amp;gt;&amp;lt;/pre&amp;gt; element can be placed with paragraphs or within a &amp;lt;pre&amp;gt;&amp;lt;ref-list&amp;gt;&amp;lt;/pre&amp;gt; element at the end of the article.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Although the DTD does not enforce it, a citation to a journal article should be tagged with as many as possible of the following, so that PubMed Central, CrossRef, or other matching service can make the citation into a live link:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;source&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;The title of a journal, book, conference proceedings, etc. that is the source of the cited material. (Note: In PubMed Central processing, this is typically the MEDLINE abbreviation of the journal name.)&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;article-title&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Title of the article&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;volume&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Volume of the journal&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;issue&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Issue of the journal&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;fpage&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Page number on which the article starts&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Name of an author or editor&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;year&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Year of publication&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;month&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Month of publication (if present)&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;day&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Date of publication (if present)&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The other elements (described [http://dtd.nlm.nih.gov/publishing/tag-library/2.1/n-fv30.html here]) may be tagged if desired. Use the &amp;lt;source&amp;gt; element for titles of books, conference proceedings, etc.&amp;quot; &lt;br /&gt;
&lt;br /&gt;
== XMLResume ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;!ELEMENT pubs (pub+)&amp;gt;&lt;br /&gt;
&amp;lt;!ENTITY % pubElements &amp;quot;(artTitle|bookTitle|author|date|pubDate|publisher|pageNums|url)&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!ELEMENT pub (para | %pubElements;)*&amp;gt;&lt;br /&gt;
&amp;lt;!ATTLIST pub id ID #IMPLIED&amp;gt;&lt;br /&gt;
&amp;lt;!ELEMENT artTitle (#PCDATA | link)*&amp;gt;&lt;br /&gt;
&amp;lt;!ELEMENT bookTitle (#PCDATA | link)*&amp;gt;&lt;br /&gt;
&amp;lt;!ELEMENT author (#PCDATA)&amp;gt;&lt;br /&gt;
&amp;lt;!ATTLIST author name IDREF #IMPLIED&amp;gt;&lt;br /&gt;
&amp;lt;!ELEMENT pubDate (month?, year)&amp;gt; &amp;lt;!-- Deprecated in 1.4.0. --&amp;gt;&lt;br /&gt;
&amp;lt;!ELEMENT publisher (#PCDATA | link | url)*&amp;gt;&lt;br /&gt;
&amp;lt;!ELEMENT pageNums (#PCDATA)&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* author&lt;br /&gt;
* publication date&lt;br /&gt;
* publisher&lt;br /&gt;
* pages&lt;br /&gt;
* title (article/book)&lt;br /&gt;
* url&lt;br /&gt;
&lt;br /&gt;
== BibTeX ==&lt;br /&gt;
=== Fields Used by Bibtex ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=&amp;quot;1&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;abstract:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;An abstract of the work.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;address:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Publisher's address. For major publishing houses,&lt;br /&gt;
just the city is given. For small publishers, you can help the reader by giving the complete address.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;affiliation:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The author's affiliation.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;annote:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;An annotation. It is not used by he standard bibliography styles, but may be used by others that produce an annotated bibliography.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;author:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The name(s) of the author(s).&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;booktitle:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Title of a book, part of which is being cited. For book entries, use the &amp;lt;strong&amp;gt;title&amp;lt;/strong&amp;gt; field instead.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;chapter:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A chapter (or section) number.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;contents:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A Table of Contents.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;copyright:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Copyright information.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;crossref:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The database key of the entry being cross-referenced.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;edition:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The edition of a book - for example&lt;br /&gt;
        &amp;amp;quot;Second&amp;amp;quot;. Notice that it is in capitals.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;editor:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Name(s) of editor(s). If there is also an author field, then the editor field gives the editor of the book or collection in which the reference appears.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;howpublished:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;How something strange has been published. The first word should be capitalized.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;institution:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The sponsoring institution of a technical report.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;ISBN:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The International Standard Book Number.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;ISSN:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The International Standard Serial Number. Used to&lt;br /&gt;
        identify a journal.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;journal:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A journal name. Abbreviations are provided for many journals.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;key:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Used for alphabetizing and creating a label when the author and editor fields are missing. This field should not be confused with the key that appears at the beginning of the reference.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;keywords:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Key words used for searching or possibly for annotation.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;language:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The language the document is written in.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;LCCN:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The Library of Congress Call Number.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;location:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A location associated with the entry, such as the city in which a conference took place.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;month:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The month in which the work was published or, for an unpublished work, in which it was written.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;mrnumber:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The &amp;lt;em&amp;gt;Mathematical Reviews&amp;lt;/em&amp;gt; number.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;note:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Any additional information that can help the reader. First word should be capitalized.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;number:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The number of a journal, magazine, technical report, or of a work in a series. An issue of a journal or magazine is usually identified by its volume and number; the organization that issues a technical report usually gives it a number; and sometimes books are given numbers in a named series.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;organization:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The organization that sponsors a conference or publishes a manual.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;pages:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;One or more page numbers or ranges of number, such as 37--42, or 7,53,82--94.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;price:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The price of the material.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;publisher:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The publisher's name.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;school:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The name of the school where a thesis was written.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;series:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Then name given a series or set of books. When citing an entire book, the title field gives its title and the optional series field gives the name of a series in which the book was published.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;size:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The physical dimensions of the work.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;title:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The work's title.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;type:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The type of technical report - for example,&lt;br /&gt;
        &amp;amp;quot;Research Note&amp;amp;quot;.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;url:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The WWW Universal Resource Locator that points to the item being referenced. Often used for technical reports to point to the FTP site where it resides.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;volume:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The volume of a journal or multivolume book.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;year:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The year of publication or, for an unpublished work, the year it was written. It should only consist of numerals, such as 1976.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== BibTeX citation Types ===&lt;br /&gt;
A reference can be to any of a variety of types. Following is a list of types. Each one also explains the fields associated with that type. Any fields not listed as required or optional are considered to be ignored.&lt;br /&gt;
&amp;lt;table border=&amp;quot;1&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;article:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;An article from a journal or magazine. Required fields: author, title, journal, year. Optional fields: volume, number, pages, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;book:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A book with an explicit publisher. Required fields: author or editor, title, publisher, year. Optional fields: volume, series, address, edition, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;booklet:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A work that is printed and bound, but without a named publisher or sponsoring institution. Required fields: title. Optional fields: author, howpublished, address, month, year, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;collection:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A collection of works. Same as Proceedings.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;conference:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The same as Inproceedings.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;inbook:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A part of a book, which may be a chapter and/or arange of pages. Required fields: author or editor, title, chapter and/or pages, publisher, year. Optional fields: volumer, series, address, edition, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;incollection:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A part of a book with its own title. Required fields: author, title, booktitle, publisher, year. Optional fields: editor, pages, organization, publisher, address, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;inproceedings:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;An article in a conference proceedings. Required fields: author, title, booktitle, year. Optional fields: editor, pages, organization, publisher, address, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;manual:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Technical documentation. Required fields: title. Optional fields: author, organization, address, edition, month, year, note.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;mastersthesis:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A Master's thesis. Required fields: author, title, school, year. Optional fields: address, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;misc:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Use this type when nothing else fits. Required fields: none. Optional fields: author, title, howpublished, month, year, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;patent:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A patent.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;phdthesis:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A Ph.D. thesis. Required fields: author, title, school, year. Optional fields: address, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;proceedings:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The proceedings of a conference. Required fields: title, year. Optional fields: editor, publisher, organization, address, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;techreport:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A report published by a school or other institution, usually numbered within a series. Required fields: author, title, institution, year. Optional fields: type, number, address, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;unpublished:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A document with an author and title, but not formally published. Required fields: author, title, note. Optional fields: month, year, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Examples ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
@book{kn:gnus,&lt;br /&gt;
&lt;br /&gt;
AUTHOR = &amp;quot;Donald E. Knudson&amp;quot;,&lt;br /&gt;
TITLE = &amp;quot;1966 World Gnus Almanac&amp;quot;,&lt;br /&gt;
PUBLISHER = {Permafrost Press},&lt;br /&gt;
ADDRESS = {Novosibirsk} }&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;book&amp;quot; id=&amp;quot;kn:gnus&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;author&amp;quot;&amp;gt;Donald E. Knudson&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;title&amp;quot;&amp;gt;1966 World Gnus Almanac&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;publisher&amp;quot;&amp;gt;Permafrost Press&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;address&amp;quot;&amp;gt;Novosibirsk&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
@article{XAi_HSCheng_1994a,&lt;br /&gt;
&lt;br /&gt;
author = &amp;quot;X. Ai and H. S. Cheng&amp;quot;,&lt;br /&gt;
title = &amp;quot;Influence of moving dent on point {EHL} contacts&amp;quot;,&lt;br /&gt;
journal = &amp;quot;Tribol. Trans.&amp;quot;,&lt;br /&gt;
volume = &amp;quot;37&amp;quot;,&lt;br /&gt;
year = &amp;quot;1994&amp;quot;,&lt;br /&gt;
pages = &amp;quot;323--335&amp;quot;,&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;article&amp;quot; id=&amp;quot;XAi_HSCheng_1994a&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;author&amp;quot;&amp;gt;X. Ai and H. S. Cheng&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;title&amp;quot;&amp;gt;Influence of moving dent on point {EHL} contacts&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;journal&amp;quot;&amp;gt;Tribol. Trans.&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;volume&amp;quot;&amp;gt;37&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;year&amp;quot;&amp;gt;1994&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;pages&amp;quot;&amp;gt;323--335&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Bib-enabled Applications===&lt;br /&gt;
&lt;br /&gt;
Reference-management applications that support the bib format.  &amp;lt;strong&amp;gt;This is an incomplete list&amp;lt;/strong&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
====Desktop Applications====&lt;br /&gt;
* [http://www.endnote.com EndNote] (Large market share)&lt;br /&gt;
* [http://bibdesk.sourceforge.net/ BibDesk]&lt;br /&gt;
* [http://www.mackichan.com/index.html?bibdb/default.htm~mainFrame BibDB]&lt;br /&gt;
* [http://sourceforge.net/projects/bib-it/ Bib-it]&lt;br /&gt;
* Large list of other apps at [http://dmoz.org/Computers/Software/Typesetting/TeX/BibTeX/ dmoz] and [http://en.wikipedia.org/wiki/BibTeX#Software Wikipedia]&lt;br /&gt;
&lt;br /&gt;
====Web Applications====&lt;br /&gt;
* [http://www.refworks.com RefWorks] (Large market share)&lt;br /&gt;
* [http://www.citeulike.org/ CiteULike]&lt;br /&gt;
* [http://citeseer.ist.psu.edu/ CiteSeer]&lt;br /&gt;
* [http://www.bibsonomy.org/ BibSonomy]&lt;br /&gt;
* [http://www.connotea.org Connotea]&lt;br /&gt;
* [http://www.2ndminute.org:8080/amatex Amatex - converts Amazon to Bib format]&lt;br /&gt;
* Many others can be found at [http://en.wikipedia.org/wiki/BibTeX#External_links Wikipedia]&lt;br /&gt;
&lt;br /&gt;
====Academic Databases====&lt;br /&gt;
* [http://academic.live.com/ Windows Live Academic Search]&lt;br /&gt;
* [http://portal.acm.org/dl.cfm?dl=ACM ACM Digital Library]&lt;br /&gt;
* [http://www.ncbi.nlm.nih.gov/books/bv.fcgi PubMed] via TexMed&lt;br /&gt;
&lt;br /&gt;
== RIS ==&lt;br /&gt;
&lt;br /&gt;
RIS is similar to BibTeX and is handled by most desktop and web-based bibliography management software.&lt;br /&gt;
&lt;br /&gt;
The specification and field types/tags are described at [http://www.refman.com/support/risformat_intro.asp http://www.refman.com/support/risformat_intro.asp]&lt;br /&gt;
&lt;br /&gt;
In particular, see [http://www.refman.com/support/risformat_reftypes.asp the list of different reference types].&lt;br /&gt;
&lt;br /&gt;
A sample item in RIS format:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
TY  - JOUR&lt;br /&gt;
A1  - Baldwin,S.A.&lt;br /&gt;
A1  - Fugaccia,I.&lt;br /&gt;
A1  - Brown,D.R.&lt;br /&gt;
A1  - Brown,L.V.&lt;br /&gt;
A1  - Scheff,S.W.&lt;br /&gt;
T1  - Blood-brain barrier breach following&lt;br /&gt;
cortical contusion in the rat&lt;br /&gt;
JO  - J.Neurosurg.&lt;br /&gt;
Y1  - 1996&lt;br /&gt;
VL  - 85&lt;br /&gt;
SP  - 476&lt;br /&gt;
EP  - 481&lt;br /&gt;
RP  - Not In File&lt;br /&gt;
KW  - cortical contusion&lt;br /&gt;
KW  - blood-brain barrier&lt;br /&gt;
KW  - horseradish peroxidase&lt;br /&gt;
KW  - head trauma&lt;br /&gt;
KW  - hippocampus&lt;br /&gt;
KW  - rat&lt;br /&gt;
ER  -&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://www-static.cc.gatech.edu/classes/RWL/Projects/citation/Applet/OnlineHelp/refer_doc.html Refer] is a similar, smaller bibliographic format.&lt;br /&gt;
&lt;br /&gt;
* author&lt;br /&gt;
* title&lt;br /&gt;
* type&lt;br /&gt;
* Identifier&lt;br /&gt;
* notes/abstract&lt;br /&gt;
* reprint status&lt;br /&gt;
* keyword&lt;br /&gt;
* volume&lt;br /&gt;
* issue&lt;br /&gt;
* pages&lt;br /&gt;
* year&lt;br /&gt;
* periodical name (where published)&lt;br /&gt;
* publisher&lt;br /&gt;
** publisher city&lt;br /&gt;
** publisher address&lt;br /&gt;
* related links&lt;br /&gt;
* link to PDF&lt;br /&gt;
* availablity&lt;br /&gt;
&lt;br /&gt;
== OpenURL ==&lt;br /&gt;
&lt;br /&gt;
OpenURL aka [http://www.niso.org/standards/standard_detail.cfm?std_id=783 Z39.88] defines a standard way of bundling citation data in a URL. It is widely deployed in academic libraries around the world to provide access to licensed content via link resolvers such as [http://www.exlibrisgroup.com/sfx_openurl.htm SFX]. The Context Object in Span ([http://ocoins.info/ COinS]) community standard represents one way to embed OpenURLs in XHTML without including a resolver target. OpenURL also provides an XML encoding.&lt;br /&gt;
&lt;br /&gt;
Example (from a book review written using the Structured Blogging plugin):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;ISBN&amp;lt;/b&amp;gt;: &amp;lt;span class='Z3988'&lt;br /&gt;
title='ctx_ver=Z39.88-2004&amp;amp;amp;amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;amp;amp;amp;rft.isbn=0679426612'&amp;gt;&lt;br /&gt;
0679426612&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Another example, a journal this time:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;Z3988&amp;quot; title=&amp;quot;ctx_ver=Z39.88-2004&amp;amp;amp;rft_val_fmt=info:ofi/fmt:kev:mtx:journal&amp;amp;amp;rft.issn=1045-4438&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As you can see this isn't very much like semantic XHTML at all. However significant work has gone into defining the set of Key/Encoded Values (KEVs) that can be used in various [http://alcme.oclc.org/openurl/servlet/OAIHandler?verb=ListRecords&amp;amp;metadataPrefix=oai_dc&amp;amp;set=Core:Metadata+Formats types] of citations: [http://www.openurl.info/registry/docs/mtx/info:ofi/fmt:kev:mtx:book book], [http://www.openurl.info/registry/docs/mtx/info:ofi/fmt:kev:mtx:dissertation dissertation], [http://www.openurl.info/registry/docs/mtx/info:ofi/fmt:kev:mtx:journal journal], [http://www.openurl.info/registry/docs/mtx/info:ofi/fmt:kev:mtx:patent patent]. It would be possible to simply provide a standard XHTML bundling for these keys as a microformat.&lt;br /&gt;
&lt;br /&gt;
=== Example ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;openurl-journal&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;aulast&amp;quot;&amp;gt;Berners-Lee&amp;lt;/span&amp;gt;, &lt;br /&gt;
   &amp;lt;span class=&amp;quot;aufirst&amp;quot;&amp;gt;Tim&amp;lt;/a&amp;gt;; Hendler, James; Lassila, Ora.&amp;lt;/span&amp;gt;&lt;br /&gt;
   &amp;quot;&amp;lt;span class=&amp;quot;atitle&amp;quot;&amp;gt;The Semantic Web&amp;lt;/span&amp;gt;&amp;quot;. &lt;br /&gt;
   &amp;lt;span class=&amp;quot;jtitle&amp;quot;&amp;gt;Scientific American&amp;lt;/span&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;volume&amp;quot;&amp;gt;284&amp;lt;/span&amp;gt;(&amp;lt;span class=&amp;quot;issue&amp;quot;&amp;gt;5&amp;lt;/span&amp;gt;), pp.&lt;br /&gt;
   pp. &amp;lt;span class=&amp;quot;pages&amp;quot;&amp;gt;34-43&amp;lt;/span&amp;gt;. &lt;br /&gt;
   &amp;lt;span class=&amp;quot;issn&amp;quot;&amp;gt;0036-8733&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using OpenURL in this way would enable third party applications that could, say grab citation metadata from a blog, and without much work fire it off at your university's or public libraries openurl resolver to see if the article is available via a licensed databases. The benefits [http://www.infotoday.com/newsbreaks/nb050801-1.shtml have] [http://www.ariadne.ac.uk/issue43/chudnov/ been] [http://www.wallandbinkley.com/quaedam/?p=30 noted] [http://hublog.hubmed.org/archives/001163.html elsewhere].&lt;br /&gt;
&lt;br /&gt;
== The OpenURL Briefly Explained ==&lt;br /&gt;
&lt;br /&gt;
An OpenURL consists of two independent parts:  the ContextObject (or the bibliographic metadata surrounding a citation) and the location of resolver to parse the metadata and present contextual services based on said metadata.  The problem is that the term &amp;quot;OpenURL&amp;quot; is also used as a catch-all for all of the independent parts and how they work.  This is mainly because it's a catchier term than &amp;quot;Z39.88&amp;quot;, which is the [http://www.niso.org/standards/standard_detail.cfm?std_id=783 NISO standard all this is based upon].&lt;br /&gt;
&lt;br /&gt;
The most common representation of the OpenURL ContextObject is seen as arguments in a URL string (which is referred to as &amp;quot;San Antonio Profile 1&amp;quot; -- more commonly SAP1 -- and is represented in Key Encoded Values -- KEVs).  This &amp;quot;representation&amp;quot; is independent of the ContextObject (from here on known as CO) itself and is only intended to permit the CO to be transmitted via an HTTP GET request.&lt;br /&gt;
&lt;br /&gt;
There is also SAP2, which is an XML representation of the CO (see:  [http://alcme.oclc.org/openurl/servlet/OAIHandler?verb=GetRecord&amp;amp;metadataPrefix=oai_dc&amp;amp;identifier=info:ofi/fmt:xml:xsd:ctx here]  for more information) and is a much more human readable format.  This still falls outside the scope of microformats, but makes the point that encoding has nothing to do with the CO itself.  They are just agreed upon means of conveying the CO to enable machines act upon them consistently.&lt;br /&gt;
&lt;br /&gt;
The ContextObject could be conveyed just as easily in XHTML using attributes, as long as the terms follow the vocabulary defined in the OpenURL framework.  The important thing to focus on here is the ContextObject -- the address of the link resolver ''is'' institution-specific and should be handled by a user's (or machine's) activating agent.&lt;br /&gt;
&lt;br /&gt;
However, the link resolver is still a very important component to this whole process.  Getting users &amp;quot;appropriate copy&amp;quot; is a very real (and very difficult) problem that libraries are trying to solve.  Link resolvers are a pretty efficient means of overcoming this hurdle, so it would make sense to mark up bibiographic citations in a way that link resolvers can easily parse.&lt;br /&gt;
&lt;br /&gt;
== Z39.80 ==&lt;br /&gt;
I'm not sure the best place for a guide to Z39.80 so please add links as you see fit:&lt;br /&gt;
&lt;br /&gt;
[http://www.niso.org/standards/resources/drft4rev.html http://www.niso.org/standards/resources/drft4rev.html]&lt;br /&gt;
&lt;br /&gt;
== DocBook ==&lt;br /&gt;
&lt;br /&gt;
A subset of the DocBook vocabulary is dedicated to representing a bibliography: http://www.docbook.org/tdg/en/html/bibliography.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE bibliography PUBLIC &amp;quot;-//OASIS//DTD DocBook XML V4.1.2//EN&amp;quot;&lt;br /&gt;
          &amp;quot;http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;bibliography&amp;gt;&lt;br /&gt;
  &amp;lt;title&amp;gt;Languages and Semantics&amp;lt;/title&amp;gt;&lt;br /&gt;
  &amp;lt;bibliodiv&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt;Books&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;biblioentry&amp;gt;&lt;br /&gt;
      &amp;lt;title&amp;gt;Course in General Linguistics&amp;lt;/title&amp;gt;&lt;br /&gt;
      &amp;lt;abbrev&amp;gt;deSaussure59&amp;lt;/abbrev&amp;gt;&lt;br /&gt;
      &amp;lt;author&amp;gt;&amp;lt;firstname&amp;gt;Ferdinand&amp;lt;/firstname&amp;gt;&amp;lt;surname&amp;gt;de Saussure&amp;lt;/surname&amp;gt;&amp;lt;/author&amp;gt;&lt;br /&gt;
      &amp;lt;editor&amp;gt;&amp;lt;firstname&amp;gt;Charles&amp;lt;/firstname&amp;gt;&amp;lt;surname&amp;gt;Bally&amp;lt;/surname&amp;gt;&amp;lt;/editor&amp;gt;&lt;br /&gt;
      &amp;lt;editor&amp;gt;&amp;lt;firstname&amp;gt;Albert&amp;lt;/firstname&amp;gt;&amp;lt;surname&amp;gt;Sechehaye&amp;lt;/surname&amp;gt;&amp;lt;/editor&amp;gt;&lt;br /&gt;
      &amp;lt;othercredit role=&amp;quot;translator&amp;quot;&amp;gt;&amp;lt;firstname&amp;gt;Wade&amp;lt;/firstname&amp;gt;&amp;lt;surname&amp;gt;Baskin&amp;lt;/surname&amp;gt;&amp;lt;/othercredit&amp;gt;&lt;br /&gt;
      &amp;lt;copyright&amp;gt;&lt;br /&gt;
        &amp;lt;year&amp;gt;1959&amp;lt;/year&amp;gt;&lt;br /&gt;
        &amp;lt;holder&amp;gt;The Philosophical Library Inc.&amp;lt;/holder&amp;gt;&lt;br /&gt;
      &amp;lt;/copyright&amp;gt;&lt;br /&gt;
      &amp;lt;isbn&amp;gt;07-016524-6&amp;lt;/isbn&amp;gt;&lt;br /&gt;
      &amp;lt;publisher&amp;gt;&lt;br /&gt;
        &amp;lt;publishername&amp;gt;McGraw-Hill Book Company&amp;lt;/publishername&amp;gt;&lt;br /&gt;
      &amp;lt;/publisher&amp;gt;  &lt;br /&gt;
    &amp;lt;/biblioentry&amp;gt;&lt;br /&gt;
  &amp;lt;/bibliodiv&amp;gt;&lt;br /&gt;
&amp;lt;/bibliography&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* publisher&lt;br /&gt;
* copyright&lt;br /&gt;
* identifier (ISBN)&lt;br /&gt;
* title&lt;br /&gt;
* author/editor/other credit/&lt;br /&gt;
* type (book)&lt;br /&gt;
&lt;br /&gt;
== Ann Arbor District Library XML feed ==&lt;br /&gt;
&lt;br /&gt;
Here's a record in XML format from their project to simplify&lt;br /&gt;
access to the catalog.  More discussion on [http://www.blyberg.net John Blyberg's blog].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;p:Record&amp;gt;&lt;br /&gt;
  &amp;lt;callnum&amp;gt;823 Bu&amp;lt;/callnum&amp;gt;&lt;br /&gt;
  &amp;lt;author&amp;gt;Burkart, Gina, 1971-&amp;lt;/author&amp;gt;&lt;br /&gt;
  &amp;lt;fulltitle&amp;gt;A parent's guide to Harry Potter / Gina Burkart&amp;lt;/fulltitle&amp;gt;&lt;br /&gt;
  &amp;lt;title&amp;gt;A parent's guide to Harry Potter &amp;lt;/title&amp;gt;&lt;br /&gt;
  &amp;lt;pubinfo&amp;gt;Downers Grove, Ill. : InterVarsity Press, c2005&amp;lt;/pubinfo&amp;gt;&lt;br /&gt;
  &amp;lt;desc&amp;gt;112 p&amp;lt;/desc&amp;gt;&lt;br /&gt;
  &amp;lt;bibliography&amp;gt;Includes bibliographical references&amp;lt;/bibliography&amp;gt;&lt;br /&gt;
  &amp;lt;contents&amp;gt;&lt;br /&gt;
    The Harry hype -- More than a story -- The modern fairy tale -- Discussing fantasy with children --&lt;br /&gt;
    Morals, not magic -- The real issues in Harry Potter -- Dealing with traumatic experiences -- Facing &lt;br /&gt;
    fears -- Battling bullies -- Delving into diversity -- Hiding hurts -- Letting go of anger -- Getting &lt;br /&gt;
    help -- Choosing good over evil -- The power of love -- Facing spiritual battles&lt;br /&gt;
  &amp;lt;/contents&amp;gt;&lt;br /&gt;
  &amp;lt;isbn&amp;gt;0830832882&amp;lt;/isbn&amp;gt;&lt;br /&gt;
  &amp;lt;price&amp;gt;$11.00&amp;lt;/price&amp;gt;&lt;br /&gt;
  &amp;lt;lang&amp;gt;eng&amp;lt;/lang&amp;gt;&lt;br /&gt;
  &amp;lt;copies&amp;gt;0&amp;lt;/copies&amp;gt;&lt;br /&gt;
  &amp;lt;catdate&amp;gt;08-16-2005&amp;lt;/catdate&amp;gt;&lt;br /&gt;
  &amp;lt;mattype&amp;gt;a&amp;lt;/mattype&amp;gt;&lt;br /&gt;
  &amp;lt;avail&amp;gt;No copies available&amp;lt;/avail&amp;gt;&lt;br /&gt;
  &amp;lt;recordlink xlink:href=&amp;quot;http://www.aadl.org/cat/seek/record=1249810&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/p:Record&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* url&lt;br /&gt;
* availablity&lt;br /&gt;
* identifier (ISBN/call number)&lt;br /&gt;
* author&lt;br /&gt;
* title&lt;br /&gt;
* publisher&lt;br /&gt;
* pages&lt;br /&gt;
* description/contents&lt;br /&gt;
&lt;br /&gt;
== SimpleDC supported by the zoom toolkit ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;dc xmlns=&amp;quot;http/www.loc.gov/zing/srw/dcschema/v1.0/&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;title&amp;gt;Kantor Salomon Sulzer und seine Zeit : eine Dokumentation /&amp;lt;/title&amp;gt;&lt;br /&gt;
 &amp;lt;creator&amp;gt;Avenary, Hanoch.&amp;lt;/creator&amp;gt;&lt;br /&gt;
 &amp;lt;creator&amp;gt;Pass, Walter.&amp;lt;/creator&amp;gt;&lt;br /&gt;
 &amp;lt;creator&amp;gt;Vielmetti, Nikolaus.&amp;lt;/creator&amp;gt;&lt;br /&gt;
 &amp;lt;creator&amp;gt;Adler, Israel, (1925-)&amp;lt;/creator&amp;gt;&lt;br /&gt;
 &amp;lt;subject&amp;gt;Sulzer, Salomon, -- 1804-1890.&amp;lt;/subject&amp;gt;&lt;br /&gt;
 &amp;lt;subject&amp;gt;Jewish composers -- Austria -- Biography.&amp;lt;/subject&amp;gt;&lt;br /&gt;
 &amp;lt;subject&amp;gt;Cantors, Jewish -- Biography.&amp;lt;/subject&amp;gt;&lt;br /&gt;
 &amp;lt;date&amp;gt;1985&amp;lt;/date&amp;gt;&lt;br /&gt;
 &amp;lt;publisher&amp;gt;Sigmaringen : Jan Thorbecke Verlag&amp;lt;/publisher&amp;gt;&lt;br /&gt;
 &amp;lt;identifier&amp;gt;3799540636&amp;lt;/identifier&amp;gt;&lt;br /&gt;
 &amp;lt;description&amp;gt;300 p., [12] p. of plates : ill., music, ports. ; 24 cm.&amp;lt;/description&amp;gt;&lt;br /&gt;
&amp;lt;/dc&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
this is the output of marc.toSimpleDC()&lt;br /&gt;
&lt;br /&gt;
* title&lt;br /&gt;
* creator (author)&lt;br /&gt;
* subjects&lt;br /&gt;
* date&lt;br /&gt;
* publisher&lt;br /&gt;
* identifier&lt;br /&gt;
* description&lt;br /&gt;
&lt;br /&gt;
(NOTE: this schema is from the example, not the source schema)&lt;br /&gt;
&lt;br /&gt;
== SRU from the Library of Congress ==&lt;br /&gt;
&lt;br /&gt;
http://z3950.loc.gov:7090/voyager?version=1.1&amp;amp;operation=searchRetrieve&amp;amp;query=dinosaur&amp;amp;maximumRecords=1&amp;amp;recordSchema=dc&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;zs:searchRetrieveResponse xmlns:zs=&amp;quot;http://www.loc.gov/zing/srw/&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;zs:version&amp;gt;1.1&amp;lt;/zs:version&amp;gt;&lt;br /&gt;
  &amp;lt;zs:numberOfRecords&amp;gt;1701&amp;lt;/zs:numberOfRecords&amp;gt;&lt;br /&gt;
  &amp;lt;zs:records&amp;gt;&lt;br /&gt;
    &amp;lt;zs:record&amp;gt;&lt;br /&gt;
      &amp;lt;zs:recordSchema&amp;gt;info:srw/schema/1/dc-v1.1&amp;lt;/zs:recordSchema&amp;gt;&lt;br /&gt;
      &amp;lt;zs:recordPacking&amp;gt;xml&amp;lt;/zs:recordPacking&amp;gt;&lt;br /&gt;
      &amp;lt;zs:recordData&amp;gt;&lt;br /&gt;
        &amp;lt;srw_dc:dc xmlns:srw_dc=&amp;quot;info:srw/schema/1/dc-schema&amp;quot; &lt;br /&gt;
             xmlns:xsi=&amp;quot;http://www.w3.org/2001/XMLSchema-instance&amp;quot; &lt;br /&gt;
             xmlns=&amp;quot;http://purl.org/dc/elements/1.1/&amp;quot; &lt;br /&gt;
             xsi:schemaLocation=&amp;quot;info:srw/schema/1/dc-schema http://www.loc.gov/z3950/agency/zing/srw/dc-schema.xsd&amp;quot;&amp;gt;&lt;br /&gt;
          &amp;lt;title&amp;gt;3-D dinosaur adventure [computer file].&amp;lt;/title&amp;gt;&lt;br /&gt;
          &amp;lt;creator&amp;gt;Knowledge Adventure, Inc.&amp;lt;/creator&amp;gt;&lt;br /&gt;
          &amp;lt;type&amp;gt;software, multimedia&amp;lt;/type&amp;gt;&lt;br /&gt;
          &amp;lt;publisher&amp;gt;Glendale, CA : Knowledge Adventure,&amp;lt;/publisher&amp;gt;&lt;br /&gt;
&lt;br /&gt;
          &amp;lt;date&amp;gt;c1995.&amp;lt;/date&amp;gt;&lt;br /&gt;
          &amp;lt;language&amp;gt;eng&amp;lt;/language&amp;gt;&lt;br /&gt;
          &amp;lt;description&amp;gt;Employs a dinosaur theme-park setting to introduce users to Triassic, Jurassic, and &lt;br /&gt;
            Cretaceous periods. Features hypertext dinosaur encyclopedia covering 150 million years of &lt;br /&gt;
            paleontology. Includes animated video simulations, three-dimensional dinosaur museum, narration,&lt;br /&gt;
            games, activities, and color illustrations.&amp;lt;/description&amp;gt;&lt;br /&gt;
          &amp;lt;description&amp;gt;Ages 5 to 10.&amp;lt;/description&amp;gt;&lt;br /&gt;
          &amp;lt;description&amp;gt;System requirements for PC: 486SX/25MHz processor or higher; 8MB RAM; Windows 3.1, &lt;br /&gt;
            3.11, or 95; SVGA 256-color graphics adapter; hard drive with 5MB free space; double-speed CD-ROM&lt;br /&gt;
            drive; MPC-compatible sound card; mouse.&amp;lt;/description&amp;gt;&lt;br /&gt;
          &amp;lt;description&amp;gt;System requirements for Macintosh: 68040 or Power PC processor; 8MB RAM; System 7.0 or&lt;br /&gt;
            higher; 256-color graphics capability; thirteen-inch color monitor or larger; hard drive with 4MB&lt;br /&gt;
            free space; double-speed CD-ROM drive.&amp;lt;/description&amp;gt;&lt;br /&gt;
            &lt;br /&gt;
          &amp;lt;description&amp;gt;Ages 5 to 10.&amp;lt;/description&amp;gt;&lt;br /&gt;
          &amp;lt;description&amp;gt;Employs a dinosaur theme-park setting to introduce users to Triassic, Jurassic, and &lt;br /&gt;
            Cretaceous periods. Features hypertext dinosaur encyclopedia covering 150 million years of paleontology.&lt;br /&gt;
            Includes animated video simulations, three-dimensional dinosaur museum, narration, games, activities, &lt;br /&gt;
            and color illustrations.&amp;lt;/description&amp;gt;&lt;br /&gt;
          &amp;lt;subject&amp;gt;Dinosaurs--Juvenile software.&amp;lt;/subject&amp;gt;&lt;br /&gt;
          &amp;lt;subject&amp;gt;Dinosaurs.&amp;lt;/subject&amp;gt;&lt;br /&gt;
          &amp;lt;identifier&amp;gt;URN:ISBN:1569972133&amp;lt;/identifier&amp;gt;&lt;br /&gt;
        &amp;lt;/srw_dc:dc&amp;gt;&lt;br /&gt;
      &amp;lt;/zs:recordData&amp;gt;&lt;br /&gt;
      &amp;lt;zs:recordPosition&amp;gt;1&amp;lt;/zs:recordPosition&amp;gt;&lt;br /&gt;
    &amp;lt;/zs:record&amp;gt;&lt;br /&gt;
  &amp;lt;/zs:records&amp;gt;&lt;br /&gt;
&amp;lt;/zs:searchRetrieveResponse&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
NOTE: this is just Dublin Core data in a special LOC envelope&lt;br /&gt;
&lt;br /&gt;
== University of Bath reference type ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
		&amp;lt;reference&amp;gt;&lt;br /&gt;
			&amp;lt;authors&amp;gt;&lt;br /&gt;
				&amp;lt;author&amp;gt;&lt;br /&gt;
					&amp;lt;forename&amp;gt;E&amp;lt;/forename&amp;gt;&lt;br /&gt;
					&amp;lt;forename&amp;gt;M&amp;lt;/forename&amp;gt;&lt;br /&gt;
					&amp;lt;surname&amp;gt;Phillips&amp;lt;/surname&amp;gt;&lt;br /&gt;
				&amp;lt;/author&amp;gt;&lt;br /&gt;
				&amp;lt;author&amp;gt;&lt;br /&gt;
					&amp;lt;forename&amp;gt;D&amp;lt;/forename&amp;gt;&lt;br /&gt;
					&amp;lt;forename&amp;gt;S&amp;lt;/forename&amp;gt;&lt;br /&gt;
					&amp;lt;surname&amp;gt;Pugh&amp;lt;/surname&amp;gt;&lt;br /&gt;
				&amp;lt;/author&amp;gt;&lt;br /&gt;
			&amp;lt;/authors&amp;gt;&lt;br /&gt;
			&amp;lt;date&amp;gt;1994&amp;lt;/date&amp;gt;&lt;br /&gt;
			&amp;lt;entity&amp;gt;&lt;br /&gt;
				&amp;lt;book title=&amp;quot;How to get a PhD:  A handbook for students and their supervisors&amp;quot;&amp;gt;&lt;br /&gt;
					&amp;lt;location&amp;gt;&lt;br /&gt;
						&amp;lt;placeofpublication&amp;gt;Buckinghamshire&amp;lt;/placeofpublication&amp;gt;&lt;br /&gt;
						&amp;lt;publisher&amp;gt;Open University&amp;lt;/publisher&amp;gt;&lt;br /&gt;
					&amp;lt;/location&amp;gt;&lt;br /&gt;
				&amp;lt;/book&amp;gt;&lt;br /&gt;
			&amp;lt;/entity&amp;gt;&lt;br /&gt;
		&amp;lt;/reference&amp;gt;&lt;br /&gt;
&lt;br /&gt;
		&amp;lt;reference&amp;gt;&lt;br /&gt;
			&amp;lt;authors&amp;gt;&lt;br /&gt;
				&amp;lt;author&amp;gt;&lt;br /&gt;
					&amp;lt;forename&amp;gt;Michael&amp;lt;/forename&amp;gt;&lt;br /&gt;
					&amp;lt;surname&amp;gt;Fumento&amp;lt;/surname&amp;gt;&lt;br /&gt;
				&amp;lt;/author&amp;gt;&lt;br /&gt;
			&amp;lt;/authors&amp;gt;&lt;br /&gt;
			&amp;lt;date&amp;gt;1996&amp;lt;/date&amp;gt;&lt;br /&gt;
			&amp;lt;entity&amp;gt;&lt;br /&gt;
				&amp;lt;website pagetitle=&amp;quot;Radon&amp;amp;apos;s Real Threat is to the EPA&amp;quot; &lt;br /&gt;
uri=&amp;quot;http://www.consumeralert.org/fumento/radon1.htm&amp;quot;/&amp;gt;&lt;br /&gt;
			&amp;lt;/entity&amp;gt;&lt;br /&gt;
			&amp;lt;frdescription&amp;gt;an article by a prolific newspaper columnist in the USA - &lt;br /&gt;
quotes empirical scientific research showing no provable link between radon in homes and elevated &lt;br /&gt;
cases of lung cancer&amp;lt;/frdescription&amp;gt;&lt;br /&gt;
		&amp;lt;/reference&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[http://www.bath.ac.uk/schemas/screenshots/referencetype.png Schema extract]&lt;br /&gt;
&lt;br /&gt;
* author&lt;br /&gt;
* date&lt;br /&gt;
* url&lt;br /&gt;
* description&lt;br /&gt;
* type (book/journal/conference)&lt;br /&gt;
* title&lt;br /&gt;
* artile&lt;br /&gt;
* volume&lt;br /&gt;
* issue&lt;br /&gt;
* chapter&lt;br /&gt;
* pages&lt;br /&gt;
* publisher&lt;br /&gt;
** publisher data (address, city, ...)&lt;br /&gt;
&lt;br /&gt;
== Implied Schema ==&lt;br /&gt;
This is the start of the short list of common properties across documented formats. Once this is finished, there will be a union of Implied schemas between EXAMPLES and IMPLEMENTATIONS and we will see what that looks like. (This currently only covers a few of the formats listed, some documented formats still need to be explored)&lt;br /&gt;
&lt;br /&gt;
* creator (author, editor, translator, contributor) - this can be handled with hCard, but will need an additional property to refine what &amp;quot;creator&amp;quot; means&lt;br /&gt;
* publisher (this can also be handled with hCard)&lt;br /&gt;
* subject/topics/keywords/categories/genre (there is a rel=&amp;quot;tag&amp;quot; microformat)&lt;br /&gt;
* Description (abstract, note, tableOfContents)&lt;br /&gt;
* typeOfResource/format&lt;br /&gt;
&lt;br /&gt;
common location information&lt;br /&gt;
* volume&lt;br /&gt;
* issue&lt;br /&gt;
* page&lt;br /&gt;
* edition&lt;br /&gt;
&lt;br /&gt;
Date Fields&lt;br /&gt;
* Date Published (some formats have YEAR/MONTH sperately)&lt;br /&gt;
* Date accessed (see [http://www.columbia.edu/cu/cup/cgos/basic.html here] for examples)&lt;br /&gt;
&lt;br /&gt;
Again, I'll emphasize: &amp;quot;date published&amp;quot; is problematic. If one needs specificity, then better to have the following list of date classes: date (the generic), issued (braoder than published), copyright (often not the same as issuance date), accessed. -- bruce&lt;br /&gt;
&lt;br /&gt;
Other fields&lt;br /&gt;
* Copyright/usage&lt;br /&gt;
* audience&lt;br /&gt;
&lt;br /&gt;
* identifier (ISBN, ISSN, id, internal only, other)&lt;br /&gt;
* language (this can be handled by the xml:lang attribute native to HTML)&lt;br /&gt;
&lt;br /&gt;
== Types and Roles ==&lt;br /&gt;
(Section is informative only as a place to capture various parts of publication citations.)&lt;br /&gt;
&lt;br /&gt;
There are many different types of publications and this information should be captured in the citation. Possible types include:&lt;br /&gt;
* Novel/fiction (specify type -- literature, SF, romance, etc.?)&lt;br /&gt;
* Non-fiction&lt;br /&gt;
* Poem&lt;br /&gt;
* Play&lt;br /&gt;
* Magazine&lt;br /&gt;
* Reference (separate out encyclopedia, dictionary, almanac, etc.?)&lt;br /&gt;
* Journal&lt;br /&gt;
* Article within a journal&lt;br /&gt;
* Chapter within a book&lt;br /&gt;
* Dissertation&lt;br /&gt;
* Web Site&lt;br /&gt;
* Page within a web site&lt;br /&gt;
* Music Recording&lt;br /&gt;
* Video Recording&lt;br /&gt;
* Interview&lt;br /&gt;
* Physical object (Statue, Painting, etc.)&lt;br /&gt;
* ??&lt;br /&gt;
&lt;br /&gt;
Question: &lt;br /&gt;
Certain works have specific types of citations, for example, the Bible--and, I assume, other religious works--have very specific citation formats with different relevant information (chapter/verse) than others, as do the works of Shakespeare. Should these be considered separate types/roles?&lt;br /&gt;
&lt;br /&gt;
A: I think in terms of types, we should at least note the items (chapter, verse, etc). How they get dealt with is still way up in the air. - [[User:Tim White|Tim White]]&lt;br /&gt;
&lt;br /&gt;
Likewise, there are several different roles associated with publications -- author, co-author, editor, translator, etc. Should these be captured under a master &amp;quot;role&amp;quot; or treated as individual elements?&lt;br /&gt;
&lt;br /&gt;
A: Good question. I think there is an important distinction, but whether we follow a design pattern of &amp;quot;role-*&amp;quot; (or more likely &amp;quot;author-*) or some other pattern hasn't been discussed yet. - Tim&lt;br /&gt;
&lt;br /&gt;
== Biblio RDF Class Schema ==&lt;br /&gt;
Regading the issue of types notes above, the [http://vocab.org/biblio/schema biblio schema] provides a comprehensive set of classes to describe citation metadata. It might prove useful as a guide for a micro-format. The primary classes are Agent, Reference, Collection, and Event. An &amp;quot;Article&amp;quot;, then, would be a subclass of &amp;quot;Part&amp;quot;, which in turn is a subclass of Reference. Likewise, a &amp;quot;Journal&amp;quot; is a subclass of a &amp;quot;Periodical,&amp;quot; which in turn is a subclass of &amp;quot;Collection.&amp;quot; An article would typically be linked to a journal through a dcterms:isPartOf relation.&lt;br /&gt;
&lt;br /&gt;
== ISBN Uniform Resource Names ==&lt;br /&gt;
&lt;br /&gt;
[http://www.faqs.org/rfcs/rfc3187.html RFC3187] defines an ISBN namespace for Uniform Resource Names (URNs).&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&lt;br /&gt;
URN:ISBN:0-395-36341-1&lt;br /&gt;
&lt;br /&gt;
I'm not sure if any browser uses this data, but it might have an application in citations describing registered materials with an ISBN.&lt;br /&gt;
&lt;br /&gt;
There is also a URN namespace for ISSN (International Standard Serial Number), which identifies serials/periodicals e.g. [http://alistapart.com A List Apart].  It is defined in [http://www.faqs.org/rfcs/rfc3044.html RFC3044].  Additional URN namespaces are listed at http://www.iana.org/assignments/urn-namespaces.&lt;br /&gt;
&lt;br /&gt;
== You should know == &lt;br /&gt;
* There are more then 1.300 citation ''styles'' in EndNote 9.&lt;br /&gt;
* Libraries have developed formats and rules for publications since more than 100 years. There are millions of records in library catalougues. You should '''at least''' be familiar with AACR and FRBR. There '''already are''' effords to create a new &amp;quot;microformat&amp;quot; called ''Resource Description and Access'' (RDA) [http://www.collectionscanada.ca/jsc/rdaprospectus.html]. Why don't you try to work with the professionals instead of amateurishly trying to reinvent the wheel and create yet another incompatible format? -- [[User:JakobVoss|JakobVoss]] 01:39, 5 Jun 2006 (PDT)&lt;br /&gt;
** I agree that the people involved in developing this microformat (including me) ought to be aware of these efforts (in particular FRBR), but I also think your argument is hopelessly naive and pretentious. The professionals you refer to are in fact library professionals, with their own bizarre traditios and unique information needs. Those are different than the professional scholars for whom citations are critical (me), or to the professional web developers who might want to implement these formats. What I do think is important is for us to understand the different design traditions, and their trade-offs, rather than to blindly create a microformat based on one of them -- Bruce (author of citeproc [http://xbiblio.sourceforge.net/citeproc] and csl [http://xbiblio.sourceforge.net/csl]).&lt;br /&gt;
&lt;br /&gt;
Nice to meet you, Bruce! Maybe I'm naive but it still think that there is a way to combine the best of both worlds: scholars and library professionals. Both have developed bizarre traditions and it would be a pitty to create a new bizarre microformat that is not based on both of them. Thanks to your links to xbiblio. I a stumbled upon it a while ago but have to look at it deeper. -- [[User:JakobVoss|JakobVoss]] 11:48, 19 Jul 2006 (PDT)&lt;br /&gt;
&lt;br /&gt;
== OpenDocument ==&lt;br /&gt;
The OpenDocument Format also includes parts for citation and bibliography. See also the [http://bibliographic.openoffice.org/ OpenOffice Bibliographic project]. -- [[User:JakobVoss|JakobVoss]] 11:55, 19 Jul 2006 (PDT)&lt;/div&gt;</summary>
		<author><name>TerrellRussell</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=citation-formats&amp;diff=8020</id>
		<title>citation-formats</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=citation-formats&amp;diff=8020"/>
		<updated>2006-08-05T22:08:52Z</updated>

		<summary type="html">&lt;p&gt;TerrellRussell: /* Comparison chart */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Citation Formats =&lt;br /&gt;
&lt;br /&gt;
This page will display several different types of citation format types. The idea is to compare what properties are common amonst all of the formats and which ones should be blended into this microformat.&lt;br /&gt;
&lt;br /&gt;
See also:&lt;br /&gt;
* [[citation]]&lt;br /&gt;
* [[citation-brainstorming]]&lt;br /&gt;
* [[citation-examples]]&lt;br /&gt;
* [[citation-faq]]&lt;br /&gt;
&lt;br /&gt;
== Comparison chart ==&lt;br /&gt;
The following chart maps the terms from one implementation to another. This is important because if all the properties are introduced to this microformat, then it's possible to map them to a number of different formats. The table currently only uses Dublin Core, MODS, and bibTeX. Each column has all the properties and their equivalent in each format. If there is no corresponding property, the cell is grey. At the bottom of the list are the unique terms to each format. Dublin Core has basic terms and terms that extend the basic ones. If the property is an extension of a basic term it is in ()'s. MODS uses XML, so any sub-properties are listed in their tree form, property/sub-property.&lt;br /&gt;
&lt;br /&gt;
THIS IS NOT DEFINITIVE, any errors should be corrected. More formats will be added to the list as they are mapped.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;th&amp;gt;Dublin Core&amp;lt;/th&amp;gt;&lt;br /&gt;
		&amp;lt;th&amp;gt;MODS&amp;lt;/th&amp;gt;&lt;br /&gt;
		&amp;lt;th&amp;gt;bibTeX&amp;lt;/th&amp;gt;&lt;br /&gt;
		&amp;lt;th&amp;gt;Z39.80&amp;lt;/th&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Title (alternative)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;titleInfo/title&amp;lt;br/&amp;gt;titleInfo/PartNum&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;booktitle&amp;lt;br/&amp;gt;title&amp;lt;br/&amp;gt;chapter&amp;lt;br/&amp;gt;number&amp;lt;br/&amp;gt;pages&amp;lt;br/&amp;gt;volume&amp;lt;br/&amp;gt;series&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Analytic Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Collective or Series Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Monographic Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Work Fraction Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Location of Conference&amp;lt;br/&amp;gt;&lt;br /&gt;
Main Entry&amp;lt;br/&amp;gt;&lt;br /&gt;
Name of Conference&amp;lt;br/&amp;gt;&lt;br /&gt;
Number of Meeting&amp;lt;br/&amp;gt;&lt;br /&gt;
Other Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Parallel Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Title Abbriviation&amp;lt;br/&amp;gt;&lt;br /&gt;
Title of Conference Proceedings&amp;lt;br/&amp;gt;&lt;br /&gt;
Translated Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Uniform Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Abbriviated Translated Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Symposium or Session Title&amp;lt;br/&amp;gt;&lt;br /&gt;
Collective or Series Edition&amp;lt;br/&amp;gt;&lt;br /&gt;
Video/Film Edition&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;creator&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;name/namePart&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;author&amp;lt;br/&amp;gt;creator&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Author, Primary&amp;lt;br/&amp;gt;&lt;br /&gt;
Corporate Author, Primary&amp;lt;br/&amp;gt;&lt;br /&gt;
Abstract Author&amp;lt;br/&amp;gt;&lt;br /&gt;
Authorship Statement&amp;lt;br/&amp;gt;&lt;br /&gt;
Acknowledged Supporters&amp;lt;br/&amp;gt;&lt;br /&gt;
Assignee for Patents&amp;lt;br/&amp;gt;&lt;br /&gt;
Chairperson of Conference&amp;lt;br/&amp;gt;&lt;br /&gt;
Director of AV Program&amp;lt;br/&amp;gt;&lt;br /&gt;
Other Author&amp;lt;br/&amp;gt;&lt;br /&gt;
Reviewed Book Author&amp;lt;br/&amp;gt;&lt;br /&gt;
Studio&amp;lt;br/&amp;gt;&lt;br /&gt;
Sponsor of Conference&amp;lt;br/&amp;gt;&lt;br /&gt;
Staff/Cast&amp;lt;br/&amp;gt;&lt;br /&gt;
Symposium Chairperson&amp;lt;br/&amp;gt;&lt;br /&gt;
Author Address or Affiliation&amp;lt;br/&amp;gt;&lt;br /&gt;
Author Country&amp;lt;br/&amp;gt;&lt;br /&gt;
Electronic Address of Author&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;subject&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;subject/topic&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;keywords&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Description (abstract | tableOfContents)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;abstract&amp;lt;br/&amp;gt;note&amp;lt;br/&amp;gt;tableOfContents&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;abstract&amp;lt;br/&amp;gt;annotation&amp;lt;br/&amp;gt;note&amp;lt;br/&amp;gt;contents&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Contributor&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;editor?&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Book/Report/Volume Editor&amp;lt;br/&amp;gt;&lt;br /&gt;
Producer&amp;lt;br/&amp;gt;&lt;br /&gt;
Translator&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Date (available | created | dateAccepted | dateCopyrighted | dateSubmitted | issued | modified | valid)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;originInfo/dateIssued&amp;lt;br/&amp;gt;originInfo/dateCreated&amp;lt;br/&amp;gt;originInfo/dateCaptured&amp;lt;br/&amp;gt;originInfo/dateOther&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;month&amp;lt;br/&amp;gt;year&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Copyright Year&amp;lt;br/&amp;gt;Date-generic&amp;lt;br/&amp;gt;Date of conference&amp;lt;br/&amp;gt;Date of Publication&amp;lt;br/&amp;gt;Date of Update/Revisou/Issuance of Database Record&amp;lt;br/&amp;gt;Former Date&amp;lt;br/&amp;gt;Entry date for Database Record&amp;lt;br/&amp;gt;Database Update&amp;lt;br/&amp;gt;Year of Publication&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Type&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;typeOfResource&amp;lt;br/&amp;gt;genre&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;@class&amp;lt;br/&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Format (extent | medium)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;physicalDescription/internetMediaType&amp;lt;br/&amp;gt;physicalDescription/extent&amp;lt;br/&amp;gt;physicalDescription/form&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;howpublished&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;identifier (bibliographicCitation)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;identifier&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;ISBN&amp;lt;br/&amp;gt;ISSN&amp;lt;br/&amp;gt;LCCN&amp;lt;br/&amp;gt;URL&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;ISBN&amp;lt;br/&amp;gt;Identifier&amp;lt;br/&amp;gt;Report Identfier&amp;lt;br/&amp;gt;ISSN&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Source&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;relatedItem&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#cccccc&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;language&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;language&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;language&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#cccccc&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Relation (...)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;relatedItem/...&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;crossRef&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Coverage (spacial | temporal)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;subject/temporal&amp;lt;br/&amp;gt;subject/geographic&amp;lt;br/&amp;gt;subject/hierarchicalGeographic&amp;lt;br/&amp;gt;subject/cartographics&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#cccccc&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;classifications&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#cccccc&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Rights (accessRights | license)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;accessConditions&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;copyright&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;publisher&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#cccccc&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;publisher&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;Publisher Name&amp;lt;br/&amp;gt;&lt;br /&gt;
Place of Publication&amp;lt;br/&amp;gt;&lt;br /&gt;
Country of Publication&amp;lt;br/&amp;gt;&lt;br /&gt;
Generic Address&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;audience (educationLevel | mediator)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;targetAudience&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#cccccc&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td&amp;gt;needs mapping&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#999999&amp;quot;&amp;gt;accualMethod&amp;lt;br/&amp;gt;accualPeriodicaty&amp;lt;br/&amp;gt;accualPolicy&amp;lt;br/&amp;gt;instrcutionalMethod&amp;lt;br/&amp;gt;provenance&amp;lt;br/&amp;gt;rightsHolder&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#999999&amp;quot;&amp;gt;location&amp;lt;br/&amp;gt;extension&amp;lt;br/&amp;gt;recordInfo&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#999999&amp;quot;&amp;gt;address&amp;lt;br/&amp;gt;afflilication&amp;lt;br/&amp;gt;location&amp;lt;br/&amp;gt;edition&amp;lt;br/&amp;gt;institution&amp;lt;br/&amp;gt;journal&amp;lt;br/&amp;gt;key&amp;lt;br/&amp;gt;mrnumber&amp;lt;br/&amp;gt;organization&amp;lt;br/&amp;gt;price&amp;lt;br/&amp;gt;school&amp;lt;br/&amp;gt;size&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;td bgcolor=&amp;quot;#999999&amp;quot;&amp;gt;(the following need to be mapped to the above rows or left here as other)&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Database Source&amp;lt;br/&amp;gt;&lt;br /&gt;
Databse Record Identifier&amp;lt;br/&amp;gt;&lt;br /&gt;
Database Producer Name&amp;lt;br/&amp;gt;&lt;br /&gt;
Rights Management&amp;lt;br/&amp;gt;&lt;br /&gt;
Subfile&amp;lt;br/&amp;gt;&lt;br /&gt;
Other Source Identifier&amp;lt;br/&amp;gt;&lt;br /&gt;
Vendor Record Identifier&amp;lt;br/&amp;gt;&lt;br /&gt;
Database Vendor Name&amp;lt;br/&amp;gt;&lt;br /&gt;
Column Number&amp;lt;br/&amp;gt;&lt;br /&gt;
Edition&amp;lt;br/&amp;gt;&lt;br /&gt;
Frequency of Publication&amp;lt;br/&amp;gt;&lt;br /&gt;
Internet Location for Document&amp;lt;br/&amp;gt;&lt;br /&gt;
Supplement/Part/Special number identifer&amp;lt;br/&amp;gt;&lt;br /&gt;
Issue Identifier&amp;lt;br/&amp;gt;&lt;br /&gt;
Location in Work&amp;lt;br/&amp;gt;&lt;br /&gt;
Number of the Chapter&amp;lt;br/&amp;gt;&lt;br /&gt;
Number in Series&amp;lt;br/&amp;gt;&lt;br /&gt;
Volume Identifier&amp;lt;br/&amp;gt;&lt;br /&gt;
Section Indentifier&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;/tr&amp;gt;	&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Dublin Core Metadata ==&lt;br /&gt;
[http://dublincore.org/ Dublin Core] metadata uses a small vocabulary to descibe the data.&lt;br /&gt;
* contributor&lt;br /&gt;
* coverage&lt;br /&gt;
* creator&lt;br /&gt;
* date&lt;br /&gt;
* description&lt;br /&gt;
* format&lt;br /&gt;
* identifier&lt;br /&gt;
* language&lt;br /&gt;
* publisher&lt;br /&gt;
* relation&lt;br /&gt;
* rights&lt;br /&gt;
* source&lt;br /&gt;
* subject&lt;br /&gt;
* title&lt;br /&gt;
* type&lt;br /&gt;
&lt;br /&gt;
From those there are specialised types where are just refinments of the previous, for example:&lt;br /&gt;
&lt;br /&gt;
* abstract refines description.&lt;br /&gt;
* accessRights refines rights&lt;br /&gt;
&lt;br /&gt;
[http://dublincore.org/documents/dc-citation-guidelines/ Guidelines for Encoding Bibliographic Citation Information in Dublin Core Metadata]&lt;br /&gt;
&lt;br /&gt;
== MODS (Metadata Object Description Schema) ==&lt;br /&gt;
This is a format developed for the Libray of Congress for a bibliographic element set that may be used for a variety of purposes, and particularly for library applications. &lt;br /&gt;
&lt;br /&gt;
[http://www.loc.gov/standards/mods/ http://www.loc.gov/standards/mods/]&lt;br /&gt;
&lt;br /&gt;
(the schema is very big, once i devote the proper time to review it, i will post more about the structure -brian)&lt;br /&gt;
&lt;br /&gt;
== NLM Journal Publishing DTD ==&lt;br /&gt;
&lt;br /&gt;
[http://dtd.nlm.nih.gov/publishing/tag-library/2.1/n-fv30.html http://dtd.nlm.nih.gov/publishing/tag-library/2.1/n-fv30.html]&lt;br /&gt;
&lt;br /&gt;
The [http://dtd.nlm.nih.gov/publishing/tag-library/ NLM Journal Publishing DTD] defines the schema used for publishing journal articles as XML. The &amp;lt;pre&amp;gt;&amp;lt;citation&amp;gt;&amp;lt;/pre&amp;gt; element can be placed with paragraphs or within a &amp;lt;pre&amp;gt;&amp;lt;ref-list&amp;gt;&amp;lt;/pre&amp;gt; element at the end of the article.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Although the DTD does not enforce it, a citation to a journal article should be tagged with as many as possible of the following, so that PubMed Central, CrossRef, or other matching service can make the citation into a live link:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;source&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;The title of a journal, book, conference proceedings, etc. that is the source of the cited material. (Note: In PubMed Central processing, this is typically the MEDLINE abbreviation of the journal name.)&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;article-title&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Title of the article&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;volume&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Volume of the journal&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;issue&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Issue of the journal&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;fpage&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Page number on which the article starts&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Name of an author or editor&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;year&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Year of publication&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;month&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Month of publication (if present)&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;day&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Date of publication (if present)&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The other elements (described [http://dtd.nlm.nih.gov/publishing/tag-library/2.1/n-fv30.html here]) may be tagged if desired. Use the &amp;lt;source&amp;gt; element for titles of books, conference proceedings, etc.&amp;quot; &lt;br /&gt;
&lt;br /&gt;
== XMLResume ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;!ELEMENT pubs (pub+)&amp;gt;&lt;br /&gt;
&amp;lt;!ENTITY % pubElements &amp;quot;(artTitle|bookTitle|author|date|pubDate|publisher|pageNums|url)&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!ELEMENT pub (para | %pubElements;)*&amp;gt;&lt;br /&gt;
&amp;lt;!ATTLIST pub id ID #IMPLIED&amp;gt;&lt;br /&gt;
&amp;lt;!ELEMENT artTitle (#PCDATA | link)*&amp;gt;&lt;br /&gt;
&amp;lt;!ELEMENT bookTitle (#PCDATA | link)*&amp;gt;&lt;br /&gt;
&amp;lt;!ELEMENT author (#PCDATA)&amp;gt;&lt;br /&gt;
&amp;lt;!ATTLIST author name IDREF #IMPLIED&amp;gt;&lt;br /&gt;
&amp;lt;!ELEMENT pubDate (month?, year)&amp;gt; &amp;lt;!-- Deprecated in 1.4.0. --&amp;gt;&lt;br /&gt;
&amp;lt;!ELEMENT publisher (#PCDATA | link | url)*&amp;gt;&lt;br /&gt;
&amp;lt;!ELEMENT pageNums (#PCDATA)&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* author&lt;br /&gt;
* publication date&lt;br /&gt;
* publisher&lt;br /&gt;
* pages&lt;br /&gt;
* title (article/book)&lt;br /&gt;
* url&lt;br /&gt;
&lt;br /&gt;
== BibTeX ==&lt;br /&gt;
=== Fields Used by Bibtex ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=&amp;quot;1&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;abstract:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;An abstract of the work.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;address:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Publisher's address. For major publishing houses,&lt;br /&gt;
just the city is given. For small publishers, you can help the reader by giving the complete address.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;affiliation:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The author's affiliation.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;annote:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;An annotation. It is not used by he standard bibliography styles, but may be used by others that produce an annotated bibliography.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;author:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The name(s) of the author(s).&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;booktitle:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Title of a book, part of which is being cited. For book entries, use the &amp;lt;strong&amp;gt;title&amp;lt;/strong&amp;gt; field instead.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;chapter:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A chapter (or section) number.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;contents:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A Table of Contents.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;copyright:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Copyright information.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;crossref:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The database key of the entry being cross-referenced.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;edition:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The edition of a book - for example&lt;br /&gt;
        &amp;amp;quot;Second&amp;amp;quot;. Notice that it is in capitals.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;editor:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Name(s) of editor(s). If there is also an author field, then the editor field gives the editor of the book or collection in which the reference appears.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;howpublished:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;How something strange has been published. The first word should be capitalized.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;institution:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The sponsoring institution of a technical report.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;ISBN:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The International Standard Book Number.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;ISSN:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The International Standard Serial Number. Used to&lt;br /&gt;
        identify a journal.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;journal:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A journal name. Abbreviations are provided for many journals.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;key:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Used for alphabetizing and creating a label when the author and editor fields are missing. This field should not be confused with the key that appears at the beginning of the reference.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;keywords:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Key words used for searching or possibly for annotation.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;language:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The language the document is written in.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;LCCN:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The Library of Congress Call Number.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;location:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A location associated with the entry, such as the city in which a conference took place.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;month:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The month in which the work was published or, for an unpublished work, in which it was written.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;mrnumber:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The &amp;lt;em&amp;gt;Mathematical Reviews&amp;lt;/em&amp;gt; number.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;note:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Any additional information that can help the reader. First word should be capitalized.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;number:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The number of a journal, magazine, technical report, or of a work in a series. An issue of a journal or magazine is usually identified by its volume and number; the organization that issues a technical report usually gives it a number; and sometimes books are given numbers in a named series.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;organization:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The organization that sponsors a conference or publishes a manual.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;pages:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;One or more page numbers or ranges of number, such as 37--42, or 7,53,82--94.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;price:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The price of the material.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;publisher:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The publisher's name.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;school:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The name of the school where a thesis was written.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;series:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Then name given a series or set of books. When citing an entire book, the title field gives its title and the optional series field gives the name of a series in which the book was published.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;size:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The physical dimensions of the work.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;title:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The work's title.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;type:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The type of technical report - for example,&lt;br /&gt;
        &amp;amp;quot;Research Note&amp;amp;quot;.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;url:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The WWW Universal Resource Locator that points to the item being referenced. Often used for technical reports to point to the FTP site where it resides.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;volume:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The volume of a journal or multivolume book.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;year:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The year of publication or, for an unpublished work, the year it was written. It should only consist of numerals, such as 1976.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== BibTeX citation Types ===&lt;br /&gt;
A reference can be to any of a variety of types. Following is a list of types. Each one also explains the fields associated with that type. Any fields not listed as required or optional are considered to be ignored.&lt;br /&gt;
&amp;lt;table border=&amp;quot;1&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;article:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;An article from a journal or magazine. Required fields: author, title, journal, year. Optional fields: volume, number, pages, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;book:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A book with an explicit publisher. Required fields: author or editor, title, publisher, year. Optional fields: volume, series, address, edition, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;booklet:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A work that is printed and bound, but without a named publisher or sponsoring institution. Required fields: title. Optional fields: author, howpublished, address, month, year, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;collection:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A collection of works. Same as Proceedings.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;conference:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The same as Inproceedings.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;inbook:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A part of a book, which may be a chapter and/or arange of pages. Required fields: author or editor, title, chapter and/or pages, publisher, year. Optional fields: volumer, series, address, edition, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;incollection:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A part of a book with its own title. Required fields: author, title, booktitle, publisher, year. Optional fields: editor, pages, organization, publisher, address, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;inproceedings:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;An article in a conference proceedings. Required fields: author, title, booktitle, year. Optional fields: editor, pages, organization, publisher, address, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;manual:&amp;amp;nbsp;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Technical documentation. Required fields: title. Optional fields: author, organization, address, edition, month, year, note.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;mastersthesis:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A Master's thesis. Required fields: author, title, school, year. Optional fields: address, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;misc:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;Use this type when nothing else fits. Required fields: none. Optional fields: author, title, howpublished, month, year, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;patent:&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A patent.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;phdthesis:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A Ph.D. thesis. Required fields: author, title, school, year. Optional fields: address, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;proceedings:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;The proceedings of a conference. Required fields: title, year. Optional fields: editor, publisher, organization, address, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;techreport:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A report published by a school or other institution, usually numbered within a series. Required fields: author, title, institution, year. Optional fields: type, number, address, month, note, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;b&amp;gt;unpublished:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;A document with an author and title, but not formally published. Required fields: author, title, note. Optional fields: month, year, key.&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Examples ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
@book{kn:gnus,&lt;br /&gt;
&lt;br /&gt;
AUTHOR = &amp;quot;Donald E. Knudson&amp;quot;,&lt;br /&gt;
TITLE = &amp;quot;1966 World Gnus Almanac&amp;quot;,&lt;br /&gt;
PUBLISHER = {Permafrost Press},&lt;br /&gt;
ADDRESS = {Novosibirsk} }&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;book&amp;quot; id=&amp;quot;kn:gnus&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;author&amp;quot;&amp;gt;Donald E. Knudson&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;title&amp;quot;&amp;gt;1966 World Gnus Almanac&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;publisher&amp;quot;&amp;gt;Permafrost Press&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;address&amp;quot;&amp;gt;Novosibirsk&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
@article{XAi_HSCheng_1994a,&lt;br /&gt;
&lt;br /&gt;
author = &amp;quot;X. Ai and H. S. Cheng&amp;quot;,&lt;br /&gt;
title = &amp;quot;Influence of moving dent on point {EHL} contacts&amp;quot;,&lt;br /&gt;
journal = &amp;quot;Tribol. Trans.&amp;quot;,&lt;br /&gt;
volume = &amp;quot;37&amp;quot;,&lt;br /&gt;
year = &amp;quot;1994&amp;quot;,&lt;br /&gt;
pages = &amp;quot;323--335&amp;quot;,&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;article&amp;quot; id=&amp;quot;XAi_HSCheng_1994a&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;author&amp;quot;&amp;gt;X. Ai and H. S. Cheng&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;title&amp;quot;&amp;gt;Influence of moving dent on point {EHL} contacts&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;journal&amp;quot;&amp;gt;Tribol. Trans.&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;volume&amp;quot;&amp;gt;37&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;year&amp;quot;&amp;gt;1994&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;pages&amp;quot;&amp;gt;323--335&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Bib-enabled Applications===&lt;br /&gt;
&lt;br /&gt;
Reference-management applications that support the bib format.  &amp;lt;strong&amp;gt;This is an incomplete list&amp;lt;/strong&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
====Desktop Applications====&lt;br /&gt;
* [http://www.endnote.com EndNote] (Large market share)&lt;br /&gt;
* [http://bibdesk.sourceforge.net/ BibDesk]&lt;br /&gt;
* [http://www.mackichan.com/index.html?bibdb/default.htm~mainFrame BibDB]&lt;br /&gt;
* [http://sourceforge.net/projects/bib-it/ Bib-it]&lt;br /&gt;
* Large list of other apps at [http://dmoz.org/Computers/Software/Typesetting/TeX/BibTeX/ dmoz] and [http://en.wikipedia.org/wiki/BibTeX#Software Wikipedia]&lt;br /&gt;
&lt;br /&gt;
====Web Applications====&lt;br /&gt;
* [http://www.refworks.com RefWorks] (Large market share)&lt;br /&gt;
* [http://www.citeulike.org/ CiteULike]&lt;br /&gt;
* [http://citeseer.ist.psu.edu/ CiteSeer]&lt;br /&gt;
* [http://www.bibsonomy.org/ BibSonomy]&lt;br /&gt;
* [http://www.connotea.org Connotea]&lt;br /&gt;
* [http://www.2ndminute.org:8080/amatex Amatex - converts Amazon to Bib format]&lt;br /&gt;
* Many others can be found at [http://en.wikipedia.org/wiki/BibTeX#External_links Wikipedia]&lt;br /&gt;
&lt;br /&gt;
====Academic Databases====&lt;br /&gt;
* [http://academic.live.com/ Windows Live Academic Search]&lt;br /&gt;
* [http://portal.acm.org/dl.cfm?dl=ACM ACM Digital Library]&lt;br /&gt;
* [http://www.ncbi.nlm.nih.gov/books/bv.fcgi PubMed] via TexMed&lt;br /&gt;
&lt;br /&gt;
== RIS ==&lt;br /&gt;
&lt;br /&gt;
RIS is similar to BibTeX and is handled by most desktop and web-based bibliography management software.&lt;br /&gt;
&lt;br /&gt;
The specification and field types/tags are described at [http://www.refman.com/support/risformat_intro.asp http://www.refman.com/support/risformat_intro.asp]&lt;br /&gt;
&lt;br /&gt;
In particular, see [http://www.refman.com/support/risformat_reftypes.asp the list of different reference types].&lt;br /&gt;
&lt;br /&gt;
A sample item in RIS format:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
TY  - JOUR&lt;br /&gt;
A1  - Baldwin,S.A.&lt;br /&gt;
A1  - Fugaccia,I.&lt;br /&gt;
A1  - Brown,D.R.&lt;br /&gt;
A1  - Brown,L.V.&lt;br /&gt;
A1  - Scheff,S.W.&lt;br /&gt;
T1  - Blood-brain barrier breach following&lt;br /&gt;
cortical contusion in the rat&lt;br /&gt;
JO  - J.Neurosurg.&lt;br /&gt;
Y1  - 1996&lt;br /&gt;
VL  - 85&lt;br /&gt;
SP  - 476&lt;br /&gt;
EP  - 481&lt;br /&gt;
RP  - Not In File&lt;br /&gt;
KW  - cortical contusion&lt;br /&gt;
KW  - blood-brain barrier&lt;br /&gt;
KW  - horseradish peroxidase&lt;br /&gt;
KW  - head trauma&lt;br /&gt;
KW  - hippocampus&lt;br /&gt;
KW  - rat&lt;br /&gt;
ER  -&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://www-static.cc.gatech.edu/classes/RWL/Projects/citation/Applet/OnlineHelp/refer_doc.html Refer] is a similar, smaller bibliographic format.&lt;br /&gt;
&lt;br /&gt;
* author&lt;br /&gt;
* title&lt;br /&gt;
* type&lt;br /&gt;
* Identifier&lt;br /&gt;
* notes/abstract&lt;br /&gt;
* reprint status&lt;br /&gt;
* keyword&lt;br /&gt;
* volume&lt;br /&gt;
* issue&lt;br /&gt;
* pages&lt;br /&gt;
* year&lt;br /&gt;
* periodical name (where published)&lt;br /&gt;
* publisher&lt;br /&gt;
** publisher city&lt;br /&gt;
** publisher address&lt;br /&gt;
* related links&lt;br /&gt;
* link to PDF&lt;br /&gt;
* availablity&lt;br /&gt;
&lt;br /&gt;
== OpenURL ==&lt;br /&gt;
&lt;br /&gt;
OpenURL aka [http://www.niso.org/standards/standard_detail.cfm?std_id=783 Z39.88] defines a standard way of bundling citation data in a URL. It is widely deployed in academic libraries around the world to provide access to licensed content via link resolvers such as [http://www.exlibrisgroup.com/sfx_openurl.htm SFX]. The Context Object in Span ([http://ocoins.info/ COinS]) community standard represents one way to embed OpenURLs in XHTML without including a resolver target. OpenURL also provides an XML encoding.&lt;br /&gt;
&lt;br /&gt;
Example (from a book review written using the Structured Blogging plugin):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;ISBN&amp;lt;/b&amp;gt;: &amp;lt;span class='Z3988'&lt;br /&gt;
title='ctx_ver=Z39.88-2004&amp;amp;amp;amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;amp;amp;amp;rft.isbn=0679426612'&amp;gt;&lt;br /&gt;
0679426612&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Another example, a journal this time:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;Z3988&amp;quot; title=&amp;quot;ctx_ver=Z39.88-2004&amp;amp;amp;rft_val_fmt=info:ofi/fmt:kev:mtx:journal&amp;amp;amp;rft.issn=1045-4438&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As you can see this isn't very much like semantic XHTML at all. However significant work has gone into defining the set of Key/Encoded Values (KEVs) that can be used in various [http://alcme.oclc.org/openurl/servlet/OAIHandler?verb=ListRecords&amp;amp;metadataPrefix=oai_dc&amp;amp;set=Core:Metadata+Formats types] of citations: [http://www.openurl.info/registry/docs/mtx/info:ofi/fmt:kev:mtx:book book], [http://www.openurl.info/registry/docs/mtx/info:ofi/fmt:kev:mtx:dissertation dissertation], [http://www.openurl.info/registry/docs/mtx/info:ofi/fmt:kev:mtx:journal journal], [http://www.openurl.info/registry/docs/mtx/info:ofi/fmt:kev:mtx:patent patent]. It would be possible to simply provide a standard XHTML bundling for these keys as a microformat.&lt;br /&gt;
&lt;br /&gt;
=== Example ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;openurl-journal&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;aulast&amp;quot;&amp;gt;Berners-Lee&amp;lt;/span&amp;gt;, &lt;br /&gt;
   &amp;lt;span class=&amp;quot;aufirst&amp;quot;&amp;gt;Tim&amp;lt;/a&amp;gt;; Hendler, James; Lassila, Ora.&amp;lt;/span&amp;gt;&lt;br /&gt;
   &amp;quot;&amp;lt;span class=&amp;quot;atitle&amp;quot;&amp;gt;The Semantic Web&amp;lt;/span&amp;gt;&amp;quot;. &lt;br /&gt;
   &amp;lt;span class=&amp;quot;jtitle&amp;quot;&amp;gt;Scientific American&amp;lt;/span&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;volume&amp;quot;&amp;gt;284&amp;lt;/span&amp;gt;(&amp;lt;span class=&amp;quot;issue&amp;quot;&amp;gt;5&amp;lt;/span&amp;gt;), pp.&lt;br /&gt;
   pp. &amp;lt;span class=&amp;quot;pages&amp;quot;&amp;gt;34-43&amp;lt;/span&amp;gt;. &lt;br /&gt;
   &amp;lt;span class=&amp;quot;issn&amp;quot;&amp;gt;0036-8733&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using OpenURL in this way would enable third party applications that could, say grab citation metadata from a blog, and without much work fire it off at your university's or public libraries openurl resolver to see if the article is available via a licensed databases. The benefits [http://www.infotoday.com/newsbreaks/nb050801-1.shtml have] [http://www.ariadne.ac.uk/issue43/chudnov/ been] [http://www.wallandbinkley.com/quaedam/?p=30 noted] [http://hublog.hubmed.org/archives/001163.html elsewhere].&lt;br /&gt;
&lt;br /&gt;
== The OpenURL Briefly Explained ==&lt;br /&gt;
&lt;br /&gt;
An OpenURL consists of two independent parts:  the ContextObject (or the bibliographic metadata surrounding a citation) and the location of resolver to parse the metadata and present contextual services based on said metadata.  The problem is that the term &amp;quot;OpenURL&amp;quot; is also used as a catch-all for all of the independent parts and how they work.  This is mainly because it's a catchier term than &amp;quot;Z39.88&amp;quot;, which is the [http://www.niso.org/standards/standard_detail.cfm?std_id=783 NISO standard all this is based upon].&lt;br /&gt;
&lt;br /&gt;
The most common representation of the OpenURL ContextObject is seen as arguments in a URL string (which is referred to as &amp;quot;San Antonio Profile 1&amp;quot; -- more commonly SAP1 -- and is represented in Key Encoded Values -- KEVs).  This &amp;quot;representation&amp;quot; is independent of the ContextObject (from here on known as CO) itself and is only intended to permit the CO to be transmitted via an HTTP GET request.&lt;br /&gt;
&lt;br /&gt;
There is also SAP2, which is an XML representation of the CO (see:  [http://alcme.oclc.org/openurl/servlet/OAIHandler?verb=GetRecord&amp;amp;metadataPrefix=oai_dc&amp;amp;identifier=info:ofi/fmt:xml:xsd:ctx here]  for more information) and is a much more human readable format.  This still falls outside the scope of microformats, but makes the point that encoding has nothing to do with the CO itself.  They are just agreed upon means of conveying the CO to enable machines act upon them consistently.&lt;br /&gt;
&lt;br /&gt;
The ContextObject could be conveyed just as easily in XHTML using attributes, as long as the terms follow the vocabulary defined in the OpenURL framework.  The important thing to focus on here is the ContextObject -- the address of the link resolver ''is'' institution-specific and should be handled by a user's (or machine's) activating agent.&lt;br /&gt;
&lt;br /&gt;
However, the link resolver is still a very important component to this whole process.  Getting users &amp;quot;appropriate copy&amp;quot; is a very real (and very difficult) problem that libraries are trying to solve.  Link resolvers are a pretty efficient means of overcoming this hurdle, so it would make sense to mark up bibiographic citations in a way that link resolvers can easily parse.&lt;br /&gt;
&lt;br /&gt;
== Z39.80 ==&lt;br /&gt;
I'm not sure the best place for a guide to Z39.80 so please add links as you see fit:&lt;br /&gt;
&lt;br /&gt;
[http://www.niso.org/standards/resources/drft4rev.html http://www.niso.org/standards/resources/drft4rev.html]&lt;br /&gt;
&lt;br /&gt;
== DocBook ==&lt;br /&gt;
&lt;br /&gt;
A subset of the DocBook vocabulary is dedicated to representing a bibliography: http://www.docbook.org/tdg/en/html/bibliography.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE bibliography PUBLIC &amp;quot;-//OASIS//DTD DocBook XML V4.1.2//EN&amp;quot;&lt;br /&gt;
          &amp;quot;http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;bibliography&amp;gt;&lt;br /&gt;
  &amp;lt;title&amp;gt;Languages and Semantics&amp;lt;/title&amp;gt;&lt;br /&gt;
  &amp;lt;bibliodiv&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt;Books&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;biblioentry&amp;gt;&lt;br /&gt;
      &amp;lt;title&amp;gt;Course in General Linguistics&amp;lt;/title&amp;gt;&lt;br /&gt;
      &amp;lt;abbrev&amp;gt;deSaussure59&amp;lt;/abbrev&amp;gt;&lt;br /&gt;
      &amp;lt;author&amp;gt;&amp;lt;firstname&amp;gt;Ferdinand&amp;lt;/firstname&amp;gt;&amp;lt;surname&amp;gt;de Saussure&amp;lt;/surname&amp;gt;&amp;lt;/author&amp;gt;&lt;br /&gt;
      &amp;lt;editor&amp;gt;&amp;lt;firstname&amp;gt;Charles&amp;lt;/firstname&amp;gt;&amp;lt;surname&amp;gt;Bally&amp;lt;/surname&amp;gt;&amp;lt;/editor&amp;gt;&lt;br /&gt;
      &amp;lt;editor&amp;gt;&amp;lt;firstname&amp;gt;Albert&amp;lt;/firstname&amp;gt;&amp;lt;surname&amp;gt;Sechehaye&amp;lt;/surname&amp;gt;&amp;lt;/editor&amp;gt;&lt;br /&gt;
      &amp;lt;othercredit role=&amp;quot;translator&amp;quot;&amp;gt;&amp;lt;firstname&amp;gt;Wade&amp;lt;/firstname&amp;gt;&amp;lt;surname&amp;gt;Baskin&amp;lt;/surname&amp;gt;&amp;lt;/othercredit&amp;gt;&lt;br /&gt;
      &amp;lt;copyright&amp;gt;&lt;br /&gt;
        &amp;lt;year&amp;gt;1959&amp;lt;/year&amp;gt;&lt;br /&gt;
        &amp;lt;holder&amp;gt;The Philosophical Library Inc.&amp;lt;/holder&amp;gt;&lt;br /&gt;
      &amp;lt;/copyright&amp;gt;&lt;br /&gt;
      &amp;lt;isbn&amp;gt;07-016524-6&amp;lt;/isbn&amp;gt;&lt;br /&gt;
      &amp;lt;publisher&amp;gt;&lt;br /&gt;
        &amp;lt;publishername&amp;gt;McGraw-Hill Book Company&amp;lt;/publishername&amp;gt;&lt;br /&gt;
      &amp;lt;/publisher&amp;gt;  &lt;br /&gt;
    &amp;lt;/biblioentry&amp;gt;&lt;br /&gt;
  &amp;lt;/bibliodiv&amp;gt;&lt;br /&gt;
&amp;lt;/bibliography&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* publisher&lt;br /&gt;
* copyright&lt;br /&gt;
* identifier (ISBN)&lt;br /&gt;
* title&lt;br /&gt;
* author/editor/other credit/&lt;br /&gt;
* type (book)&lt;br /&gt;
&lt;br /&gt;
== Ann Arbor District Library XML feed ==&lt;br /&gt;
&lt;br /&gt;
Here's a record in XML format from their project to simplify&lt;br /&gt;
access to the catalog.  More discussion on [http://www.blyberg.net John Blyberg's blog].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;p:Record&amp;gt;&lt;br /&gt;
  &amp;lt;callnum&amp;gt;823 Bu&amp;lt;/callnum&amp;gt;&lt;br /&gt;
  &amp;lt;author&amp;gt;Burkart, Gina, 1971-&amp;lt;/author&amp;gt;&lt;br /&gt;
  &amp;lt;fulltitle&amp;gt;A parent's guide to Harry Potter / Gina Burkart&amp;lt;/fulltitle&amp;gt;&lt;br /&gt;
  &amp;lt;title&amp;gt;A parent's guide to Harry Potter &amp;lt;/title&amp;gt;&lt;br /&gt;
  &amp;lt;pubinfo&amp;gt;Downers Grove, Ill. : InterVarsity Press, c2005&amp;lt;/pubinfo&amp;gt;&lt;br /&gt;
  &amp;lt;desc&amp;gt;112 p&amp;lt;/desc&amp;gt;&lt;br /&gt;
  &amp;lt;bibliography&amp;gt;Includes bibliographical references&amp;lt;/bibliography&amp;gt;&lt;br /&gt;
  &amp;lt;contents&amp;gt;&lt;br /&gt;
    The Harry hype -- More than a story -- The modern fairy tale -- Discussing fantasy with children --&lt;br /&gt;
    Morals, not magic -- The real issues in Harry Potter -- Dealing with traumatic experiences -- Facing &lt;br /&gt;
    fears -- Battling bullies -- Delving into diversity -- Hiding hurts -- Letting go of anger -- Getting &lt;br /&gt;
    help -- Choosing good over evil -- The power of love -- Facing spiritual battles&lt;br /&gt;
  &amp;lt;/contents&amp;gt;&lt;br /&gt;
  &amp;lt;isbn&amp;gt;0830832882&amp;lt;/isbn&amp;gt;&lt;br /&gt;
  &amp;lt;price&amp;gt;$11.00&amp;lt;/price&amp;gt;&lt;br /&gt;
  &amp;lt;lang&amp;gt;eng&amp;lt;/lang&amp;gt;&lt;br /&gt;
  &amp;lt;copies&amp;gt;0&amp;lt;/copies&amp;gt;&lt;br /&gt;
  &amp;lt;catdate&amp;gt;08-16-2005&amp;lt;/catdate&amp;gt;&lt;br /&gt;
  &amp;lt;mattype&amp;gt;a&amp;lt;/mattype&amp;gt;&lt;br /&gt;
  &amp;lt;avail&amp;gt;No copies available&amp;lt;/avail&amp;gt;&lt;br /&gt;
  &amp;lt;recordlink xlink:href=&amp;quot;http://www.aadl.org/cat/seek/record=1249810&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/p:Record&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* url&lt;br /&gt;
* availablity&lt;br /&gt;
* identifier (ISBN/call number)&lt;br /&gt;
* author&lt;br /&gt;
* title&lt;br /&gt;
* publisher&lt;br /&gt;
* pages&lt;br /&gt;
* description/contents&lt;br /&gt;
&lt;br /&gt;
== SimpleDC supported by the zoom toolkit ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;dc xmlns=&amp;quot;http/www.loc.gov/zing/srw/dcschema/v1.0/&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;title&amp;gt;Kantor Salomon Sulzer und seine Zeit : eine Dokumentation /&amp;lt;/title&amp;gt;&lt;br /&gt;
 &amp;lt;creator&amp;gt;Avenary, Hanoch.&amp;lt;/creator&amp;gt;&lt;br /&gt;
 &amp;lt;creator&amp;gt;Pass, Walter.&amp;lt;/creator&amp;gt;&lt;br /&gt;
 &amp;lt;creator&amp;gt;Vielmetti, Nikolaus.&amp;lt;/creator&amp;gt;&lt;br /&gt;
 &amp;lt;creator&amp;gt;Adler, Israel, (1925-)&amp;lt;/creator&amp;gt;&lt;br /&gt;
 &amp;lt;subject&amp;gt;Sulzer, Salomon, -- 1804-1890.&amp;lt;/subject&amp;gt;&lt;br /&gt;
 &amp;lt;subject&amp;gt;Jewish composers -- Austria -- Biography.&amp;lt;/subject&amp;gt;&lt;br /&gt;
 &amp;lt;subject&amp;gt;Cantors, Jewish -- Biography.&amp;lt;/subject&amp;gt;&lt;br /&gt;
 &amp;lt;date&amp;gt;1985&amp;lt;/date&amp;gt;&lt;br /&gt;
 &amp;lt;publisher&amp;gt;Sigmaringen : Jan Thorbecke Verlag&amp;lt;/publisher&amp;gt;&lt;br /&gt;
 &amp;lt;identifier&amp;gt;3799540636&amp;lt;/identifier&amp;gt;&lt;br /&gt;
 &amp;lt;description&amp;gt;300 p., [12] p. of plates : ill., music, ports. ; 24 cm.&amp;lt;/description&amp;gt;&lt;br /&gt;
&amp;lt;/dc&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
this is the output of marc.toSimpleDC()&lt;br /&gt;
&lt;br /&gt;
* title&lt;br /&gt;
* creator (author)&lt;br /&gt;
* subjects&lt;br /&gt;
* date&lt;br /&gt;
* publisher&lt;br /&gt;
* identifier&lt;br /&gt;
* description&lt;br /&gt;
&lt;br /&gt;
(NOTE: this schema is from the example, not the source schema)&lt;br /&gt;
&lt;br /&gt;
== SRU from the Library of Congress ==&lt;br /&gt;
&lt;br /&gt;
http://z3950.loc.gov:7090/voyager?version=1.1&amp;amp;operation=searchRetrieve&amp;amp;query=dinosaur&amp;amp;maximumRecords=1&amp;amp;recordSchema=dc&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;zs:searchRetrieveResponse xmlns:zs=&amp;quot;http://www.loc.gov/zing/srw/&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;zs:version&amp;gt;1.1&amp;lt;/zs:version&amp;gt;&lt;br /&gt;
  &amp;lt;zs:numberOfRecords&amp;gt;1701&amp;lt;/zs:numberOfRecords&amp;gt;&lt;br /&gt;
  &amp;lt;zs:records&amp;gt;&lt;br /&gt;
    &amp;lt;zs:record&amp;gt;&lt;br /&gt;
      &amp;lt;zs:recordSchema&amp;gt;info:srw/schema/1/dc-v1.1&amp;lt;/zs:recordSchema&amp;gt;&lt;br /&gt;
      &amp;lt;zs:recordPacking&amp;gt;xml&amp;lt;/zs:recordPacking&amp;gt;&lt;br /&gt;
      &amp;lt;zs:recordData&amp;gt;&lt;br /&gt;
        &amp;lt;srw_dc:dc xmlns:srw_dc=&amp;quot;info:srw/schema/1/dc-schema&amp;quot; &lt;br /&gt;
             xmlns:xsi=&amp;quot;http://www.w3.org/2001/XMLSchema-instance&amp;quot; &lt;br /&gt;
             xmlns=&amp;quot;http://purl.org/dc/elements/1.1/&amp;quot; &lt;br /&gt;
             xsi:schemaLocation=&amp;quot;info:srw/schema/1/dc-schema http://www.loc.gov/z3950/agency/zing/srw/dc-schema.xsd&amp;quot;&amp;gt;&lt;br /&gt;
          &amp;lt;title&amp;gt;3-D dinosaur adventure [computer file].&amp;lt;/title&amp;gt;&lt;br /&gt;
          &amp;lt;creator&amp;gt;Knowledge Adventure, Inc.&amp;lt;/creator&amp;gt;&lt;br /&gt;
          &amp;lt;type&amp;gt;software, multimedia&amp;lt;/type&amp;gt;&lt;br /&gt;
          &amp;lt;publisher&amp;gt;Glendale, CA : Knowledge Adventure,&amp;lt;/publisher&amp;gt;&lt;br /&gt;
&lt;br /&gt;
          &amp;lt;date&amp;gt;c1995.&amp;lt;/date&amp;gt;&lt;br /&gt;
          &amp;lt;language&amp;gt;eng&amp;lt;/language&amp;gt;&lt;br /&gt;
          &amp;lt;description&amp;gt;Employs a dinosaur theme-park setting to introduce users to Triassic, Jurassic, and &lt;br /&gt;
            Cretaceous periods. Features hypertext dinosaur encyclopedia covering 150 million years of &lt;br /&gt;
            paleontology. Includes animated video simulations, three-dimensional dinosaur museum, narration,&lt;br /&gt;
            games, activities, and color illustrations.&amp;lt;/description&amp;gt;&lt;br /&gt;
          &amp;lt;description&amp;gt;Ages 5 to 10.&amp;lt;/description&amp;gt;&lt;br /&gt;
          &amp;lt;description&amp;gt;System requirements for PC: 486SX/25MHz processor or higher; 8MB RAM; Windows 3.1, &lt;br /&gt;
            3.11, or 95; SVGA 256-color graphics adapter; hard drive with 5MB free space; double-speed CD-ROM&lt;br /&gt;
            drive; MPC-compatible sound card; mouse.&amp;lt;/description&amp;gt;&lt;br /&gt;
          &amp;lt;description&amp;gt;System requirements for Macintosh: 68040 or Power PC processor; 8MB RAM; System 7.0 or&lt;br /&gt;
            higher; 256-color graphics capability; thirteen-inch color monitor or larger; hard drive with 4MB&lt;br /&gt;
            free space; double-speed CD-ROM drive.&amp;lt;/description&amp;gt;&lt;br /&gt;
            &lt;br /&gt;
          &amp;lt;description&amp;gt;Ages 5 to 10.&amp;lt;/description&amp;gt;&lt;br /&gt;
          &amp;lt;description&amp;gt;Employs a dinosaur theme-park setting to introduce users to Triassic, Jurassic, and &lt;br /&gt;
            Cretaceous periods. Features hypertext dinosaur encyclopedia covering 150 million years of paleontology.&lt;br /&gt;
            Includes animated video simulations, three-dimensional dinosaur museum, narration, games, activities, &lt;br /&gt;
            and color illustrations.&amp;lt;/description&amp;gt;&lt;br /&gt;
          &amp;lt;subject&amp;gt;Dinosaurs--Juvenile software.&amp;lt;/subject&amp;gt;&lt;br /&gt;
          &amp;lt;subject&amp;gt;Dinosaurs.&amp;lt;/subject&amp;gt;&lt;br /&gt;
          &amp;lt;identifier&amp;gt;URN:ISBN:1569972133&amp;lt;/identifier&amp;gt;&lt;br /&gt;
        &amp;lt;/srw_dc:dc&amp;gt;&lt;br /&gt;
      &amp;lt;/zs:recordData&amp;gt;&lt;br /&gt;
      &amp;lt;zs:recordPosition&amp;gt;1&amp;lt;/zs:recordPosition&amp;gt;&lt;br /&gt;
    &amp;lt;/zs:record&amp;gt;&lt;br /&gt;
  &amp;lt;/zs:records&amp;gt;&lt;br /&gt;
&amp;lt;/zs:searchRetrieveResponse&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
NOTE: this is just Dublin Core data in a special LOC envelope&lt;br /&gt;
&lt;br /&gt;
== University of Bath reference type ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
		&amp;lt;reference&amp;gt;&lt;br /&gt;
			&amp;lt;authors&amp;gt;&lt;br /&gt;
				&amp;lt;author&amp;gt;&lt;br /&gt;
					&amp;lt;forename&amp;gt;E&amp;lt;/forename&amp;gt;&lt;br /&gt;
					&amp;lt;forename&amp;gt;M&amp;lt;/forename&amp;gt;&lt;br /&gt;
					&amp;lt;surname&amp;gt;Phillips&amp;lt;/surname&amp;gt;&lt;br /&gt;
				&amp;lt;/author&amp;gt;&lt;br /&gt;
				&amp;lt;author&amp;gt;&lt;br /&gt;
					&amp;lt;forename&amp;gt;D&amp;lt;/forename&amp;gt;&lt;br /&gt;
					&amp;lt;forename&amp;gt;S&amp;lt;/forename&amp;gt;&lt;br /&gt;
					&amp;lt;surname&amp;gt;Pugh&amp;lt;/surname&amp;gt;&lt;br /&gt;
				&amp;lt;/author&amp;gt;&lt;br /&gt;
			&amp;lt;/authors&amp;gt;&lt;br /&gt;
			&amp;lt;date&amp;gt;1994&amp;lt;/date&amp;gt;&lt;br /&gt;
			&amp;lt;entity&amp;gt;&lt;br /&gt;
				&amp;lt;book title=&amp;quot;How to get a PhD:  A handbook for students and their supervisors&amp;quot;&amp;gt;&lt;br /&gt;
					&amp;lt;location&amp;gt;&lt;br /&gt;
						&amp;lt;placeofpublication&amp;gt;Buckinghamshire&amp;lt;/placeofpublication&amp;gt;&lt;br /&gt;
						&amp;lt;publisher&amp;gt;Open University&amp;lt;/publisher&amp;gt;&lt;br /&gt;
					&amp;lt;/location&amp;gt;&lt;br /&gt;
				&amp;lt;/book&amp;gt;&lt;br /&gt;
			&amp;lt;/entity&amp;gt;&lt;br /&gt;
		&amp;lt;/reference&amp;gt;&lt;br /&gt;
&lt;br /&gt;
		&amp;lt;reference&amp;gt;&lt;br /&gt;
			&amp;lt;authors&amp;gt;&lt;br /&gt;
				&amp;lt;author&amp;gt;&lt;br /&gt;
					&amp;lt;forename&amp;gt;Michael&amp;lt;/forename&amp;gt;&lt;br /&gt;
					&amp;lt;surname&amp;gt;Fumento&amp;lt;/surname&amp;gt;&lt;br /&gt;
				&amp;lt;/author&amp;gt;&lt;br /&gt;
			&amp;lt;/authors&amp;gt;&lt;br /&gt;
			&amp;lt;date&amp;gt;1996&amp;lt;/date&amp;gt;&lt;br /&gt;
			&amp;lt;entity&amp;gt;&lt;br /&gt;
				&amp;lt;website pagetitle=&amp;quot;Radon&amp;amp;apos;s Real Threat is to the EPA&amp;quot; &lt;br /&gt;
uri=&amp;quot;http://www.consumeralert.org/fumento/radon1.htm&amp;quot;/&amp;gt;&lt;br /&gt;
			&amp;lt;/entity&amp;gt;&lt;br /&gt;
			&amp;lt;frdescription&amp;gt;an article by a prolific newspaper columnist in the USA - &lt;br /&gt;
quotes empirical scientific research showing no provable link between radon in homes and elevated &lt;br /&gt;
cases of lung cancer&amp;lt;/frdescription&amp;gt;&lt;br /&gt;
		&amp;lt;/reference&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[http://www.bath.ac.uk/schemas/screenshots/referencetype.png Schema extract]&lt;br /&gt;
&lt;br /&gt;
* author&lt;br /&gt;
* date&lt;br /&gt;
* url&lt;br /&gt;
* description&lt;br /&gt;
* type (book/journal/conference)&lt;br /&gt;
* title&lt;br /&gt;
* artile&lt;br /&gt;
* volume&lt;br /&gt;
* issue&lt;br /&gt;
* chapter&lt;br /&gt;
* pages&lt;br /&gt;
* publisher&lt;br /&gt;
** publisher data (address, city, ...)&lt;br /&gt;
&lt;br /&gt;
== Implied Schema ==&lt;br /&gt;
This is the start of the short list of common properties across documented formats. Once this is finished, there will be a union of Implied schemas between EXAMPLES and IMPLEMENTATIONS and we will see what that looks like. (This currently only covers a few of the formats listed, some documented formats still need to be explored)&lt;br /&gt;
&lt;br /&gt;
* creator (author, editor, translator, contributor) - this can be handled with hCard, but will need an additional property to refine what &amp;quot;creator&amp;quot; means&lt;br /&gt;
* publisher (this can also be handled with hCard)&lt;br /&gt;
* subject/topics/keywords/categories/genre (there is a rel=&amp;quot;tag&amp;quot; microformat)&lt;br /&gt;
* Description (abstract, note, tableOfContents)&lt;br /&gt;
* typeOfResource/format&lt;br /&gt;
&lt;br /&gt;
common location information&lt;br /&gt;
* volume&lt;br /&gt;
* issue&lt;br /&gt;
* page&lt;br /&gt;
* edition&lt;br /&gt;
&lt;br /&gt;
Date Fields&lt;br /&gt;
* Date Published (some formats have YEAR/MONTH sperately)&lt;br /&gt;
* Date accessed (see [http://www.columbia.edu/cu/cup/cgos/basic.html here] for examples)&lt;br /&gt;
&lt;br /&gt;
Again, I'll emphasize: &amp;quot;date published&amp;quot; is problematic. If one needs specificity, then better to have the following list of date classes: date (the generic), issued (braoder than published), copyright (often not the same as issuance date), accessed. -- bruce&lt;br /&gt;
&lt;br /&gt;
Other fields&lt;br /&gt;
* Copyright/usage&lt;br /&gt;
* audience&lt;br /&gt;
&lt;br /&gt;
* identifier (ISBN, ISSN, id, internal only, other)&lt;br /&gt;
* language (this can be handled by the xml:lang attribute native to HTML)&lt;br /&gt;
&lt;br /&gt;
== Types and Roles ==&lt;br /&gt;
(Section is informative only as a place to capture various parts of publication citations.)&lt;br /&gt;
&lt;br /&gt;
There are many different types of publications and this information should be captured in the citation. Possible types include:&lt;br /&gt;
* Novel/fiction (specify type -- literature, SF, romance, etc.?)&lt;br /&gt;
* Non-fiction&lt;br /&gt;
* Poem&lt;br /&gt;
* Play&lt;br /&gt;
* Magazine&lt;br /&gt;
* Reference (separate out encyclopedia, dictionary, almanac, etc.?)&lt;br /&gt;
* Journal&lt;br /&gt;
* Article within a journal&lt;br /&gt;
* Chapter within a book&lt;br /&gt;
* Dissertation&lt;br /&gt;
* Web Site&lt;br /&gt;
* Page within a web site&lt;br /&gt;
* Music Recording&lt;br /&gt;
* Video Recording&lt;br /&gt;
* Interview&lt;br /&gt;
* Physical object (Statue, Painting, etc.)&lt;br /&gt;
* ??&lt;br /&gt;
&lt;br /&gt;
Question: &lt;br /&gt;
Certain works have specific types of citations, for example, the Bible--and, I assume, other religious works--have very specific citation formats with different relevant information (chapter/verse) than others, as do the works of Shakespeare. Should these be considered separate types/roles?&lt;br /&gt;
&lt;br /&gt;
A: I think in terms of types, we should at least note the items (chapter, verse, etc). How they get dealt with is still way up in the air. - [[User:Tim White|Tim White]]&lt;br /&gt;
&lt;br /&gt;
Likewise, there are several different roles associated with publications -- author, co-author, editor, translator, etc. Should these be captured under a master &amp;quot;role&amp;quot; or treated as individual elements?&lt;br /&gt;
&lt;br /&gt;
A: Good question. I think there is an important distinction, but whether we follow a design pattern of &amp;quot;role-*&amp;quot; (or more likely &amp;quot;author-*) or some other pattern hasn't been discussed yet. - Tim&lt;br /&gt;
&lt;br /&gt;
== Biblio RDF Class Schema ==&lt;br /&gt;
Regading the issue of types notes above, the [http://vocab.org/biblio/schema biblio schema] provides a comprehensive set of classes to describe citation metadata. It might prove useful as a guide for a micro-format. The primary classes are Agent, Reference, Collection, and Event. An &amp;quot;Article&amp;quot;, then, would be a subclass of &amp;quot;Part&amp;quot;, which in turn is a subclass of Reference. Likewise, a &amp;quot;Journal&amp;quot; is a subclass of a &amp;quot;Periodical,&amp;quot; which in turn is a subclass of &amp;quot;Collection.&amp;quot; An article would typically be linked to a journal through a dcterms:isPartOf relation.&lt;br /&gt;
&lt;br /&gt;
== ISBN Uniform Resource Names ==&lt;br /&gt;
&lt;br /&gt;
[http://www.faqs.org/rfcs/rfc3187.html RFC3187] defines an ISBN namespace for Uniform Resource Names (URNs).&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&lt;br /&gt;
URN:ISBN:0-395-36341-1&lt;br /&gt;
&lt;br /&gt;
I'm not sure if any browser uses this data, but it might have an application in citations describing registered materials with an ISBN.&lt;br /&gt;
&lt;br /&gt;
There is also a URN namespace for ISSN (International Standard Serial Number), which identifies serials/periodicals e.g. [http://alistapart.com A List Apart].  It is defined in [http://www.faqs.org/rfcs/rfc3044.html RFC3044].  Additional URN namespaces are listed at http://www.iana.org/assignments/urn-namespaces.&lt;br /&gt;
&lt;br /&gt;
== You should know == &lt;br /&gt;
* There are more then 1.300 citation ''styles'' in EndNote 9.&lt;br /&gt;
* Libraries have developed formats and rules for publications since more than 100 years. There are millions of records in library catalougues. You should '''at least''' be familiar with AACR and FRBR. There '''already are''' effords to create a new &amp;quot;microformat&amp;quot; called ''Resource Description and Access'' (RDA) [http://www.collectionscanada.ca/jsc/rdaprospectus.html]. Why don't you try to work with the professionals instead of amateurishly trying to reinvent the wheel and create yet another incompatible format? -- [[User:JakobVoss|JakobVoss]] 01:39, 5 Jun 2006 (PDT)&lt;br /&gt;
** I agree that the people involved in developing this microformat (including me) ought to be aware of these efforts (in particular FRBR), but I also think your argument is hopelessly naive and pretentious. The professionals you refer to are in fact library professionals, with their own bizarre traditios and unique information needs. Those are different than the professional scholars for whom citations are critical (me), or to the professional web developers who might want to implement these formats. What I do think is important is for us to understand the different design traditions, and their trade-offs, rather than to blindly create a microformat based on one of them -- Bruce (author of citeproc [http://xbiblio.sourceforge.net/citeproc] and csl [http://xbiblio.sourceforge.net/csl]).&lt;br /&gt;
&lt;br /&gt;
Nice to meet you, Bruce! Maybe I'm naive but it still think that there is a way to combine the best of both worlds: scholars and library professionals. Both have developed bizarre traditions and it would be a pitty to create a new bizarre microformat that is not based on both of them. Thanks to your links to xbiblio. I a stumbled upon it a while ago but have to look at it deeper. -- [[User:JakobVoss|JakobVoss]] 11:48, 19 Jul 2006 (PDT)&lt;br /&gt;
&lt;br /&gt;
== OpenDocument ==&lt;br /&gt;
The OpenDocument Format also includes parts for citation and bibliography. See also the [http://bibliographic.openoffice.org/ OpenOffice Bibliographic project]. -- [[User:JakobVoss|JakobVoss]] 11:55, 19 Jul 2006 (PDT)&lt;/div&gt;</summary>
		<author><name>TerrellRussell</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=User:TerrellRussell&amp;diff=32139</id>
		<title>User:TerrellRussell</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=User:TerrellRussell&amp;diff=32139"/>
		<updated>2006-07-28T19:31:28Z</updated>

		<summary type="html">&lt;p&gt;TerrellRussell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://terrellrussell.com Terrell] is a [http://sils.unc.edu/people/phd.html#russell PhD student in SILS at UNC-CH] and half of the team behind [http://claimid.com/people claimID].&lt;br /&gt;
&lt;br /&gt;
He writes [http://weblog.terrellrussell.com here].&lt;br /&gt;
&lt;br /&gt;
His claimID page is [http://claimid.com/terrell here].&lt;/div&gt;</summary>
		<author><name>TerrellRussell</name></author>
	</entry>
</feed>