ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* m-bib module
@ 2006-08-08 13:50 simon.laplace
  2006-08-09  7:03 ` Taco Hoekwater
  0 siblings, 1 reply; 23+ messages in thread
From: simon.laplace @ 2006-08-08 13:50 UTC (permalink / raw)


Hi there,

I have just installed the latest version of m-bib. Where I had before a 
citation "alpher and bethe" with \cite[author] for a bib-item with two 
authors I get only the first now. What has to be changed in order to get 
two authors in the text while for more than two there will be "alpher et 
al."?

Thanks for a reply
Simon

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

* Re: m-bib module
  2006-08-08 13:50 m-bib module simon.laplace
@ 2006-08-09  7:03 ` Taco Hoekwater
  2006-08-09 15:21   ` Sanjoy Mahajan
  0 siblings, 1 reply; 23+ messages in thread
From: Taco Hoekwater @ 2006-08-09  7:03 UTC (permalink / raw)


simon.laplace@garrulus.com wrote:
> Hi there,
> 
> I have just installed the latest version of m-bib. Where I had before a 
> citation "alpher and bethe" with \cite[author] for a bib-item with two 
> authors I get only the first now. What has to be changed in order to get 
> two authors in the text while for more than two there will be "alpher et 
> al."?

You have to update your base context distribution as well.

Cheers,
Taco

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

* Re: m-bib module
  2006-08-09  7:03 ` Taco Hoekwater
@ 2006-08-09 15:21   ` Sanjoy Mahajan
  2006-08-09 16:04     ` Taco Hoekwater
  2006-08-09 16:12     ` Tobias Burnus
  0 siblings, 2 replies; 23+ messages in thread
From: Sanjoy Mahajan @ 2006-08-09 15:21 UTC (permalink / raw)


> > I have just installed the latest version of m-bib. Where I had before a 
> > citation "alpher and bethe" with \cite[author] for a bib-item with two 
> > authors I get only the first now. What has to be changed in order to get 
> > two authors in the text while for more than two there will be "alpher et 
> > al."?
> 
> You have to update your base context distribution as well.

I have the same problem with the latest ConTeXt (ver:2006.08.08 21:51,
fmt: 2006.8.8).  The following example produces (Pound, 1959) as the
citation in the text rather than giving (Pound and Rebka, 1959).  If I
use \cite[author][Pound-Rebka:1959] to make sure the style is
'author', then I get (Pound) in the text, with no year.  Probably I'm
doing something silly?


\usemodule[bib]

\setuppublicationlist[samplesize={Mid91},totalnumber=1]

\startpublication[k=Pound-Rebka:1959,t=article,
a={{Pound},{Rebka}},y=1959,n=1,s=PR59]
\artauthor[]{R.~V.}[R.~V.]{}{Pound}
\artauthor[]{G.~A.}[G.~A.]{}{Rebka}
\pubyear{1959}
\arttitle{Gravitational red-shift in nuclear resonance}
\journal{Physical Review Letters}
\volume{3}
\pages{439--441}
\stoppublication

\starttext
An incredibly tiny effect!  To find out how it was measured, see their
paper:
\cite[Pound-Rebka:1959].
\stoptext

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

* Re: m-bib module
  2006-08-09 15:21   ` Sanjoy Mahajan
@ 2006-08-09 16:04     ` Taco Hoekwater
  2006-08-09 16:32       ` Sanjoy Mahajan
  2006-08-09 16:12     ` Tobias Burnus
  1 sibling, 1 reply; 23+ messages in thread
From: Taco Hoekwater @ 2006-08-09 16:04 UTC (permalink / raw)




Sanjoy Mahajan wrote:
>>>I have just installed the latest version of m-bib. Where I had before a 
>>>citation "alpher and bethe" with \cite[author] for a bib-item with two 
>>>authors I get only the first now. What has to be changed in order to get 
>>>two authors in the text while for more than two there will be "alpher et 
>>>al."?
>>
>>You have to update your base context distribution as well.
> 
> 
> I have the same problem with the latest ConTeXt (ver:2006.08.08 21:51,
> fmt: 2006.8.8).  The following example produces (Pound, 1959) as the
> citation in the text rather than giving (Pound and Rebka, 1959).  If I
> use \cite[author][Pound-Rebka:1959] to make sure the style is
> 'author', then I get (Pound) in the text, with no year.  Probably I'm
> doing something silly?

No, it is all my fault, sorry. For a quick fix, please add this

   \setupcite[authoryears][authoretallimit=2]

to your document. I will upload a fixed version asap.

Taco

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

* Re: m-bib module
  2006-08-09 15:21   ` Sanjoy Mahajan
  2006-08-09 16:04     ` Taco Hoekwater
@ 2006-08-09 16:12     ` Tobias Burnus
  2006-08-09 20:08       ` Sanjoy Mahajan
  1 sibling, 1 reply; 23+ messages in thread
From: Tobias Burnus @ 2006-08-09 16:12 UTC (permalink / raw)


Hi,

> I have the same problem with the latest ConTeXt (ver:2006.08.08 21:51,
> fmt: 2006.8.8).  The following example produces (Pound, 1959) as the
> citation in the text rather than giving (Pound and Rebka, 1959).

> If I
> use \cite[author][Pound-Rebka:1959] to make sure the style is
> 'author', then I get (Pound) in the text, with no year.  Probably I'm
> doing something silly?
>   
Try 'authoryear' or 'authoryears' if you want to have both, the author
and the year.

Could you try
   \setupcite[authoryears][authoretallimit=2]
   \setupcite[authoryear][authoretallimit=2]
maybe it works. (I still have an older ConTeXt and no time to test.)

Tobias

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

* Re: m-bib module
  2006-08-09 16:04     ` Taco Hoekwater
@ 2006-08-09 16:32       ` Sanjoy Mahajan
  2006-08-09 16:54         ` Taco Hoekwater
  0 siblings, 1 reply; 23+ messages in thread
From: Sanjoy Mahajan @ 2006-08-09 16:32 UTC (permalink / raw)


> No, it is all my fault, sorry. For a quick fix, please add this
>    \setupcite[authoryears][authoretallimit=2]
> to your document. I will upload a fixed version asap.

Thanks, that fixes it.

-Sanjoy

`Never underestimate the evil of which men of power are capable.'
         --Bertrand Russell, _War Crimes in Vietnam_, chapter 1.

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

* Re: m-bib module
  2006-08-09 16:32       ` Sanjoy Mahajan
@ 2006-08-09 16:54         ` Taco Hoekwater
  0 siblings, 0 replies; 23+ messages in thread
From: Taco Hoekwater @ 2006-08-09 16:54 UTC (permalink / raw)


Sanjoy Mahajan wrote:
>>No, it is all my fault, sorry. For a quick fix, please add this
>>   \setupcite[authoryears][authoretallimit=2]
>>to your document. I will upload a fixed version asap.
> 
> 
> Thanks, that fixes it.

Great.

Meanwhile I have also uploaded a fixed version, but the \setupcite
statement is a user-level command that is there to stay so there
is no real reason to update right now.

Cheers, Taco

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

* Re: m-bib module
  2006-08-09 16:12     ` Tobias Burnus
@ 2006-08-09 20:08       ` Sanjoy Mahajan
  0 siblings, 0 replies; 23+ messages in thread
From: Sanjoy Mahajan @ 2006-08-09 20:08 UTC (permalink / raw)


> Try 'authoryear' or 'authoryears' if you want to have both, the author
> and the year.
> 
> Could you try
>    \setupcite[authoryears][authoretallimit=2]
>    \setupcite[authoryear][authoretallimit=2]
> maybe it works. (I still have an older ConTeXt and no time to test.)

Thanks, the

  \setupcite[authoryears][authoretallimit=2]

fixes it.  (And in the latest bib module, Taco has fixed the need for
that line.)

-Sanjoy

`Never underestimate the evil of which men of power are capable.'
         --Bertrand Russell, _War Crimes in Vietnam_, chapter 1.

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

* Re: m-bib module
  2004-10-29  6:52                       ` Martin Kolarik
  2004-10-29  7:02                         ` Taco Hoekwater
