I wan to cite references in my ConTeXt document using IEEE citation style. Specifically for Web URL. How to do that using ConTeXt and BiBTeX? Regards A.Julius Canute
On Wed, Jan 26, 2011 at 16:10, Julius Canute wrote:
I wan to cite references in my ConTeXt document using IEEE citation style. Specifically for Web URL. How to do that using ConTeXt and BiBTeX?
It is quite possible that nobody has used IEEE citation style in ConTeXt (I didn't check how it should look like). However it is reasonably easy to modify the style by yourself (in contrast to classical BibTeX and LaTeX). If you use pure bibtex entries (.bib files) it is a bit more difficult to add new types of bibliography items, but if you create the entries in ConTeXt, you have almost unlimited capabilities. Take a look at bib module documentation on http://modules.contextgarden.net/bibman. Here is an example of how I start the bibilography file ... % a new field to hold the name of conference \newbibfield[conference] % tell ConTeXt how the layout for new types should look like \setuppublicationlayout[conference]{% \insertartauthors{}{\unskip. }{}% \insertarttitle{\bgroup }{\egroup. }{}% \insertconference{\bgroup \it}{\egroup\insertday{, }{. }{}\insertmonth{}{\ }{}\insertpubyear{}{}{}. }{}% } \setuppublicationlayout[webpage]{% \inserttitle{\bgroup\it }{\egroup. }{}% \inserturl{}{}{}% } % example of webpage entry \startpublication [k=FAIR, t=webpage, u=http://www.gsi.de/fair/, ] \biburl{http://www.gsi.de/fair/} \title{FAIR -- Facility for Antiproton and Ion Research} \stoppublication You might need to redefine \setuppublicationlayout[article] and others to conform to their standard. See the files in tex/context/bib/. Mojca
On Fri, 28 Jan 2011, Mojca Miklavec wrote:
On Wed, Jan 26, 2011 at 16:10, Julius Canute wrote:
I wan to cite references in my ConTeXt document using IEEE citation style. Specifically for Web URL. How to do that using ConTeXt and BiBTeX?
It is quite possible that nobody has used IEEE citation style in ConTeXt (I didn't check how it should look like).
I am attaching a file that I used a couple of years ago. I haven't checked it with the latest version of the bib module. Aditya
participants (3)
-
Aditya Mahajan
-
Julius Canute
-
Mojca Miklavec