Difference between revisions of "Simple Bibliography"

From Wiki
Jump to navigation Jump to search
Line 7: Line 7:
 
==Items==
 
==Items==
  
The bibliography can be listed in one block or distributed over several block in the document (e.g. at the end of every chapter).  
+
The bibliography can be listed in one block or distributed over several block in the document (e.g. at the end of every chapter):
 +
 
 +
<texcode>
 +
...
 +
 
 +
\startbibliography
 +
...
 +
\stopbibiography
 +
 
 +
...
 +
 
 +
\startbibliography
 +
...
 +
\stopbibiography
 +
 
 +
...
 +
</texcode>
 +
 
 +
Inside the bibliography environment you can specify bibliographic items via <code>\bibitem</code>.
 +
 
 +
<texcode>
 +
\bibitem[author=,editor=,year=,title=,in=,number=,series=,volume=,magazine=,edition=,revedition=,datedition=,publisher=,place=,isbn=,url=,pages=,access=]
 +
</texcode>
 +
 
 +
Most attributes should be self explaining. A speciality is the <code>in</code> attribute. Often you have to cite an article that is published in a journal, compendium etc. So you use the "normal" attributes to specify the article and via the <code>in</code> attribute you specify the book with the same attributes inside:
 +
 
 +
<texcode>
 +
\bibitem[key=bpf,abbr={BüPrFr},author={Büchel, Christian; Price, Cathy J und Friston, Karl},year={1998},title={A multimodal language region in the ventral visual pathway},in={{title=Nature},volume={394},pages={274-277}}]
 +
</texcode>
  
 
==Referencing==
 
==Referencing==
Line 26: Line 54:
  
 
<texcode>
 
<texcode>
 +
\usemodule[simplebib]
  
 +
\starttext
  
 +
\bibref[brk]
 +
\bibref[detail={p. 275}][bpf]
 +
 +
\starttext
 +
\startbibliography
 +
 +
\bibitem[key=brk,abbr={Brk\-01},author={Brinker, Klaus},year={2001},title={Linguistische Textanalyse: Eine Einführung in Grundbegriffe und Methoden},series={Grundlagen der Germanistik},volume={29},revedition={5},publisher={Schmidt Verlag},place={Berlin},isbn={3-503-04995-9}]
 +
 +
\bibitem[key=bpf,abbr={BüPrFr\-98},author={Büchel, Christian; Price, Cathy J und Friston, Karl},year={1998},title={A multimodal language region in the ventral visual pathway},in={{title=Nature},volume={394},pages={274-277}}]
 
</texcode>
 
</texcode>
 +
 +
\stopbibliography
 +
\stoptext
  
 
==Settings==
 
==Settings==

Revision as of 11:48, 2 November 2012

Page in progress...

Sometimes the bibliography needs to be more flexible in the bibliographic item description. For this case exists the module simplebib.

But this bibliography module is more flexible than the "classic" bibliography module with its bibtex database.

Items

The bibliography can be listed in one block or distributed over several block in the document (e.g. at the end of every chapter):

...

\startbibliography
...
\stopbibiography

...

\startbibliography
...
\stopbibiography

...

Inside the bibliography environment you can specify bibliographic items via \bibitem.

\bibitem[author=,editor=,year=,title=,in=,number=,series=,volume=,magazine=,edition=,revedition=,datedition=,publisher=,place=,isbn=,url=,pages=,access=]

Most attributes should be self explaining. A speciality is the in attribute. Often you have to cite an article that is published in a journal, compendium etc. So you use the "normal" attributes to specify the article and via the in attribute you specify the book with the same attributes inside:

\bibitem[key=bpf,abbr={BüPrFr},author={Büchel, Christian; Price, Cathy J und Friston, Karl},year={1998},title={A multimodal language region in the ventral visual pathway},in={{title=Nature},volume={394},pages={274-277}}]

Referencing

For referencing simplebib is using the crossref module. For the lazy ones it provides \bibtex what is nothing else than a \crossref with type=external preset.

So in following example both blocks do the same:

\bibref[ref1]
\bibref[detail={p. 38}][ref1]

\crossref[type=external][ref1]
\crossref[type=external,detail={p. 38}][ref1]

Here a simple usage example:

\usemodule[simplebib]

\starttext

\bibref[brk]
\bibref[detail={p. 275}][bpf]

\starttext
\startbibliography

\bibitem[key=brk,abbr={Brk\-01},author={Brinker, Klaus},year={2001},title={Linguistische Textanalyse: Eine Einführung in Grundbegriffe und Methoden},series={Grundlagen der Germanistik},volume={29},revedition={5},publisher={Schmidt Verlag},place={Berlin},isbn={3-503-04995-9}]

\bibitem[key=bpf,abbr={BüPrFr\-98},author={Büchel, Christian; Price, Cathy J und Friston, Karl},year={1998},title={A multimodal language region in the ventral visual pathway},in={{title=Nature},volume={394},pages={274-277}}]

\stopbibliography \stoptext

Settings

[itemspace=12]


\setupsimplebibtext[listBracketOpen={[}]
\setupsimplebibtext[listBracketClose={]}]

\setupsimplebibtext[en][editor={ed.}]
\setupsimplebibtext[en][number={number}]
\setupsimplebibtext[en][fromSeries={from series}]
\setupsimplebibtext[en][volumne={volumne}]
\setupsimplebibtext[en][magazine={magazine}]
\setupsimplebibtext[en][edition={edition}]
\setupsimplebibtext[en][revedition={reviewed edition}]
\setupsimplebibtext[en][datedition={edition from}]
\setupsimplebibtext[en][isbn={ISBN}]
\setupsimplebibtext[en][pages={p.}]
\setupsimplebibtext[en][access={last access}]
\setupsimplebibtext[en][in={in}]

\setupsimplebibtext[de][editor={Hrsg.}]
\setupsimplebibtext[de][number={Nummer}]
\setupsimplebibtext[de][fromSeries={aus der Reihe}]
\setupsimplebibtext[de][volumne={Band}]
\setupsimplebibtext[de][magazine={Heft}]
\setupsimplebibtext[de][edition={Auflage}]
\setupsimplebibtext[de][revedition={überarbeitete Auflage}]
\setupsimplebibtext[de][datedition={Auflage vom}]
\setupsimplebibtext[de][isbn={ISBN}]
\setupsimplebibtext[de][pages={S.}]
\setupsimplebibtext[de][access={letzter Zugriff}]
\setupsimplebibtext[de][in={in}]