@ 2004-10-29 10:17                         ` Adam Lindsay
  1 sibling, 0 replies; 23+ messages in thread
From: Adam Lindsay @ 2004-10-29 10:17 UTC (permalink / raw)


Martin_Kolarik said this at Fri, 29 Oct 2004 08:52:14 +0200:

>Yes, I can see my test file :-) -- you should get the list in the test file
>if you state
>
>\setuppublicationlist
>  [criterium=all]
>
>or
>
>\setuppublicationlist
>  [criterium=section]
>
>for the list of pubs from the current section only.

ohhhh....!
Thanks so much for spelling this out. I was getting very confused because
it wasn't matching up with my last major m-bib-using project, and I
didn't notice that option under \setuppublicationlist.

adam
-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 Adam T. Lindsay, Computing Dept.     atl@comp.lancs.ac.uk
 Lancaster University, InfoLab21        +44(0)1524/510.514
 Lancaster, LA1 4WA, UK             Fax:+44(0)1524/510.492
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

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

* Re: m-bib module
  2004-10-29  6:52                       ` Martin Kolarik
@ 2004-10-29  7:02                         ` Taco Hoekwater
  2004-10-29 10:17                         ` Adam Lindsay
  1 sibling, 0 replies; 23+ messages in thread
From: Taco Hoekwater @ 2004-10-29  7:02 UTC (permalink / raw)



Hi Martin/Adam,

Thank you for investigating this, you have saved me an enormous amount of 
debugging work, I think. 

It is not completely clear to me if I really should change to the module. 
I could insert a 'criterium=all' as default for the list, but since it 
suddenly stopped working, it looks like there is a ConTeXt bug involded 
somewhere. That probably merits investigation as well.

Greetings, Taco

On Fri, 29 Oct 2004 08:52:14 +0200
Martin Kolarik <martin@mii.cz> wrote:

> Yes, I can see my test file :-) -- you should get the list in the test file
> if you state
> 
> \setuppublicationlist
>   [criterium=all]
> 
> or
> 
> \setuppublicationlist
>   [criterium=section]
> 
> for the list of pubs from the current section only.
> 
> I succeeded after this,
> 
> have a nice day,
> 
> Martin
> 
> -----Original Message-----
> From: ntg-context-bounces@ntg.nl [mailto:ntg-context-bounces@ntg.nl]On
> Behalf Of Adam Lindsay
> Sent: Thursday, October 28, 2004 11:01 PM
> To: martin@mii.cz; mailing list for ConTeXt users; Taco Hoekwater
> Subject: Re: [NTG-context] m-bib module
> 
> 
> Martin Kolarik said this at Thu, 28 Oct 2004 20:14:55 +0200:
> 
> >2. if I used simply \placepublications (or \placelist[pubs]) I got nothing.
> >And after some tracing I found that I did not set criterium=something.
> 
> Hum. Thanks for the response, but I tried a minimal file, and it all
> became clear.
> 
> If there's a \section in my test file, \placelist[pubs] and its variants
> doesn't work. If I take it out, the list appears just fine.
> 
> Huh?
> --
> =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
>  Adam T. Lindsay, Computing Dept.     atl@comp.lancs.ac.uk
>  Lancaster University, InfoLab21        +44(0)1524/510.514
>  Lancaster, LA1 4WA, UK             Fax:+44(0)1524/510.492
> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
> 
> _______________________________________________
> ntg-context mailing list
> ntg-context@ntg.nl
> http://www.ntg.nl/mailman/listinfo/ntg-context
> 
> _______________________________________________
> ntg-context mailing list
> ntg-context@ntg.nl
> http://www.ntg.nl/mailman/listinfo/ntg-context

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

* RE: m-bib module
  2004-10-28 21:01                     ` Adam Lindsay
@ 2004-10-29  6:52                       ` Martin Kolarik
  2004-10-29  7:02                         ` Taco Hoekwater
  2004-10-29 10:17                         ` Adam Lindsay
  0 siblings, 2 replies; 23+ messages in thread
From: Martin Kolarik @ 2004-10-29  6:52 UTC (permalink / raw)


Yes, I can see my test file :-) -- you should get the list in the test file
if you state

\setuppublicationlist
  [criterium=all]

or

\setuppublicationlist
  [criterium=section]

for the list of pubs from the current section only.

I succeeded after this,

have a nice day,

Martin

-----Original Message-----
From: ntg-context-bounces@ntg.nl [mailto:ntg-context-bounces@ntg.nl]On
Behalf Of Adam Lindsay
Sent: Thursday, October 28, 2004 11:01 PM
To: martin@mii.cz; mailing list for ConTeXt users; Taco Hoekwater
Subject: Re: [NTG-context] m-bib module


Martin Kolarik said this at Thu, 28 Oct 2004 20:14:55 +0200:

>2. if I used simply \placepublications (or \placelist[pubs]) I got nothing.
>And after some tracing I found that I did not set criterium=something.

Hum. Thanks for the response, but I tried a minimal file, and it all
became clear.

If there's a \section in my test file, \placelist[pubs] and its variants
doesn't work. If I take it out, the list appears just fine.

Huh?
--
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 Adam T. Lindsay, Computing Dept.     atl@comp.lancs.ac.uk
 Lancaster University, InfoLab21        +44(0)1524/510.514
 Lancaster, LA1 4WA, UK             Fax:+44(0)1524/510.492
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

_______________________________________________
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context

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

* Re: m-bib module
  2004-10-28 18:14                   ` Martin Kolarik
@ 2004-10-28 21:01                     ` Adam Lindsay
  2004-10-29  6:52                       ` Martin Kolarik
  0 siblings, 1 reply; 23+ messages in thread
From: Adam Lindsay @ 2004-10-28 21:01 UTC (permalink / raw)


Martin Kolarik said this at Thu, 28 Oct 2004 20:14:55 +0200:

>2. if I used simply \placepublications (or \placelist[pubs]) I got nothing.
>And after some tracing I found that I did not set criterium=something. 

Hum. Thanks for the response, but I tried a minimal file, and it all
became clear.

If there's a \section in my test file, \placelist[pubs] and its variants
doesn't work. If I take it out, the list appears just fine.

Huh?
-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 Adam T. Lindsay, Computing Dept.     atl@comp.lancs.ac.uk
 Lancaster University, InfoLab21        +44(0)1524/510.514
 Lancaster, LA1 4WA, UK             Fax:+44(0)1524/510.492
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

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

* RE: m-bib module
  2004-10-28 17:44                 ` Adam Lindsay
@ 2004-10-28 18:14                   ` Martin Kolarik
  2004-10-28 21:01                     ` Adam Lindsay
  0 siblings, 1 reply; 23+ messages in thread
From: Martin Kolarik @ 2004-10-28 18:14 UTC (permalink / raw)


Hi all,

first I must apologize for delayed (and now induced by Adam too :-)
response. What I have found:

1. startpublication stores data in a stream of data written as is without
any processing. It was my first error -- I use XML and I created publication
full of \XMLops and \XMLflushes, so in the time of usage of the publication
all these macros expanded to empty string. So I have to rewrite XML handler
:-)

2. if I used simply \placepublications (or \placelist[pubs]) I got nothing.
And after some tracing I found that I did not set criterium=something. After
correcting this, publications appeared correctly. I did not continue to
check code after this success, but it seems to me the criterium parameter is
NOT set for publication list by default. My mistake was I did not trust the
bib module documentation, as I expected (myself :-) it is a good habit in
the ConTeXt to set defaults of parameters to the values which allow user for
the first hit catch reasonable output.

So maybe this helps,

have a nice day,

Martin

> -----Original Message-----
> From: ntg-context-bounces@ntg.nl
> [mailto:ntg-context-bounces@ntg.nl]On Behalf Of Adam Lindsay
> Sent: Thursday, October 28, 2004 7:44 PM
> To: mailing list for ConTeXt users; Taco Hoekwater
> Subject: Re: [NTG-context] m-bib module
>
>
> Taco Hoekwater said this at Tue, 19 Oct 2004 16:44:14 +0200:
>
> >It works here, but I am not sure if that means anything. Can you try
> >
> >	texexec --version
> >
> >and perhaps e-mail me a small (wrong) file as well?
>
> I just discovered this didn't work for me, either!
>
> Latest ConTeXt, just-downloaded m-bib-2004-08-30.zip.
>
> The key is here:
> (./ReportLindsay.tuo)
> system         : pubs not found/processed
>
> It simply doesn't find the pubs list, but it's in the .tuo file!
> --
> =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
>  Adam T. Lindsay, Computing Dept.     atl@comp.lancs.ac.uk
>  Lancaster University, InfoLab21        +44(0)1524/510.514
>  Lancaster, LA1 4WA, UK             Fax:+44(0)1524/510.492
> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
>
> _______________________________________________
> ntg-context mailing list
> ntg-context@ntg.nl
> http://www.ntg.nl/mailman/listinfo/ntg-context
>

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

