ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Several publication lists
@ 2006-05-15 21:14 nico
  2006-05-16  8:38 ` Taco Hoekwater
  0 siblings, 1 reply; 7+ messages in thread
From: nico @ 2006-05-15 21:14 UTC (permalink / raw)


Hello,

I wonder if it is possible to display several publication lists. Can we  
achieve this with the bib module? What I would like to do is to split the  
publication list into different sections, like this:

\section{Bibliography}
\subsection{Specifications}
... Here are the list of publications that are specifications ...

\subsection{Manuals}
... Here some manuals ...

Regards,
BG

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

* Re: Several publication lists
  2006-05-15 21:14 Several publication lists nico
@ 2006-05-16  8:38 ` Taco Hoekwater
  2006-05-16 12:54   ` nico
  0 siblings, 1 reply; 7+ messages in thread
From: Taco Hoekwater @ 2006-05-16  8:38 UTC (permalink / raw)




nico wrote:
> Hello,
> 
> I wonder if it is possible to display several publication lists. Can we  
> achieve this with the bib module? What I would like to do is to split the  
> publication list into different sections, like this:

You cannot do this, sorry.

Cheers, Taco

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

* Re: Several publication lists
  2006-05-16  8:38 ` Taco Hoekwater
@ 2006-05-16 12:54   ` nico
  2006-05-16 13:27     ` Taco Hoekwater
  0 siblings, 1 reply; 7+ messages in thread
From: nico @ 2006-05-16 12:54 UTC (permalink / raw)


On Tue, 16 May 2006 10:38:18 +0200, Taco Hoekwater <taco@elvenkind.com>  
wrote:

> nico wrote:
>> Hello,
>>
>> I wonder if it is possible to display several publication lists. Can we
>> achieve this with the bib module? What I would like to do is to split  
>> the
>> publication list into different sections, like this:
>
> You cannot do this, sorry.

Hm, I think it could be interesting to add such a feature to context, but  
I understand it cannot be done immediately. Latex already have such things  
(chapterbib, bibtopic) and IMHO there is a real need for this.

Regards,
BG

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

* Re: Several publication lists
  2006-05-16 12:54   ` nico
@ 2006-05-16 13:27     ` Taco Hoekwater
  2006-05-16 21:17       ` nico
  0 siblings, 1 reply; 7+ messages in thread
From: Taco Hoekwater @ 2006-05-16 13:27 UTC (permalink / raw)




nico wrote:
> 
> Hm, I think it could be interesting to add such a feature to context, but  
> I understand it cannot be done immediately. Latex already have such things  

Sure. Can you point me to the documentation of 'bibtopic' and also 
propose a calling / configuration syntax for the ConTeXt  version?
(it is easier for me if I know what to work towards)

Cheers, Taco

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

* Re: Several publication lists
  2006-05-16 13:27     ` Taco Hoekwater
@ 2006-05-16 21:17       ` nico
  2006-05-17  9:08         ` Taco Hoekwater
  0 siblings, 1 reply; 7+ messages in thread
From: nico @ 2006-05-16 21:17 UTC (permalink / raw)


On Tue, 16 May 2006 15:27:46 +0200, Taco Hoekwater <taco@elvenkind.com>  
wrote:

> nico wrote:
>>
>> Hm, I think it could be interesting to add such a feature to context,  
>> but
>> I understand it cannot be done immediately. Latex already have such  
>> things
>
> Sure. Can you point me to the documentation of 'bibtopic'

http://www.tex.ac.uk/tex-archive/macros/latex/contrib/bibtopic/bibtopic.pdf

> and also
> propose a calling / configuration syntax for the ConTeXt  version?
> (it is easier for me if I know what to work towards)

I don't know if it's doable or if it breaks the consistency of the current  
interface, but I would see something like the list mechanism:

\definebiblist[name][\setupbiblist options]
\setupbiblist[name][\setuppublicationlist options]
\setupbibfile[name][\setupbibtex options]
\placebiblist[name]

\definecombinedbiblist[bibgroup][biblist list][\setupcombinedlist options]
\setupcombinedlist[bibgroup][ not yet clear what options it should provide  
]

\startbibentry[name][\startpublication options]

\setupcite[name][what][options] (name optional)
\cite[name][what][ref] or \cite[what][name:ref] (name optional)

To keep the current interface, a default global publication list could  
exist:

\setuppublicationlist = \setupbiblist[publication]
\startpublication = \startbibentry[publication]
\placepublications = \placebiblist[publication]
\setupbibtex = \setupbibfile[publication]

Example of use:

% the specs come only from bibtex files
\definebiblist[specs][criterium=all]
\setupbibtex[specs][database={spec1,spec2},sort=short]

\definebiblist[manuals][criterium=all]
\setupbibtex[manuals][database=manbase,sort=short]

% also an embedded definition for the manuals
\startbibentry[manuals][k=me,t=manual,a=Hoekwater,y=2006]
\author[]{Taco}[T.]{}{Hoekwater}
\title{Publication Module}
\stopbibentry

% all the biblio stuff
\definecombinedbiblist[allbibs][specs,manuals][criterium=all]

% let's go
\starttext
\chapter{The doc}
\section{References in the chapter}
\subsection{Specifications}
\placebiblist[specs][criterium=cite]

\subsection{Manuals}
\placebiblist[manuals][criterium=local]

\section{Introduction}
As explained in \cite[manuals][key][me]...

\chapter{References Summary}
\placecombinedlist[allbibs]
\stoptext

What is not clear for me:
- if the bibentry numbering must be global or could restart to 1 for each  
list,
- if it is really feasible to place the biblists several times in the doc,  
and if so, to which list the \cite actually points to.

I hope that all of this doesn't sound too stupid :-)

Regards,
BG

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

* Re: Several publication lists
  2006-05-16 21:17       ` nico
@ 2006-05-17  9:08         ` Taco Hoekwater
  2006-05-17 19:20           ` nico
  0 siblings, 1 reply; 7+ messages in thread
From: Taco Hoekwater @ 2006-05-17  9:08 UTC (permalink / raw)




nico wrote:
> I don't know if it's doable or if it breaks the consistency of the current  
> interface, but I would see something like the list mechanism:
> 

<<sounds ok,  but it will take quite some time to do this>>

Cheers,
Taco

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

* Re: Several publication lists
  2006-05-17  9:08         ` Taco Hoekwater
@ 2006-05-17 19:20           ` nico
  0 siblings, 0 replies; 7+ messages in thread
From: nico @ 2006-05-17 19:20 UTC (permalink / raw)


On Wed, 17 May 2006 11:08:50 +0200, Taco Hoekwater <taco@elvenkind.com>  
wrote:

> nico wrote:
>> I don't know if it's doable or if it breaks the consistency of the  
>> current
>> interface, but I would see something like the list mechanism:
>
> <<sounds ok,  but it will take quite some time to do this>>

Ok, I can wait. If I can help by testing some beta releases of the module,  
tell me.

Regards,
BG

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

end of thread, other threads:[~2006-05-17 19:20 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-05-15 21:14 Several publication lists nico
2006-05-16  8:38 ` Taco Hoekwater
2006-05-16 12:54   ` nico
2006-05-16 13:27     ` Taco Hoekwater
2006-05-16 21:17       ` nico
2006-05-17  9:08         ` Taco Hoekwater
2006-05-17 19:20           ` nico

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).