ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* bibliography: current status, Wiki page Bibliography, [[error 2]] and bibltx
@ 2011-05-20 15:50 Paul Menzel
  2011-05-20 17:04 ` George N. White III
  0 siblings, 1 reply; 12+ messages in thread
From: Paul Menzel @ 2011-05-20 15:50 UTC (permalink / raw)
  To: ntg-context


[-- Attachment #1.1.1: Type: text/plain, Size: 2158 bytes --]

Dear ConTeXt folks,


I am trying to use the module bib, but I only get [[error 2]] displayed.

I am following the Wiki page Bibliography [1], which suggests the
following example (adapted by me).

        \usemodule[bib]
        \usemodule[bibltx]
        \setupbibtex[database=sample]
        \setuppublications[numbering=yes] % Show reference numbers in the generated list.
        \starttext
        As \cite[hh2010b] already indicated, bibtex is a \LaTeX-centric program.
        \completepublications
        \stoptext

I copied the file `sample.bib`

        @STRING{hh = {Hans Hagen}}
        
        @ELECTRONIC{hh2010,
          author = hh,
          year = {2010},
          title = {Metafun. \CONTEXT\ mkiv},
          url = {http://www.pragma-ade.nl/general/manuals/metafun-s.pdf},
        }
        
        @ARTICLE{hh2010a,
          author = hh,
          title = {The Font Name Mess},
          journal = {MAPS},
          year = {2010},
          volume = {40},
          pages = {2-8},
          keywords = {context},
        }
        
        @ARTICLE{hh2010b,
          author = hh,
          title = {Grouping in Hybrid Environments},
          journal = {MAPS},
          year = {2010},
          volume = {40},
          pages = {67-71},
          keywords = {context},
        }
        
        @BOOK{Eijkhout1991,
          title = {\TeX\ by Topic. A \TeX nician's Reference},
          publisher = {Addison-Wesley},
          year = {1991},
          author = {Victor Eijkhout},
          address = {London},
          keywords = {general},
        }

from the bib module to the directory.

Unfortunately I only get »[[error 2]]« displayed. Please find all files
attached.

Regarding `bibltx` the bib manual does also contain it [2][3]. Searching
the Wiki for it, it says that it was dropped in version 2006.04.06 [4].


Thanks,

Paul


[1] http://wiki.contextgarden.net/Bibliography
[2] http://modules.contextgarden.net/bibman
[3] http://dl.contextgarden.net/modules/bibmod-doc/doc/context/bib/
[4] http://wiki.contextgarden.net/Context_2006.04.06

[-- Attachment #1.1.2: bibtest.pdf --]
[-- Type: application/pdf, Size: 9535 bytes --]

[-- Attachment #1.1.3: bibtest.tex --]
[-- Type: text/x-tex, Size: 271 bytes --]

\usemodule[bib]
\usemodule[bibltx]
\setupbibtex[database=sample]
\setuppublications[numbering=yes] % Show reference numbers in the generated list.
\starttext
As \cite[hh2010b] already indicated, bibtex is a \LaTeX-centric program.
\completepublications
\stoptext

[-- Attachment #1.1.4: sample.bib --]
[-- Type: text/x-bibtex, Size: 768 bytes --]

@STRING{hh = {Hans Hagen}}

@ELECTRONIC{hh2010,
  author = hh,
  year = {2010},
  title = {Metafun. \CONTEXT\ mkiv},
  url = {http://www.pragma-ade.nl/general/manuals/metafun-s.pdf},
}

@ARTICLE{hh2010a,
  author = hh,
  title = {The Font Name Mess},
  journal = {MAPS},
  year = {2010},
  volume = {40},
  pages = {2-8},
  keywords = {context},
}

@ARTICLE{hh2010b,
  author = hh,
  title = {Grouping in Hybrid Environments},
  journal = {MAPS},
  year = {2010},
  volume = {40},
  pages = {67-71},
  keywords = {context},
}

@BOOK{Eijkhout1991,
  title = {\TeX\ by Topic. A \TeX nician's Reference},
  publisher = {Addison-Wesley},
  year = {1991},
  author = {Victor Eijkhout},
  address = {London},
  keywords = {general},
}


[-- Attachment #1.2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: bibliography: current status, Wiki page Bibliography, [[error 2]] and bibltx
  2011-05-20 15:50 bibliography: current status, Wiki page Bibliography, [[error 2]] and bibltx Paul Menzel
@ 2011-05-20 17:04 ` George N. White III
  2011-05-20 20:36   ` Paul Menzel
  2011-05-22 18:06   ` bibliography: current status, Wiki page Bibliography, [[error 2]] and bibltx yoraxe
  0 siblings, 2 replies; 12+ messages in thread