* Re: m-bib module
  2004-10-19 14:44               ` Taco Hoekwater
@ 2004-10-28 17:44                 ` Adam Lindsay
  2004-10-28 18:14                   ` Martin Kolarik
  0 siblings, 1 reply; 23+ messages in thread
From: Adam Lindsay @ 2004-10-28 17:44 UTC (permalink / raw)


Taco Hoekwater said this at Tue, 19 Oct 2004 16:44:14 +0200:

>It works here, but I am not sure if that means anything. Can you try
>
>	texexec --version
>
>and perhaps e-mail me a small (wrong) file as well?

I just discovered this didn't work for me, either!

Latest ConTeXt, just-downloaded m-bib-2004-08-30.zip.

The key is here:
(./ReportLindsay.tuo)
system         : pubs not found/processed

It simply doesn't find the pubs list, but it's in the .tuo file!
-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 Adam T. Lindsay, Computing Dept.     atl@comp.lancs.ac.uk
 Lancaster University, InfoLab21        +44(0)1524/510.514
 Lancaster, LA1 4WA, UK             Fax:+44(0)1524/510.492
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

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

* Re: m-bib module
  2004-10-19 14:36             ` Martin Kolarik
@ 2004-10-19 14:44               ` Taco Hoekwater
  2004-10-28 17:44                 ` Adam Lindsay
  0 siblings, 1 reply; 23+ messages in thread
From: Taco Hoekwater @ 2004-10-19 14:44 UTC (permalink / raw)


Martin Kolarik wrote:
> Hi Taco,
> 
> I am in doubt with \placepublications (\completepublications) -- it seems to
> me it does not work now. If I define publication in the text
> (\startpublication...) I am able to cite it (\cite), but \placepublications
> does not generate any output.

It works here, but I am not sure if that means anything. Can you try

	texexec --version

and perhaps e-mail me a small (wrong) file as well?

Greetings, Taco

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

* RE: m-bib module
  2004-10-18 11:45           ` Taco Hoekwater
  2004-10-18 13:05             ` Fabrice Popineau
@ 2004-10-19 14:36             ` Martin Kolarik
  2004-10-19 14:44               ` Taco Hoekwater
  1 sibling, 1 reply; 23+ messages in thread
From: Martin Kolarik @ 2004-10-19 14:36 UTC (permalink / raw)


Hi Taco,

I am in doubt with \placepublications (\completepublications) -- it seems to
me it does not work now. If I define publication in the text
(\startpublication...) I am able to cite it (\cite), but \placepublications
does not generate any output.

Maybe it is some new stuff -- I remember the publications in the bib module
documentation (your PDF in bib module distribution zip) in the middle of
August, but now the PDF the last \completepublications does not contain.

Thanks for any hints,

Martin

-----Original Message-----
From: ntg-context-bounces@ntg.nl [mailto:ntg-context-bounces@ntg.nl]On
Behalf Of Taco Hoekwater
Sent: Monday, October 18, 2004 1:46 PM
To: mailing list for ConTeXt users
Subject: Re: [NTG-context] m-bib module



Hi Fabrice,

Sorry, I forgot to migrate my alpha bib module when the context alpha
became the 'current distribution'. My latest module is/was still here:

	http://tex.aanhet.net/bib/alpha/

I will fix the website a.s.a.p.

On Mon, 18 Oct 2004 13:40:34 +0200, Fabrice wrote:

> I guess the new module is the one using t-bib.tex and t-list.tex.
>


--
groeten,

Taco
_______________________________________________
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context

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

* RE: m-bib module
  2004-10-18 11:45           ` Taco Hoekwater
@ 2004-10-18 13:05             ` Fabrice Popineau
  2004-10-19 14:36             ` Martin Kolarik
  1 sibling, 0 replies; 23+ messages in thread
From: Fabrice Popineau @ 2004-10-18 13:05 UTC (permalink / raw)


> Sorry, I forgot to migrate my alpha bib module when the context alpha
> became the 'current distribution'. My latest module is/was still here:
> 
> 	http://tex.aanhet.net/bib/alpha/
> 
> I will fix the website a.s.a.p.

Many thanks !

Fabrice

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

* Re: m-bib module
  2004-10-18 11:40         ` Fabrice Popineau
@ 2004-10-18 11:45           ` Taco Hoekwater
  2004-10-18 13:05             ` Fabrice Popineau
  2004-10-19 14:36             ` Martin Kolarik
  0 siblings, 2 replies; 23+ messages in thread
From: Taco Hoekwater @ 2004-10-18 11:45 UTC (permalink / raw)



Hi Fabrice,

Sorry, I forgot to migrate my alpha bib module when the context alpha
became the 'current distribution'. My latest module is/was still here:

	http://tex.aanhet.net/bib/alpha/

I will fix the website a.s.a.p. 

On Mon, 18 Oct 2004 13:40:34 +0200, Fabrice wrote:

> I guess the new module is the one using t-bib.tex and t-list.tex.
> 


-- 
groeten,

Taco

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

* RE: m-bib module
  2004-10-18 11:19       ` Hans Hagen
@ 2004-10-18 11:40         ` Fabrice Popineau
  2004-10-18 11:45           ` Taco Hoekwater
  0 siblings, 1 reply; 23+ messages in thread
From: Fabrice Popineau @ 2004-10-18 11:40 UTC (permalink / raw)
  Cc: n9020

> this is related to the low level interface that is now english, so, one
> needs the latest bib module
> 
>    http://tex.aanhet.net/bib/
> 

Unfortunately, I'm already using it. So either the real new one is hidden
somewhere else or there is still a problem.

system         : macros of module bib loaded

(c:\Documents and Settings\popineau\My
Documents/texmf/tex/context/bib/t-bib.tex
! Undefined control sequence.
l.332 \definieerlijst
                     [pubs][pubs]
? 
system         : macros of module list loaded

(c:\Documents and Settings\popineau\My
Documents/texmf/tex/context/bib/t-list.tex)
! Undefined control sequence.
<argument> \c!nummercommando 
                             =\bibleftnumber

I guess the new module is the one using t-bib.tex and t-list.tex.

Fabrice

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

* Re: m-bib module
  2004-10-18 10:54     ` Fabrice Popineau
@ 2004-10-18 11:19       ` Hans Hagen
  2004-10-18 11:40         ` Fabrice Popineau
  0 siblings, 1 reply; 23+ messages in thread
From: Hans Hagen @ 2004-10-18 11:19 UTC (permalink / raw)
  Cc: n9020

Fabrice Popineau wrote:
> I get an error recently with the m-bib module, probably due to some misuse
> of it:
> 
> 
> (c:\Documents and Settings\popineau\My
> Documents/texmf/tex/context/bib/t-bib.tex
> ! Undefined control sequence.
> l.332 \definieerlijst
>                      [pubs][pubs]
> ?
> system         : macros of module list loaded
> 
> (c:\Documents and Settings\popineau\My
> Documents/texmf/tex/context/bib/t-list.tex)
> ! Undefined control sequence.
> <argument> \c!nummercommando
>                              =\bibleftnumber
> \xprocesscommaitem #1,#2->\if ,#1
>                                  ,\@EA \xprocesscommaitem \else \if
> ]#1\@EAE...
> <argument> ...mmando =\bibleftnumber , \c!variant
>                                                   =,\c!variant =apa
> \xdogetparameters #1]->\xprocesscommaitem #1
>                                             ,],\@relax@
> \dosetuppublications ...tnumber , \c!variant =,#1]
>                                                   \doifsomething
> {\@@pbvaria...
> l.1215        [\c!variant=apa]
> 
> ?
> 
> Any clue how to fix this ?

this is related to the low level interface that is now english, so, one 
needs the latest bib module

   http://tex.aanhet.net/bib/

Sorry for the inconvenience

Hans

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
      tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------

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

* RE: m-bib module
  2004-09-07  8:49   ` Taco Hoekwater
@ 2004-10-18 10:54     ` Fabrice Popineau
  2004-10-18 11:19       ` Hans Hagen
  0 siblings, 1 reply; 23+ messages in thread
From: Fabrice Popineau @ 2004-10-18 10:54 UTC (permalink / raw)
  Cc: n9020

I get an error recently with the m-bib module, probably due to some misuse
of it:


(c:\Documents and Settings\popineau\My
Documents/texmf/tex/context/bib/t-bib.tex
! Undefined control sequence.
l.332 \definieerlijst
                     [pubs][pubs]
?
system         : macros of module list loaded

(c:\Documents and Settings\popineau\My
Documents/texmf/tex/context/bib/t-list.tex)
! Undefined control sequence.
<argument> \c!nummercommando
                             =\bibleftnumber
\xprocesscommaitem #1,#2->\if ,#1
                                 ,\@EA \xprocesscommaitem \else \if
]#1\@EAE...
<argument> ...mmando =\bibleftnumber , \c!variant
                                                  =,\c!variant =apa
\xdogetparameters #1]->\xprocesscommaitem #1
                                            ,],\@relax@
