This is the mail archive of the docbook-apps@lists.oasis-open.org mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: tagging electronic sources


Hi Diane,
I write webresources like this:
<biblioentry id="bib_ColOnStyle">
<abbrev>ColOnStyle</abbrev>
<biblioset relation='internet'>
<title id="bib_ColumbiaOnlineStyleT">Columbia Online Style</title>
<bibliosource id="link_ColumbiaOnlineStyle">
<ulink url="http://www.columbia.edu/cu/cup/cgos/idx_basic.html";>
http://www.columbia.edu/cu/cup/cgos/idx_basic.html (Visited 11.2002)</ulink>
</bibliosource>
<abstract><para>Auszug aus dem Buch. Gute Angaben mit Beispiel für
die Zietierung von Online Quellen, Newslettern, etc.</para></abstract>
</biblioset>
</biblioentry>


The relation is used to trigger an style adaption for a nice formating.
Here is an excerpt:
<xsl:when test="biblioset[@relation='internet']">
<fo:inline>
<xsl:if test="biblioset/author">
<xsl:value-of select="biblioset/author[position()=1]/surname" />
<xsl:if test="biblioset/author[position()=1]/firstname">,&#160;
<xsl:value-of select="biblioset/author[position()=1]/firstname" />
</xsl:if>
<xsl:value-of select="$biblioentry.item.separator"/>

<xsl:for-each select="biblioset/author[position()!=1]">
<xsl:sort select="surname | firstname" />
<xsl:value-of select="firstname"/>&#160;<xsl:value-of select="surname"/>
<xsl:value-of select="$biblioentry.item.separator"/>
</xsl:for-each>
</xsl:if>
</fo:inline>
<xsl:apply-templates select="biblioset/authorgroup" mode="bibliography.mode"/>
<xsl:value-of select="biblioset/title"/>.
<xsl:value-of select="biblioset/bibliosource/ulink"/>.
<xsl:apply-templates select="biblioset/abstract" mode="bibliography.mode"/>
</xsl:when>


The result looks like this (PDF):
[ColOnStyle] Columbia Online Style.
http://www.columbia.edu/cu/cup/cgos/idx_basic.html (Visited 11.2002).
Auszug aus dem Buch. Gute Angaben mit Beispiel für die Zietierung
von Online Quellen, Newslettern, etc.



Stephan

Diane Girard wrote:
Hello,

I would like to know if there is a special set of tags for referencing electronic only sources in the bibliography. I would like to be able to included the date when the electronic source as been retreived or accessed, also the type of the electronic source like FTP, e-mail, file ..

Thank you.

Diane





Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]