From: George N. White III @ 2011-05-20 17:04 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Fri, May 20, 2011 at 12:50 PM, Paul Menzel
<paulepanter@users.sourceforge.net> wrote:
> Dear ConTeXt folks,
>
>
> I am trying to use the module bib, but I only get [[error 2]] displayed.

I see the same result from "context bibtest".

I was just trying the bib support with a fresh "minimals".  At some
point, I read that the bib module
is no longer needed, so I tried without the \usemodule lines and got
the same result.  Then I replaced
the \completepublications and get something better, but ref. [1] is blank:

%orig: \usemodule[bib]
%orig: \usemodule[bibltx]
\setupbibtex[database=sample]
\setuppublications[numbering=yes] % Show reference numbers in the
generated list.

\starttext
As \cite[hh2010b] already indicated, bibtex is a \LaTeX-centric program.

\placepublications[criterium=all]
%orig:\completepublications
\stoptext


> I am following the Wiki page Bibliography [1], which suggests the
> following example (adapted by me).
>
>        \usemodule[bib]
>        \usemodule[bibltx]
>        \setupbibtex[database=sample]
>        \setuppublications[numbering=yes] % Show reference numbers in the generated list.
>        \starttext
>        As \cite[hh2010b] already indicated, bibtex is a \LaTeX-centric program.
>        \completepublications
>        \stoptext
>
> I copied the file `sample.bib`
>
>        @STRING{hh = {Hans Hagen}}
>
>        @ELECTRONIC{hh2010,
>          author = hh,
>          year = {2010},
>          title = {Metafun. \CONTEXT\ mkiv},
>          url = {http://www.pragma-ade.nl/general/manuals/metafun-s.pdf},
>        }
>
>        @ARTICLE{hh2010a,
>          author = hh,
>          title = {The Font Name Mess},
>          journal = {MAPS},
>          year = {2010},
>          volume = {40},
>          pages = {2-8},
>          keywords = {context},
>        }
>
>        @ARTICLE{hh2010b,
>          author = hh,
>          title = {Grouping in Hybrid Environments},
>          journal = {MAPS},
>          year = {2010},
>          volume = {40},
>          pages = {67-71},
>          keywords = {context},
>        }
>
>        @BOOK{Eijkhout1991,
>          title = {\TeX\ by Topic. A \TeX nician's Reference},
>          publisher = {Addison-Wesley},
>          year = {1991},
>          author = {Victor Eijkhout},
>          address = {London},
>          keywords = {general},
>        }
>
> from the bib module to the directory.
>
> Unfortunately I only get »[[error 2]]« displayed. Please find all files
> attached.
>
> Regarding `bibltx` the bib manual does also contain it [2][3]. Searching
> the Wiki for it, it says that it was dropped in version 2006.04.06 [4].
>
>
> Thanks,
>
> Paul
>
>
> [1] http://wiki.contextgarden.net/Bibliography
> [2] http://modules.contextgarden.net/bibman
> [3] http://dl.contextgarden.net/modules/bibmod-doc/doc/context/bib/
> [4] http://wiki.contextgarden.net/Context_2006.04.06
>
> ___________________________________________________________________________________
> If your question is of interest to others as well, please add an entry to the Wiki!
>
> maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
> webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
> archive  : http://foundry.supelec.fr/projects/contextrev/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________
>



-- 
George N. White III <aa056@chebucto.ns.ca>
Head of St. Margarets Bay, Nova Scotia
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: bibliography: current status, Wiki page Bibliography, [[error 2]] and bibltx
  2011-05-20 17:04 ` George N. White III
@ 2011-05-20 20:36   ` Paul Menzel
  2011-05-22  1:33     ` Li Yanrui (李延瑞)
  2011-05-22 18:06   ` bibliography: current status, Wiki page Bibliography, [[error 2]] and bibltx yoraxe
  1 sibling, 1 reply; 12+ messages in thread
From: Paul Menzel @ 2011-05-20 20:36 UTC (permalink / raw)
  To: ntg-context


[-- Attachment #1.1: Type: text/plain, Size: 2769 bytes --]

Am Freitag, den 20.05.2011, 14:04 -0300 schrieb George N. White III:
> On Fri, May 20, 2011 at 12:50 PM, Paul Menzel wrote:

> > I am trying to use the module bib, but I only get [[error 2]] displayed.
> 
> I see the same result from "context bibtest".
> 
> I was just trying the bib support with a fresh "minimals".  At some
> point, I read that the bib module is no longer needed, so I tried
> without the \usemodule lines and got the same result.  Then I replaced
> the \completepublications and get something better, but ref. [1] is
> blank:
> 
> %orig: \usemodule[bib]
> %orig: \usemodule[bibltx]
> \setupbibtex[database=sample]
> \setuppublications[numbering=yes] % Show reference numbers in the
> generated list.
> 
> \starttext
> As \cite[hh2010b] already indicated, bibtex is a \LaTeX-centric program.
> 
> \placepublications[criterium=all]
> %orig:\completepublications
> \stoptext

Thank you very much for this hint. I am getting the same result as you.
Everything works but the listing of all entries.

[…]

> > I copied the file `sample.bib`
> >
> >        @STRING{hh = {Hans Hagen}}
> >
> >        @ELECTRONIC{hh2010,
> >          author = hh,
> >          year = {2010},
> >          title = {Metafun. \CONTEXT\ mkiv},
> >          url = {http://www.pragma-ade.nl/general/manuals/metafun-s.pdf},
> >        }

I am guessing that `@ELECTRONIC` is the problem.

> >        @ARTICLE{hh2010a,
> >          author = hh,
> >          title = {The Font Name Mess},
> >          journal = {MAPS},
> >          year = {2010},
> >          volume = {40},
> >          pages = {2-8},
> >          keywords = {context},
> >        }
> >
> >        @ARTICLE{hh2010b,
> >          author = hh,
> >          title = {Grouping in Hybrid Environments},
> >          journal = {MAPS},
> >          year = {2010},
> >          volume = {40},
> >          pages = {67-71},
> >          keywords = {context},
> >        }
> >
> >        @BOOK{Eijkhout1991,
> >          title = {\TeX\ by Topic. A \TeX nician's Reference},
> >          publisher = {Addison-Wesley},
> >          year = {1991},
> >          author = {Victor Eijkhout},
> >          address = {London},
> >          keywords = {general},
> >        }
> >
> > from the bib module to the directory.

[…]

If everything is solved I will add a note to the Wiki page stating that
in the current ConTeXt version no module is needed and add a link to the
mailing list thread.


Thanks,

Paul


> > [1] http://wiki.contextgarden.net/Bibliography
> > [2] http://modules.contextgarden.net/bibman
> > [3] http://dl.contextgarden.net/modules/bibmod-doc/doc/context/bib/
> > [4] http://wiki.contextgarden.net/Context_2006.04.06

[-- Attachment #1.2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: bibliography: current status, Wiki page Bibliography, [[error 2]] and bibltx
  2011-05-20 20:36   ` Paul Menzel
@ 2011-05-22  1:33     ` Li Yanrui (李延瑞)
  2011-05-22 16:57       ` bibliography: @ELECTRONIC entries not shown in references section (was: current status, Wiki page Bibliography, [[error 2]] and bibltx) Paul Menzel
  0 siblings, 1 reply; 12+ messages in thread
From: Li Yanrui (李延瑞) @ 2011-05-22  1:33 UTC (permalink / raw)
  To: mailing list for ConTeXt users

2011/5/21 Paul Menzel <paulepanter@users.sourceforge.net>:
>
> Thank you very much for this hint. I am getting the same result as you.
> Everything works but the listing of all entries.
>

You can try "\placepublications[criterium=text]" instead of
"\placepublications[criterium=all]".


-- 
Best regards,

Li Yanrui (李延瑞)
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: bibliography: @ELECTRONIC entries not shown in references section (was: current status, Wiki page Bibliography, [[error 2]] and bibltx)
  2011-05-22  1:33     ` Li Yanrui (李延瑞)
@ 2011-05-22 16:57       ` Paul Menzel
  2011-05-22 17:12         ` bibliography: @ELECTRONIC entries not shown in references section Hans Hagen
  0 siblings, 1 reply; 12+ messages in thread
From: Paul Menzel @ 2011-05-22 16:57 UTC (permalink / raw)
  To: ntg-context


[-- Attachment #1.1: Type: text/plain, Size: 639 bytes --]

Am Sonntag, den 22.05.2011, 09:33 +0800 schrieb Li Yanrui (李延瑞):
> 2011/5/21 Paul Menzel <paulepanter@users.sourceforge.net>:
> >
> > Thank you very much for this hint. I am getting the same result as you.
> > Everything works but the listing of all entries.
> 
> You can try "\placepublications[criterium=text]" instead of
> "\placepublications[criterium=all]".

Thank you for the suggestion. Since the entry `@ELECTRONIC…` is not
referenced in the sample text it is now not placed in the references
section.

The question still remains if `@ELECTRONIC` are not allowed or if this
is an error.


Thanks,

Paul

[-- Attachment #1.2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: bibliography: @ELECTRONIC entries not shown in references section
  2011-05-22 16:57       ` bibliography: @ELECTRONIC entries not shown in references section (was: current status, Wiki page Bibliography, [[error 2]] and bibltx) Paul Menzel
@ 2011-05-22 17:12         ` Hans Hagen
  2011-05-25 13:56           ` Paul Menzel
  0 siblings, 1 reply; 12+ messages in thread
From: Hans Hagen @ 2011-05-22 17:12 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Paul Menzel

On 22-5-2011 6:57, Paul Menzel wrote:

> The question still remains if `@ELECTRONIC` are not allowed or if this
> is an error.

it's more that @ELECTRONIC is not defined

Hans

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
     tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: bibliography: current status, Wiki page Bibliography, [[error 2]] and bibltx
  2011-05-20 17:04 ` George N. White III
  2011-05-20 20:36   ` Paul Menzel
@ 2011-05-22 18:06   ` yoraxe
  2011-05-22 18:36     ` Paul Menzel
  2011-05-22 21:46     ` Pontus Lurcock
  1 sibling, 2 replies; 12+ messages in thread
From: yoraxe @ 2011-05-22 18:06 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Am 20.05.2011 19:04, schrieb George N. White III:
> %orig: \usemodule[bib]
> %orig: \usemodule[bibltx]
> \setupbibtex[database=sample]
> \setuppublications[numbering=yes] % Show reference numbers in the
> generated list.
> 
> \starttext
> As \cite[hh2010b] already indicated, bibtex is a \LaTeX-centric program.
> 
> \placepublications[criterium=all]
> %orig:\completepublications
> \stoptext

It works. But now I got some other problems:
I'd like to have the numbering in brackets, which is not case.
Besides the title is a german one, but all letters except for first one,
are lower-case.
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: bibliography: current status, Wiki page Bibliography, [[error 2]] and bibltx
  2011-05-22 18:06   ` bibliography: current status, Wiki page Bibliography, [[error 2]] and bibltx yoraxe
@ 2011-05-22 18:36     ` Paul Menzel
  2011-05-22 21:46     ` Pontus Lurcock
  1 sibling, 0 replies; 12+ messages in thread
From: Paul Menzel @ 2011-05-22 18:36 UTC (permalink / raw)
  To: ntg-context


[-- Attachment #1.1: Type: text/plain, Size: 977 bytes --]

Am Sonntag, den 22.05.2011, 20:06 +0200 schrieb yoraxe:
> Am 20.05.2011 19:04, schrieb George N. White III:
> > %orig: \usemodule[bib]
> > %orig: \usemodule[bibltx]
> > \setupbibtex[database=sample]
> > \setuppublications[numbering=yes] % Show reference numbers in the
> > generated list.
> > 
> > \starttext
> > As \cite[hh2010b] already indicated, bibtex is a \LaTeX-centric program.
> > 
> > \placepublications[criterium=all]
> > %orig:\completepublications
> > \stoptext
> 
> It works. But now I got some other problems:

Please always open a new thread for new problems or at least update the
subject line.

> I'd like to have the numbering in brackets, which is not case.

I guess you have to read up about `\setuppublications` (and report back
the solution).

> Besides the title is a german one, but all letters except for first one,
> are lower-case.

Sorry, please be more specific and refer to the respective lines.


Thanks,

Paul

[-- Attachment #1.2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: bibliography: current status, Wiki page Bibliography, [[error 2]] and bibltx
  2011-05-22 18:06   ` bibliography: current status, Wiki page Bibliography, [[error 2]] and bibltx yoraxe
  2011-05-22 18:36     ` Paul Menzel
@ 2011-05-22 21:46     ` Pontus Lurcock
  1 sibling, 0 replies; 12+ messages in thread
From: Pontus Lurcock @ 2011-05-22 21:46 UTC (permalink / raw)
  To: ntg-context

On Sun 22 May 2011, yoraxe wrote:

> Besides the title is a german one, but all letters except for first
> one, are lower-case.

This might help: http://www.tex.ac.uk/cgi-bin/texfaq2html?label=capbibtex

Pont
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: bibliography: @ELECTRONIC entries not shown in references section
  2011-05-22 17:12         ` bibliography: @ELECTRONIC entries not shown in references section Hans Hagen
@ 2011-05-25 13:56           ` Paul Menzel
  2011-05-25 14:36             ` Hans Hagen
  0 siblings, 1 reply; 12+ messages in thread
From: Paul Menzel @ 2011-05-25 13:56 UTC (permalink / raw)
  To: ntg-context


[-- Attachment #1.1: Type: text/plain, Size: 546 bytes --]

On So, 2011-05-22 at 19:12 +0200, Hans Hagen wrote:
> On 22-5-2011 6:57, Paul Menzel wrote:
> 
> > The question still remains if `@ELECTRONIC` are not allowed or if this
> > is an error.
> 
> it's more that @ELECTRONIC is not defined

Ok, neither does it appear in the Wikipedia article [1].

Who is responsible for updating the example BibTeX file [2] in the
Minimal distribution then?


Thanks,

Paul


[1] https://secure.wikimedia.org/wikipedia/en/wiki/BibTeX#Entry_Types
[2] /tex/texmf-context/tex/context/bib/sample.bib

[-- Attachment #1.2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: bibliography: @ELECTRONIC entries not shown in references section
  2011-05-25 13:56           ` Paul Menzel
@ 2011-05-25 14:36             ` Hans Hagen
  2011-12-10 15:19               ` Paul Menzel
  0 siblings, 1 reply; 12+ messages in thread
From: Hans Hagen @ 2011-05-25 14:36 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Paul Menzel

On 25-5-2011 3:56, Paul Menzel wrote:
> On So, 2011-05-22 at 19:12 +0200, Hans Hagen wrote:
>> On 22-5-2011 6:57, Paul Menzel wrote:
>>
>>> The question still remains if `@ELECTRONIC` are not allowed or if this
>>> is an error.
>>
>> it's more that @ELECTRONIC is not defined
>
> Ok, neither does it appear in the Wikipedia article [1].
>
> Who is responsible for updating the example BibTeX file [2] in the
> Minimal distribution then?

Thomas is.

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
     tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: bibliography: @ELECTRONIC entries not shown in references section
  2011-05-25 14:36             ` Hans Hagen
@ 2011-12-10 15:19               ` Paul Menzel
  0 siblings, 0 replies; 12+ messages in thread
From: Paul Menzel @ 2011-12-10 15:19 UTC (permalink / raw)
  To: ntg-context


[-- Attachment #1.1.1: Type: text/plain, Size: 852 bytes --]

Am Mittwoch, den 25.05.2011, 16:36 +0200 schrieb Hans Hagen:
> On 25-5-2011 3:56, Paul Menzel wrote:
> > On So, 2011-05-22 at 19:12 +0200, Hans Hagen wrote:
> >> On 22-5-2011 6:57, Paul Menzel wrote:
> >>
> >>> The question still remains if `@ELECTRONIC` are not allowed or if this
> >>> is an error.
> >>
> >> it's more that @ELECTRONIC is not defined
> >
> > Ok, neither does it appear in the Wikipedia article [1].
> >
> > Who is responsible for updating the example BibTeX file [2] in the
> > Minimal distribution then?
> 
> Thomas is.

As far as I can see, the file is still the same in the ConTeXt beta.
Christian updated the Wiki page though [1].

Could you update the file by either applying the attached patch or
replacing it with the attached file?


Thanks,

Paul


[1] http://wiki.contextgarden.net/sample_bib

[-- Attachment #1.1.2: sample.bib --]
[-- Type: text/x-bibtex, Size: 958 bytes --]

% Also in the Wiki: <http://wiki.contextgarden.net/sample_bib>

@STRING{hh = {Hans Hagen}}

% Not defined and therefore commented out by removing the »@«
% http://www.ntg.nl/pipermail/ntg-context/2011/059402.html
ELECTRONIC{hh2010,
  author = hh,
  year = {2010},
  title = {Metafun. \CONTEXT\ mkiv},
  url = {http://www.pragma-ade.nl/general/manuals/metafun-s.pdf},
}

@ARTICLE{hh2010a,
  author = hh,
  title = {The Font Name Mess},
  journal = {MAPS},
  year = {2010},
  volume = {40},
  pages = {2-8},
  keywords = {context},
}

@ARTICLE{hh2010b,
  author = hh,
  title = {Grouping in Hybrid Environments},
  journal = {MAPS},
  year = {2010},
  volume = {40},
  pages = {67-71},
  keywords = {context},
}

@BOOK{Eijkhout1991,
  title = {\TeX\ by Topic. A \TeX nician's Reference},
  publisher = {Addison-Wesley},
  year = {1991},
  author = {Victor Eijkhout},
  address = {London},
  keywords = {general},
}


[-- Attachment #1.1.3: 0001-context-bib-sample.bib-Comment-out-ELECTRONIC-and-ad.patch --]
[-- Type: text/x-patch, Size: 968 bytes --]

From 5abc744ec41407a177a2eaf462ed25d2118db5ae Mon Sep 17 00:00:00 2001
From: Paul Menzel <paulepanter@users.sourceforge.net>
Date: Sat, 10 Dec 2011 15:51:35 +0100
Subject: [PATCH] context/bib/sample.bib: Comment out `@ELECTRONIC` and add comments [1]

[1] http://newton.ex.ac.uk/tex/pack/bibtex/btxdoc/node8.html
---
 tex/context/bib/sample.bib |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/tex/context/bib/sample.bib b/tex/context/bib/sample.bib
index 3f8df62..a3ae35a 100644
--- a/tex/context/bib/sample.bib
+++ b/tex/context/bib/sample.bib
@@ -1,6 +1,10 @@
+% Also in the Wiki: <http://wiki.contextgarden.net/sample_bib>
+
 @STRING{hh = {Hans Hagen}}
 
-@ELECTRONIC{hh2010,
+% Not defined and therefore commented out by removing the »@«
+% http://www.ntg.nl/pipermail/ntg-context/2011/059402.html
+ELECTRONIC{hh2010,
   author = hh,
   year = {2010},
   title = {Metafun. \CONTEXT\ mkiv},
-- 
1.7.7.3


[-- Attachment #1.1.4: bibtest.bbl --]
[-- Type: text/plain, Size: 842 bytes --]

\setuppublicationlist[samplesize={Hag10b},totalnumber=3]

\startpublication[k=Eijkhout1991,t=book,
a={{Eijkhout}},y=1991,
n=3,s=Eij91]
\author[]{Victor}[V.]{}{Eijkhout}
\pubyear{1991}
\title{\TeX\ by Topic. A \TeX nician's Reference}
\city{London}
\pubname{Addison-Wesley}
\keywords{general}
\stoppublication

\startpublication[k=hh2010a,t=article,
a={{Hagen}},y=2010a,
n=1,s=Hag10a]
\artauthor[]{Hans}[H.]{}{Hagen}
\pubyear{2010\maybeyear{a}}
\arttitle{The font name mess}
\journal{MAPS}
\volume{40}
\pages{2-8}
\keywords{context}
\stoppublication

\startpublication[k=hh2010b,t=article,
a={{Hagen}},y=2010b,
n=2,s=Hag10b]
\artauthor[]{Hans}[H.]{}{Hagen}
\pubyear{2010\maybeyear{b}}
\arttitle{Grouping in hybrid environments}
\journal{MAPS}
\volume{40}
\pages{67-71}
\keywords{context}
\stoppublication


[-- Attachment #1.1.5: bibtest.pdf --]
[-- Type: application/pdf, Size: 17291 bytes --]

[-- Attachment #1.1.6: bibtest.tex --]
[-- Type: text/x-tex, Size: 307 bytes --]

\setupbibtex[database=sample, sort=author]
\setuppublications[criterium=all, numbering=yes] % Show reference numbers in the generated list.
\starttext
As \cite[hh2010b] already indicated, bibtex is a \LaTeX-centric program.

\CONTEXT\ \contextmark\ \contextversion

\completepublications
\stoptext

[-- Attachment #1.2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2011-12-10 15:19 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-20 15:50 bibliography: current status, Wiki page Bibliography, [[error 2]] and bibltx Paul Menzel
2011-05-20 17:04 ` George N. White III
2011-05-20 20:36   ` Paul Menzel
2011-05-22  1:33     ` Li Yanrui (李延瑞)
2011-05-22 16:57       ` bibliography: @ELECTRONIC entries not shown in references section (was: current status, Wiki page Bibliography, [[error 2]] and bibltx) Paul Menzel
2011-05-22 17:12         ` bibliography: @ELECTRONIC entries not shown in references section Hans Hagen
2011-05-25 13:56           ` Paul Menzel
2011-05-25 14:36             ` Hans Hagen
2011-12-10 15:19               ` Paul Menzel
2011-05-22 18:06   ` bibliography: current status, Wiki page Bibliography, [[error 2]] and bibltx yoraxe
2011-05-22 18:36     ` Paul Menzel
2011-05-22 21:46     ` Pontus Lurcock

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).