\dosetuppublications ...tnumber , \c!variant =,#1]
                                                  \doifsomething
{\@@pbvaria...
l.1215        [\c!variant=apa]

?

Any clue how to fix this ?

Thanks in advance,

Fabrice 

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

* Re: m-bib module
  2004-09-06 18:38 ` a
@ 2004-09-07  8:49   ` Taco Hoekwater
  2004-10-18 10:54     ` Fabrice Popineau
  0 siblings, 1 reply; 23+ messages in thread
From: Taco Hoekwater @ 2004-09-07  8:49 UTC (permalink / raw)
  Cc: n9020


Hi art,

You need to delete the files indicated below, since they are left over from 
an old version of the bib module. The bib style files in your tex/context/bib 
dir are newer and use commands that are not in the older m-bib that gets
loaded by context.

> (/usr/local/teTeX/share/texmf.local/tex/context/extra/m-bib/m-bib.tex
> (/usr/local/teTeX/share/texmf.local/tex/context/extra/m-bib/m-list.tex


This confusion is my fault in a way, because the newer release uses t-XXX.tex 
filenames instead of m-XXX.tex (different module prefix) and I forgot to 
advertise that. Apparently context searches for m- files before t- files.


Greetings, Taco

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

* m-bib module
       [not found] <20040906100001.C27FC12799@ronja.ntg.nl>
@ 2004-09-06 18:38 ` a
  2004-09-07  8:49   ` Taco Hoekwater
  0 siblings, 1 reply; 23+ messages in thread
From: a @ 2004-09-06 18:38 UTC (permalink / raw)



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

Mr. Taco
I have made updates to my system now I am getting the following error

the following is a log out put of what I am getting


################## Typesetting mba-paper3
# this line is commented out
texexec --pdf mba-paper3


  TeXExec 4.0 - ConTeXt / PRAGMA ADE 1997-2003

             executable : pdfetex
                 format : cont-en
              inputfile : mba-paper3
                 output : pdftex
              interface : en
           current mode : none
                TeX run : 1

This is pdfeTeXk, Version 3.141592-1.11b-2.1 (Web2C 7.5.2)
  %&-line parsing enabled.
  (/usr/local/teTeX/share/texmf.tetex/web2c/cp8bit.tcx)
entering extended mode
(./mba-paper3.tex{/usr/local/teTeX/share/texmf.local/pdftex/config/ 
pdftex.cfg}

ConTeXt  ver: 2004.1.25  fmt: 2004.9.6  int: english  mes: english

language       : language en is active
<protectionstate 0>
system         : cont-new loaded
(/usr/local/teTeX/share/texmf.local/tex/context/base/cont-new.tex
systems        : beware: some patches loaded from cont-new.tex!
system (E-TEX) : [line 46]
system (E-TEX) : [line 131]
system (E-TEX) : [line 185]
system (E-TEX) : [line 271] \lastnodetype
)
system         : cont-old loaded
(/usr/local/teTeX/share/texmf.local/tex/context/base/cont-old.tex
loading        : Context Old Macros
)
system         : cont-fil loaded
(/usr/local/teTeX/share/texmf.local/tex/context/base/cont-fil.tex
loading        : Context File Synonyms
)
bodyfont       : 12pt rm is loaded
language       : patterns 2:2-en-2 3:2-uk-2 4:2-de-2 5:2-fr-2 6:2-es-2  
7:2-it-2
  8:2-nl-2 loaded
specials       : tex,postscript,rokicki loaded
system         : mba-paper3.top loaded
(./mba-paper3.top
specials       : loading definition file tpd
(/usr/local/teTeX/share/texmf.local/tex/context/base/spec-tpd.tex
specials       : loading definition file fdf
(/usr/local/teTeX/share/texmf.local/tex/context/base/spec-fdf.tex
<unprotect 3> <unprotect 4>
system (E-TEX) : [line 1909] \ifcsname
<protect 4> <protect 3>)
specials       : fdf loaded
<unprotect 3> <protect 3>)
specials       : fdf,tpd loaded
)
pdftex         : needs map file: original-context-symbol.map
pdftex         : needs map file: pl0-ams-cmr.map
pdftex         : needs map file: original-vogel-symbol.map
structure      : begin of sectionblock frontmatter
system         : macros of module bib loaded
(/usr/local/teTeX/share/texmf.local/tex/context/extra/m-bib/m-bib.tex
problems       : set k!author to author overloads auteur
system         : macros of module list loaded
(/usr/local/teTeX/share/texmf.local/tex/context/extra/m-bib/m-list.tex)
publications   : loading formatting style from bibl-apa
(/usr/local/teTeX/share/texmf.local/tex/context/bib/bibl-apa.tex
! Undefined control sequence.
<argument> \c!authoretaldisplay
                                 =5
\xprocesscommaitem #1,#2->\if ,#1
                                  ,\@EA \xprocesscommaitem \else \if  
]#1\@EAE...
<argument> ...taldisplay =5, \c!editoretaldisplay
                                                   =5,  
\c!artauthoretaldispla...

\xdogetparameters #1]->\xprocesscommaitem #1
                                             ,],\@relax@
\dosetuppublicationlist ...9},totalnumber={99},#1]
                                                   \stellijstin  
[pubs][\c!cri...
l.87 ]<<<<<<<<<-------------
WHEN I texexec the file


tks for your time and help

art

On Sep 6, 2004, at 5:00 AM, ntg-context-request@ntg.nl wrote:

> Send ntg-context mailing list submissions to
> 	ntg-context@ntg.nl
>
> To subscribe or unsubscribe via the World Wide Web, visit
> 	http://www.ntg.nl/mailman/listinfo/ntg-context
> or, via email, send a message with subject or body 'help' to
> 	ntg-context-request@ntg.nl
>
> You can reach the person managing the list at
> 	ntg-context-owner@ntg.nl
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of ntg-context digest..."
>
>
> Today's Topics:
>
>    1. CMAP and IL2 encoding (Vit Zyka)
>    2. Re: ntg-context Digest, Vol 3, Issue 7 (n9020@cox.net)
>    3. footnotes (short: behind, long: below)? (Steffen Wolfrum)
>    4. Re: Re: ntg-context Digest, Vol 3, Issue 7 (Taco Hoekwater)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Sun, 05 Sep 2004 17:09:09 +0200
> From: Vit Zyka <vit.zyka@seznam.cz>
> Subject: [NTG-context] CMAP and IL2 encoding
> To: ConTeXt <ntg-context@ntg.nl>
> Message-ID: <413B2C15.9080305@seznam.cz>
> Content-Type: text/plain; charset="us-ascii"
>
> Nice Sunday evening Hans,
>
> I played with ToUnicode resource (for correct copy&paste and search
> opperation in PDF). I noticed a package cmap.sty was done by Mr.
> Volovich for LaTeX a year ago; I did one (cmap.tex) for plain TeX
> yesterday and started to be interested in the situation in ConTeXt. No
> wonder you did it 4 years ago. But I met some minor problems:
>
> 1) if you run example file
>      \useencoding[pfr]
>      \setupbodyfont[csr]
>
>      \starttext
>        test \`z \'z \bf test \sl test \bs quite funny \`z \page
>        test \`z \'z \bf test \sl test \bs quite funny \`z \page
>      \stoptext
>    you obtain /ToUnicode resource ONLY for first roman variant. It is  
> due
>    to a condition in the file enco-pfr.tex
>      \def\doincludepdffontresource
>       {\ifcsname\s!ucmap\fontfile\endcsname\else
>          \dodoincludepdffontresource
>        \fi}
>    The condition is correct but the \fontfile is not changed when \bf,
>    \it, etc. is used (it is still cscsc10 (?)).
>
>    Might you look at a proper \fontfile definition?
>
> 2) Technical note: in ConTeXt the il2 encoding is defined. But the
>     definition is not ISO-8859-2 (Latin 2, IL2) encoding sharp. The
>     definition is CS font encoding (IL2cs or 8z). It is derived from  
> il2
>     but it differ in 49 positions (!). For
>     usage in Czech or Slovac languages it causes no problem but what if
>     somebody will want to use a proper il2 font?
>     If you want I can prepare
>     both IL2 and (a bit richer) il2cs (8z?) enco-??.tex files.
>
> 3) File pdfr-il2.tex with CMAP definition is proper IL2 mapping. So now
>     we combine IL2 CMAP mapping with IL2cs ConTeXt encoding. It is
>     nosence. Suggested solution: use csr fonts with new IL2cs encoding
>     and create new pdfr-il2cs.tex.
>
> 4) Definitions of CMAP encodings are stored in pdfr-??.tex files - it
>     means in TeX format. But the common way is to be a stand-alone PS
>     file, see attachement. Now I know about 5 files from Mr. Volovich
>     (Cork, 3 russian, vietnamese) and two from me (IL2, IL2cs). Such  
> file
>     can be easily included by \pdfobj stream file {} mechanism.
>     Question: I can prepare pdfr-il2cs.tex but is it not better to
>     use more standard stand-alone files in ConTeXt?
>
> Vit Zyka
> -------------- next part --------------
> A non-text attachment was scrubbed...
> Name: il2.cmap
> Type: application/postscript
> Size: 1886 bytes
> Desc: not available
> Url :  
> http://www.ntg.nl/pipermail/ntg-context/attachments/20040905/8c63738f/ 
> il2.ps
> -------------- next part --------------
> A non-text attachment was scrubbed...
> Name: il2cs.cmap
> Type: application/postscript
> Size: 1846 bytes
> Desc: not available
> Url :  
> http://www.ntg.nl/pipermail/ntg-context/attachments/20040905/8c63738f/ 
> il2cs.ps
>
> ------------------------------
>
> Message: 2
> Date: Sun, 5 Sep 2004 12:21:16 -0500
> From: n9020@cox.net
> Subject: [NTG-context] Re: ntg-context Digest, Vol 3, Issue 7
> To: ntg-context@ntg.nl
> Message-ID: <FE63B9FC-FF5F-11D8-AFBE-003065D685DC@cox.net>
> Content-Type: text/plain; charset=US-ASCII; format=flowed
>
> Taco,
>
> Thanks on the timely response
>
> This is BibTeX, Version 0.99c (Web2C 7.5.2)
> The top-level auxiliary file: mba-paper3.aux
> I couldn't open style file cont-no.bst
> ---line 2 of file mba-paper3.aux
>   : \bibstyle{cont-no
>   :                  }
> I'm skipping whatever remains of this command
> I found no style file---while reading file mba-paper3.aux
> is the error I get after
> running the changes you recommended
> tried also changes style file in aux file myself no success
> also check the file permissons on the style files I am running this on
> Mac OS X
> with ITexMac interface .
>   My bbl is blank not importing from my bibtex file.  I have also tried
> a manual
> bbl file using guidelines by documentation.
> Bibtex overwrites with blank and still get the error can not open
> cont-no.  Thanks for your help .. .If I missed configuration please
> point the docs I have missed and I will  make the corrections
>
>
> art
>
>
> On Sep 3, 2004, at 5:00 AM, ntg-context-request@ntg.nl wrote:
>
>> Send ntg-context mailing list submissions to
>> 	ntg-context@ntg.nl
>>
>> To subscribe or unsubscribe via the World Wide Web, visit
>> 	http://www.ntg.nl/mailman/listinfo/ntg-context
>> or, via email, send a message with subject or body 'help' to
>> 	ntg-context-request@ntg.nl
>>
>> You can reach the person managing the list at
>> 	ntg-context-owner@ntg.nl
>>
>> When replying, please edit your Subject line so it is more specific
>> than "Re: Contents of ntg-context digest..."
>>
>>
>> Today's Topics:
>>
>>    1. Taco bib module (n9020@cox.net)
>>    2. Re: Taco bib module (Taco Hoekwater)
>>    3. Re: concatenate PDF files. (Taco Hoekwater)
>>    4. Re: lc code of ` (Taco Hoekwater)
>>    5. Re: [FONTS] Japanese Unicode (Taco Hoekwater)
>>    6. Re: lc code of ` (Hans Hagen)
>>
>>
>> ----------------------------------------------------------------------
>>
>> Message: 1
>> Date: Thu, 2 Sep 2004 19:15:11 -0500
>> From: n9020@cox.net
>> Subject: [NTG-context] Taco bib module
>> To: ntg-context@ntg.nl
>> Message-ID: <526A43F2-FD3E-11D8-AC4A-003065D685DC@cox.net>
>> Content-Type: text/plain; charset=US-ASCII; format=flowed
>>
>> tried compling per readme get error unable to find file if aux is
>>      defined for cont-ab.bst\usemodule[bib]
>>      \setupbibtex[database={mba}] % use mba.bib
>>      \setupbibtex[sort=author]
>>      \setuppublications[alternative=apa]
>>      \setuppublications[refcommand=author]
>>      am i missing something and is there anymore information about
>>      bibl-apa.tex
>>
>> art
>>
>>
>>
>> ------------------------------
>>
>> Message: 2
>> Date: Fri, 3 Sep 2004 08:26:18 +0200
>> From: Taco Hoekwater <taco@elvenkind.com>
>> Subject: Re: [NTG-context] Taco bib module
>> To: mailing list for ConTeXt users <ntg-context@ntg.nl>
>> Message-ID: <20040903082618.0389bfba.taco@elvenkind.com>
>> Content-Type: text/plain; charset=US-ASCII
>>
>> On Thu, 2 Sep 2004 19:15:11 -0500
>> n9020@cox.net wrote:
>>
>>> tried compling per readme get error unable to find file if aux is
>>>      defined for cont-ab.bst
>>
>> Please try:
>>
>>  \usemodule[bib]
>>  \setupbibtex[database={mba},sort=author]
>>  \setuppublications[alternative=apa,refcommand=author]
>>
>> If that doesn't work, please cut&paste the actual error
>> message.
>>
>> Greetings, Taco
>>
>>
>> ------------------------------
>>
>> Message: 3
>> Date: Fri, 3 Sep 2004 08:50:32 +0200
>> From: Taco Hoekwater <taco@elvenkind.com>
>> Subject: Re: [NTG-context] concatenate PDF files.
>> To: mailing list for ConTeXt users <ntg-context@ntg.nl>
>> Message-ID: <20040903085032.63d8fdb4.taco@elvenkind.com>
>> Content-Type: text/plain; charset=US-ASCII
>>
>> On Thu, 2 Sep 2004 14:01:11 -0700 (PDT)
>> Paulo Ney de Souza <desouza@Math.Berkeley.EDU> wrote:
>>
>>> So does anyne know how to use "texexec" to concatenate two PDF files
>>> and
>>> preseve as much of the file as possible (links, opening format, ...)  
>>> ?
>>
>> --pdfcombine, --pdfcopy and --pdfselect switches are also available,
>> but my guess is that what you want is (currently) not possible.
>>
>> What texexec actually does is: it creates a temporary TeX input file
>> that starts with the \setuppaper, \setuplayout etc. implementing the
>> options you have given on texexec's commandline. In the document body
>> it then includes (every) page(s) of the pdf file(s) as an external
>> image. This image is scaled and rotated etc. as needed.
>>
>> This process probably trashes the internal structure of the document.
>>
>>
>> Greetings, Taco
>>
>>
>> ------------------------------
>>
>> Message: 4
>> Date: Fri, 3 Sep 2004 09:30:43 +0200
>> From: Taco Hoekwater <taco@elvenkind.com>
>> Subject: Re: [NTG-context] lc code of `
>> To: mailing list for ConTeXt users <ntg-context@ntg.nl>
>> Message-ID: <20040903093043.45501d14@glenlivet.elvenkind.com>
>> Content-Type: text/plain; charset=US-ASCII
>>
>> On Thu, 02 Sep 2004 17:49:55 +0200, Hans wrote:
>>
>>>> I, for one, consider 100% reliable hyphenation more important than
>>>> 100% correct case folding.
>>>>
>>>>
>>> so i should drop the \lccode`\'=`\'
>>
>> If nobody disagrees with me, I must be right :-)
>>
>> -- 
>> groeten,
>>
>> Taco
>>
>>
>> ------------------------------
>>
>> Message: 5
>> Date: Fri, 3 Sep 2004 09:39:21 +0200
>> From: Taco Hoekwater <taco@elvenkind.com>
>> Subject: Re: [NTG-context] [FONTS] Japanese Unicode
>> To: mailing list for ConTeXt users <ntg-context@ntg.nl>
>> Message-ID: <20040903093921.290a9604@glenlivet.elvenkind.com>
>> Content-Type: text/plain; charset=US-ASCII
>>
>>
>> Hi,
>>
>> Let me start by saying I don't actually understand what is going on. I
>> only
>> reply because it is usually the case that if you have warnings like
>> these
>> from pdfetex (with a resolution 'at 600' included)
>>
>>> Warning: pdfetex (file cork-lmr10): Font cork-lmr10 at 600 not found
>>> Warning: pdfetex (file mona30xx-raw-mona): Font mona30xx-raw-mona at
>>> 600
>>
>> then usually there is a missing map entry for that font, or the map
>> file is not
>> loaded by pdftex at all.
>>
>>
>> -- 
>> groeten,
>>
>> Taco
>>
>>
>> ------------------------------
>>
>> Message: 6
>> Date: Fri, 03 Sep 2004 10:40:54 +0200
>> From: Hans Hagen <pragma@wxs.nl>
>> Subject: Re: [NTG-context] lc code of `
>> To: mailing list for ConTeXt users <ntg-context@ntg.nl>
>> Message-ID: <41382E16.9020106@wxs.nl>
>> Content-Type: text/plain; charset=us-ascii; format=flowed
>>
>> Taco Hoekwater wrote:
>>
>>> <>If nobody disagrees with me, I must be right :-)
>>
>> ok, i dropped it
>>
>> Hans
>>
>> -----------------------------------------------------------------
>>                                           Hans Hagen | PRAGMA ADE
>>               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
>>      tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
>>                                              | www.pragma-pod.nl
>> -----------------------------------------------------------------
>>
>>
>>
>> ------------------------------
>>
>> _______________________________________________
>> ntg-context mailing list
>> ntg-context@ntg.nl
>> http://www.ntg.nl/mailman/listinfo/ntg-context
>>
>>
>> End of ntg-context Digest, Vol 3, Issue 7
>> *****************************************
>>
>
>
>
> ------------------------------
>
> Message: 3
> Date: Sun, 5 Sep 2004 23:44:18 +0200
> From: Steffen Wolfrum <context@st.estfiles.de>
> Subject: [NTG-context] footnotes (short: behind, long: below)?
> To: ntg-context@ntg.nl
> Message-ID: <a06002000bd6136061a5a@[62.134.73.69]>
> Content-Type: text/plain; charset="us-ascii"
>
> Hi,
>
> is there a predefined command for placing short footnotes
> at the bottom of each page but horizontally continuos?
>
> Is saw this way of typesetting footnotes in an "old"  
> (seventies)-typeset philosophical book.
> It looks likes this:
>
> body text body text body
> text body  text body bo-
> dy  text body  text body.
> ------
> 1 short   2 short 3 too
> 4 short
> 5 but hey: the long note
> starts in a new line!
>
>
> I have never seen footnotes like this before.
> But it reads very pleasant:
> This way you don't have lot of empty white space (withs short notes),
> and it still is very clear (for the long footnote starts on a new  
> line).
>
>
> Is it possible to typeset this in ConTeXt?
>
> Steffen
>
>
> ------------------------------
>
> Message: 4
> Date: Mon, 6 Sep 2004 08:55:40 +0200
> From: Taco Hoekwater <taco@elvenkind.com>
> Subject: Re: [NTG-context] Re: ntg-context Digest, Vol 3, Issue 7
> To: mailing list for ConTeXt users <ntg-context@ntg.nl>
> Message-ID: <20040906085540.31ff8e91.taco@elvenkind.com>
> Content-Type: text/plain; charset=US-ASCII
>
>
> Hi art,
>
> On Sun, 5 Sep 2004 12:21:16 -0500 n9020@cox.net wrote:
>
>> This is BibTeX, Version 0.99c (Web2C 7.5.2)
>> The top-level auxiliary file: mba-paper3.aux
>> I couldn't open style file cont-no.bst
>> ---line 2 of file mba-paper3.aux
>>   : \bibstyle{cont-no
>>   :                  }
>> I'm skipping whatever remains of this command
>
>
> Bibtex says it cannot find cont-no.bst (which is one of four bst files
> that are in the bib module distibutuin). If this was TeXLive, I'd say:
>
> 	'have you run mktexlsr already?'
>
> But I don't know if this applies under Mac OS X as well. Perhaps a
> Macintosh user can help you better.
>
> Greetings, Taco
>
>
> ------------------------------
>
> _______________________________________________
> ntg-context mailing list
> ntg-context@ntg.nl
> http://www.ntg.nl/mailman/listinfo/ntg-context
>
>
> End of ntg-context Digest, Vol 3, Issue 10
> ******************************************
>

[-- Attachment #1.2: Type: text/enriched, Size: 17172 bytes --]

Mr. Taco

I have made updates to my system now I am getting the following error


the following is a log out put of what I am getting 



<fixed><bigger>################## Typesetting mba-paper3

# this line is commented out

texexec --pdf mba-paper3



 TeXExec 4.0 - ConTeXt / PRAGMA ADE 1997-2003


            executable : pdfetex

                format : cont-en

             inputfile : mba-paper3

                output : pdftex

             interface : en

          current mode : none

               TeX run : 1


This is pdfeTeXk, Version 3.141592-1.11b-2.1 (Web2C 7.5.2)

 %&-line parsing enabled.

 (/usr/local/teTeX/share/texmf.tetex/web2c/cp8bit.tcx)

entering extended mode

(./mba-paper3.tex{/usr/local/teTeX/share/texmf.local/pdftex/config/pdftex.cfg}


ConTeXt  ver: 2004.1.25  fmt: 2004.9.6  int: english  mes: english


language       : language en is active

<<protectionstate 0>

system         : cont-new loaded

(/usr/local/teTeX/share/texmf.local/tex/context/base/cont-new.tex

systems        : beware: some patches loaded from cont-new.tex!

system (E-TEX) : [line 46] 

system (E-TEX) : [line 131] 

system (E-TEX) : [line 185] 

system (E-TEX) : [line 271] \lastnodetype 

)

system         : cont-old loaded

(/usr/local/teTeX/share/texmf.local/tex/context/base/cont-old.tex

loading        : Context Old Macros

)

system         : cont-fil loaded

(/usr/local/teTeX/share/texmf.local/tex/context/base/cont-fil.tex

loading        : Context File Synonyms

)

bodyfont       : 12pt rm is loaded

language       : patterns 2:2-en-2 3:2-uk-2 4:2-de-2 5:2-fr-2 6:2-es-2
7:2-it-2

 8:2-nl-2 loaded

specials       : tex,postscript,rokicki loaded

system         : mba-paper3.top loaded

(./mba-paper3.top

specials       : loading definition file tpd

(/usr/local/teTeX/share/texmf.local/tex/context/base/spec-tpd.tex

specials       : loading definition file fdf

(/usr/local/teTeX/share/texmf.local/tex/context/base/spec-fdf.tex

<<unprotect 3> <<unprotect 4>

system (E-TEX) : [line 1909] \ifcsname 

<<protect 4> <<protect 3>)

specials       : fdf loaded

<<unprotect 3> <<protect 3>)

specials       : fdf,tpd loaded

)

pdftex         : needs map file: original-context-symbol.map

pdftex         : needs map file: pl0-ams-cmr.map

pdftex         : needs map file: original-vogel-symbol.map

structure      : begin of sectionblock frontmatter

system         : macros of module bib loaded

(/usr/local/teTeX/share/texmf.local/tex/context/extra/m-bib/m-bib.tex

problems       : set k!author to author overloads auteur

system         : macros of module list loaded

(/usr/local/teTeX/share/texmf.local/tex/context/extra/m-bib/m-list.tex)

publications   : loading formatting style from bibl-apa

(/usr/local/teTeX/share/texmf.local/tex/context/bib/bibl-apa.tex

<color><param>8080,0000,0000</param>! Undefined control sequence.

</color><<argument> \c!authoretaldisplay 

                                =5

\xprocesscommaitem #1,#2->\if ,#1

                                 ,\@EA \xprocesscommaitem \else \if
]#1\@EAE...

<<argument> ...taldisplay =5, \c!editoretaldisplay 

                                                  =5,
\c!artauthoretaldispla...


\xdogetparameters #1]->\xprocesscommaitem #1

                                            ,],\@relax@ 

\dosetuppublicationlist ...9},totalnumber={99},#1]

                                                  \stellijstin
[pubs][\c!cri...

<color><param>8080,0000,0000</param>l.<underline>87</underline>
]</color><color><param>FFFF,4BD9,4BD9</param><<<<<<<<<<<<<<<<<<-------------

WHEN I texexec the file</color><color><param>8080,0000,0000</param>

</color></bigger></fixed>


tks for your time and help


art


On Sep 6, 2004, at 5:00 AM, ntg-context-request@ntg.nl wrote:


<excerpt>Send ntg-context mailing list submissions to

	ntg-context@ntg.nl


To subscribe or unsubscribe via the World Wide Web, visit

	http://www.ntg.nl/mailman/listinfo/ntg-context

or, via email, send a message with subject or body 'help' to

	ntg-context-request@ntg.nl


You can reach the person managing the list at

	ntg-context-owner@ntg.nl


When replying, please edit your Subject line so it is more specific

than "Re: Contents of ntg-context digest..."



Today's Topics:


   1. CMAP and IL2 encoding (Vit Zyka)

   2. Re: ntg-context Digest, Vol 3, Issue 7 (n9020@cox.net)

   3. footnotes (short: behind, long: below)? (Steffen Wolfrum)

   4. Re: Re: ntg-context Digest, Vol 3, Issue 7 (Taco Hoekwater)



----------------------------------------------------------------------


Message: 1

Date: Sun, 05 Sep 2004 17:09:09 +0200

From: Vit Zyka <<vit.zyka@seznam.cz>

Subject: [NTG-context] CMAP and IL2 encoding

To: ConTeXt <<ntg-context@ntg.nl>

Message-ID: <<413B2C15.9080305@seznam.cz>

Content-Type: text/plain; charset="us-ascii"


Nice Sunday evening Hans,


I played with ToUnicode resource (for correct copy&paste and search 

opperation in PDF). I noticed a package cmap.sty was done by Mr. 

Volovich for LaTeX a year ago; I did one (cmap.tex) for plain TeX 

yesterday and started to be interested in the situation in ConTeXt. No 

wonder you did it 4 years ago. But I met some minor problems:


1) if you run example file

     \useencoding[pfr]

     \setupbodyfont[csr]


     \starttext

       test \`z \'z \bf test \sl test \bs quite funny \`z \page

       test \`z \'z \bf test \sl test \bs quite funny \`z \page

     \stoptext

   you obtain /ToUnicode resource ONLY for first roman variant. It is
due

   to a condition in the file enco-pfr.tex

     \def\doincludepdffontresource

      {\ifcsname\s!ucmap\fontfile\endcsname\else

         \dodoincludepdffontresource

       \fi}

   The condition is correct but the \fontfile is not changed when \bf,

   \it, etc. is used (it is still cscsc10 (?)).


   Might you look at a proper \fontfile definition?


2) Technical note: in ConTeXt the il2 encoding is defined. But the

    definition is not ISO-8859-2 (Latin 2, IL2) encoding sharp. The

    definition is CS font encoding (IL2cs or 8z). It is derived from
il2

    but it differ in 49 positions (!). For

    usage in Czech or Slovac languages it causes no problem but what if

    somebody will want to use a proper il2 font?

    If you want I can prepare

    both IL2 and (a bit richer) il2cs (8z?) enco-??.tex files.


3) File pdfr-il2.tex with CMAP definition is proper IL2 mapping. So now

    we combine IL2 CMAP mapping with IL2cs ConTeXt encoding. It is

    nosence. Suggested solution: use csr fonts with new IL2cs encoding

    and create new pdfr-il2cs.tex.


4) Definitions of CMAP encodings are stored in pdfr-??.tex files - it

    means in TeX format. But the common way is to be a stand-alone PS

    file, see attachement. Now I know about 5 files from Mr. Volovich

    (Cork, 3 russian, vietnamese) and two from me (IL2, IL2cs). Such
file

    can be easily included by \pdfobj stream file {} mechanism.

    Question: I can prepare pdfr-il2cs.tex but is it not better to

    use more standard stand-alone files in ConTeXt?


Vit Zyka

-------------- next part --------------

A non-text attachment was scrubbed...

Name: il2.cmap

Type: application/postscript

Size: 1886 bytes

Desc: not available

Url :
http://www.ntg.nl/pipermail/ntg-context/attachments/20040905/8c63738f/il2.ps

-------------- next part --------------

A non-text attachment was scrubbed...

Name: il2cs.cmap

Type: application/postscript

Size: 1846 bytes

Desc: not available

Url :
http://www.ntg.nl/pipermail/ntg-context/attachments/20040905/8c63738f/il2cs.ps


------------------------------


Message: 2

Date: Sun, 5 Sep 2004 12:21:16 -0500

From: n9020@cox.net

Subject: [NTG-context] Re: ntg-context Digest, Vol 3, Issue 7

To: ntg-context@ntg.nl

Message-ID: <<FE63B9FC-FF5F-11D8-AFBE-003065D685DC@cox.net>

Content-Type: text/plain; charset=US-ASCII; format=flowed


Taco,


Thanks on the timely response


This is BibTeX, Version 0.99c (Web2C 7.5.2)

The top-level auxiliary file: mba-paper3.aux

I couldn't open style file cont-no.bst

---line 2 of file mba-paper3.aux

  : \bibstyle{cont-no

  :                  }

I'm skipping whatever remains of this command

I found no style file---while reading file mba-paper3.aux

is the error I get after

running the changes you recommended

tried also changes style file in aux file myself no success

also check the file permissons on the style files I am running this on 

Mac OS X

with ITexMac interface .

  My bbl is blank not importing from my bibtex file.  I have also
tried 

a manual

bbl file using guidelines by documentation.

Bibtex overwrites with blank and still get the error can not open

cont-no.  Thanks for your help .. .If I missed configuration please 

point the docs I have missed and I will  make the corrections



art



On Sep 3, 2004, at 5:00 AM, ntg-context-request@ntg.nl wrote:


<excerpt>Send ntg-context mailing list submissions to

	ntg-context@ntg.nl


To subscribe or unsubscribe via the World Wide Web, visit

	http://www.ntg.nl/mailman/listinfo/ntg-context

or, via email, send a message with subject or body 'help' to

	ntg-context-request@ntg.nl


You can reach the person managing the list at

	ntg-context-owner@ntg.nl


When replying, please edit your Subject line so it is more specific

than "Re: Contents of ntg-context digest..."



Today's Topics:


   1. Taco bib module (n9020@cox.net)

   2. Re: Taco bib module (Taco Hoekwater)

   3. Re: concatenate PDF files. (Taco Hoekwater)

   4. Re: lc code of ` (Taco Hoekwater)

   5. Re: [FONTS] Japanese Unicode (Taco Hoekwater)

   6. Re: lc code of ` (Hans Hagen)



----------------------------------------------------------------------


Message: 1

Date: Thu, 2 Sep 2004 19:15:11 -0500

From: n9020@cox.net

Subject: [NTG-context] Taco bib module

To: ntg-context@ntg.nl

Message-ID: <<526A43F2-FD3E-11D8-AC4A-003065D685DC@cox.net>

Content-Type: text/plain; charset=US-ASCII; format=flowed


tried compling per readme get error unable to find file if aux is

     defined for cont-ab.bst\usemodule[bib]

     \setupbibtex[database={mba}] % use mba.bib

     \setupbibtex[sort=author]

     \setuppublications[alternative=apa]

     \setuppublications[refcommand=author]

     am i missing something and is there anymore information about

     bibl-apa.tex


art




------------------------------


Message: 2

Date: Fri, 3 Sep 2004 08:26:18 +0200

From: Taco Hoekwater <<taco@elvenkind.com>

Subject: Re: [NTG-context] Taco bib module

To: mailing list for ConTeXt users <<ntg-context@ntg.nl>

Message-ID: <<20040903082618.0389bfba.taco@elvenkind.com>

Content-Type: text/plain; charset=US-ASCII


On Thu, 2 Sep 2004 19:15:11 -0500

n9020@cox.net wrote:


<excerpt>tried compling per readme get error unable to find file if
aux is

     defined for cont-ab.bst

</excerpt>

Please try:


 \usemodule[bib]

 \setupbibtex[database={mba},sort=author]

 \setuppublications[alternative=apa,refcommand=author]


If that doesn't work, please cut&paste the actual error

message.


Greetings, Taco



------------------------------


Message: 3

Date: Fri, 3 Sep 2004 08:50:32 +0200

From: Taco Hoekwater <<taco@elvenkind.com>

Subject: Re: [NTG-context] concatenate PDF files.

To: mailing list for ConTeXt users <<ntg-context@ntg.nl>

Message-ID: <<20040903085032.63d8fdb4.taco@elvenkind.com>

Content-Type: text/plain; charset=US-ASCII


On Thu, 2 Sep 2004 14:01:11 -0700 (PDT)

Paulo Ney de Souza <<desouza@Math.Berkeley.EDU> wrote:


<excerpt>So does anyne know how to use "texexec" to concatenate two
PDF files 

and

preseve as much of the file as possible (links, opening format, ...) ?

</excerpt>

--pdfcombine, --pdfcopy and --pdfselect switches are also available,

but my guess is that what you want is (currently) not possible.


What texexec actually does is: it creates a temporary TeX input file

that starts with the \setuppaper, \setuplayout etc. implementing the

options you have given on texexec's commandline. In the document body

it then includes (every) page(s) of the pdf file(s) as an external

image. This image is scaled and rotated etc. as needed.


This process probably trashes the internal structure of the document.



Greetings, Taco



------------------------------


Message: 4

Date: Fri, 3 Sep 2004 09:30:43 +0200

From: Taco Hoekwater <<taco@elvenkind.com>

Subject: Re: [NTG-context] lc code of `

To: mailing list for ConTeXt users <<ntg-context@ntg.nl>

Message-ID: <<20040903093043.45501d14@glenlivet.elvenkind.com>

Content-Type: text/plain; charset=US-ASCII


On Thu, 02 Sep 2004 17:49:55 +0200, Hans wrote:


<excerpt><excerpt>I, for one, consider 100% reliable hyphenation more
important than

100% correct case folding.



</excerpt>so i should drop the \lccode`\'=`\'

</excerpt>

If nobody disagrees with me, I must be right :-)


-- 

groeten,


Taco



------------------------------


Message: 5

Date: Fri, 3 Sep 2004 09:39:21 +0200

From: Taco Hoekwater <<taco@elvenkind.com>

Subject: Re: [NTG-context] [FONTS] Japanese Unicode

To: mailing list for ConTeXt users <<ntg-context@ntg.nl>

Message-ID: <<20040903093921.290a9604@glenlivet.elvenkind.com>

Content-Type: text/plain; charset=US-ASCII



Hi,


Let me start by saying I don't actually understand what is going on. I 

only

reply because it is usually the case that if you have warnings like 

these

from pdfetex (with a resolution 'at 600' included)


<excerpt>Warning: pdfetex (file cork-lmr10): Font cork-lmr10 at 600
not found

Warning: pdfetex (file mona30xx-raw-mona): Font mona30xx-raw-mona at 

600

</excerpt>

then usually there is a missing map entry for that font, or the map 

file is not

loaded by pdftex at all.



-- 

groeten,


Taco



------------------------------


Message: 6

Date: Fri, 03 Sep 2004 10:40:54 +0200

From: Hans Hagen <<pragma@wxs.nl>

Subject: Re: [NTG-context] lc code of `

To: mailing list for ConTeXt users <<ntg-context@ntg.nl>

Message-ID: <<41382E16.9020106@wxs.nl>

Content-Type: text/plain; charset=us-ascii; format=flowed


Taco Hoekwater wrote:


<excerpt><<>If nobody disagrees with me, I must be right :-)

</excerpt>

ok, i dropped it


Hans


-----------------------------------------------------------------

                                          Hans Hagen | PRAGMA ADE

              Ridderstraat 27 | 8061 GH Hasselt | The Netherlands

     tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com

                                             | www.pragma-pod.nl

-----------------------------------------------------------------




------------------------------


_______________________________________________

ntg-context mailing list

ntg-context@ntg.nl

http://www.ntg.nl/mailman/listinfo/ntg-context



End of ntg-context Digest, Vol 3, Issue 7

*****************************************


</excerpt>



------------------------------


Message: 3

Date: Sun, 5 Sep 2004 23:44:18 +0200

From: Steffen Wolfrum <<context@st.estfiles.de>

Subject: [NTG-context] footnotes (short: behind, long: below)?

To: ntg-context@ntg.nl

Message-ID: <<a06002000bd6136061a5a@[62.134.73.69]>

Content-Type: text/plain; charset="us-ascii"


Hi,


is there a predefined command for placing short footnotes

at the bottom of each page but horizontally continuos?


Is saw this way of typesetting footnotes in an "old"
(seventies)-typeset philosophical book.

It looks likes this:


body text body text body

text body  text body bo-

dy  text body  text body.

------

1 short   2 short 3 too

4 short

5 but hey: the long note

starts in a new line!



I have never seen footnotes like this before.

But it reads very pleasant:

This way you don't have lot of empty white space (withs short notes),

and it still is very clear (for the long footnote starts on a new
line).



Is it possible to typeset this in ConTeXt?


Steffen



------------------------------


Message: 4

Date: Mon, 6 Sep 2004 08:55:40 +0200

From: Taco Hoekwater <<taco@elvenkind.com>

Subject: Re: [NTG-context] Re: ntg-context Digest, Vol 3, Issue 7

To: mailing list for ConTeXt users <<ntg-context@ntg.nl>

Message-ID: <<20040906085540.31ff8e91.taco@elvenkind.com>

Content-Type: text/plain; charset=US-ASCII



Hi art,


On Sun, 5 Sep 2004 12:21:16 -0500 n9020@cox.net wrote:


<excerpt>This is BibTeX, Version 0.99c (Web2C 7.5.2)

The top-level auxiliary file: mba-paper3.aux

I couldn't open style file cont-no.bst

---line 2 of file mba-paper3.aux

  : \bibstyle{cont-no

  :                  }

I'm skipping whatever remains of this command

</excerpt>


Bibtex says it cannot find cont-no.bst (which is one of four bst files 

that are in the bib module distibutuin). If this was TeXLive, I'd say:


	'have you run mktexlsr already?'


But I don't know if this applies under Mac OS X as well. Perhaps a 

Macintosh user can help you better.


Greetings, Taco



------------------------------


_______________________________________________

ntg-context mailing list

ntg-context@ntg.nl

http://www.ntg.nl/mailman/listinfo/ntg-context



End of ntg-context Digest, Vol 3, Issue 10

******************************************


</excerpt>

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

_______________________________________________
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context

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

end of thread, other threads:[~2006-08-09 20:08 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-08-08 13:50 m-bib module simon.laplace
2006-08-09  7:03 ` Taco Hoekwater
2006-08-09 15:21   ` Sanjoy Mahajan
2006-08-09 16:04     ` Taco Hoekwater
2006-08-09 16:32       ` Sanjoy Mahajan
2006-08-09 16:54         ` Taco Hoekwater
2006-08-09 16:12     ` Tobias Burnus
2006-08-09 20:08       ` Sanjoy Mahajan
     [not found] <20040906100001.C27FC12799@ronja.ntg.nl>
2004-09-06 18:38 ` a
2004-09-07  8:49   ` Taco Hoekwater
2004-10-18 10:54     ` Fabrice Popineau
2004-10-18 11:19       ` Hans Hagen
2004-10-18 11:40         ` Fabrice Popineau
2004-10-18 11:45           ` Taco Hoekwater
2004-10-18 13:05             ` Fabrice Popineau
2004-10-19 14:36             ` Martin Kolarik
2004-10-19 14:44               ` Taco Hoekwater
2004-10-28 17:44                 ` Adam Lindsay
2004-10-28 18:14                   ` Martin Kolarik
2004-10-28 21:01                     ` Adam Lindsay
2004-10-29  6:52                       ` Martin Kolarik
2004-10-29  7:02                         ` Taco Hoekwater
2004-10-29 10:17                         ` Adam Lindsay

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