Re: [NTG-context] Bibliography in luatex: another question

2008-01-20 Thread Taco Hoekwater
Jean Magnan de Bornier wrote:
 Hi all,
 I encounter a strange behaviour with luatex:
 An entry of my bib file has this author's name:
 
 author =   {Antoine {Destutt de Tracy}},
 
 I enclose the complex name with {} to avoid confusion with the first name,
 as is usual with bibtex. But with a \cite[author][destv] command, the
 result in the pdf is:
 (Des- tutt de Tra- cy) 
 which never happened with pdftex or xetex.

... and shouldn't in luatex either. Please send me a small minimal
file for testing offlist.

Best wishes, Taco

 Any idea?

___
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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Bibliography in luatex: another question (for Hans Hagen)

2008-01-20 Thread Taco Hoekwater

Hi,

Jean Magnan de Bornier wrote:
 Hi all,
 I encounter a strange behaviour with luatex:
 An entry of my bib file has this author's name:
 
 author =   {Antoine {Destutt de Tracy}},
 
 I enclose the complex name with {} to avoid confusion with the first name,
 as is usual with bibtex. But with a \cite[author][destv] command, the
 result in the pdf is:
 (Des- tutt de Tra- cy) 
 which never happened with pdftex or xetex.

This comes down to buggy behaviour of the internal \hyphenatedurl
macro.

Hans, can you make \hyphenatedurl stop attempting to re-\hbox stuff
in mkiv? Those trial typesettings make the embedded discretionaries
become visible.

Best wishes,
Taco
___
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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


[NTG-context] Bibliography in luatex: another question

2008-01-19 Thread Jean Magnan de Bornier
Hi all,
I encounter a strange behaviour with luatex:
An entry of my bib file has this author's name:

author = {Antoine {Destutt de Tracy}},

I enclose the complex name with {} to avoid confusion with the first name,
as is usual with bibtex. But with a \cite[author][destv] command, the
result in the pdf is:
(Des- tutt de Tra- cy) 
which never happened with pdftex or xetex.

Any idea?
-- 
Jean
___
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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Bibliography and luatex

2008-01-17 Thread Taco Hoekwater


Jean Magnan de Bornier wrote:
 Le 16 janvier à 22:43:28 Thomas A. Schmitz [EMAIL PROTECTED] écrit 
 notamment:
 
 | I have successfully used the bib module with luatex, but I had to run  
 | bibtex manually on the file once. Have you tried that?
 | Thomas
 
 Well thanks! I did it but still the same; besides I saw this in the blg
 file:
 This is BibTeX, Version 0.99c (Web2C 7.5.6)
 The top-level auxiliary file: taist.aux
 I couldn't open style file cont-no.bst
 
 but this file is there and readable by any user!?!

Perhaps there is a problem with the setup of the minimals,
your environment or texmf.cnf should contain a setting for
BSTINPUTS. I have here:

   BSTINPUTS = .;{$TXRESOURCES}//;{$CTXDEVTXPATH};$TEXMF/bibtex/bst//

Best wishes,
Taco

___
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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Bibliography and luatex

2008-01-17 Thread Mojca Miklavec
 | Perhaps there is a problem with the setup of the minimals,
 | your environment or texmf.cnf should contain a setting for
 | BSTINPUTS. I have here:
 
 |BSTINPUTS = .;{$TXRESOURCES}//;{$CTXDEVTXPATH};$TEXMF/bibtex/bst//

 That was exactly it, Thank you Taco!
 (something to fix in minimals then...)

Done and untested. (texmf.cnf originates in context.cnf)

Thanks for reporting.

Mojca
___
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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


[NTG-context] Bibliography and luatex

2008-01-16 Thread Jean Magnan de Bornier
Hi all,

Using luatex from the minimals at minimals.contextgarden.net (linux), I am
unable to have bibtex working: here is a minimal example:
..
\usemodule[bib]
\usemodule[bibltx]
\setupbibtex [database=/home/jean/BIB/biblio.bib]
 \setuppublications[]
\setuppublicationlist[]
\setupcite[]
\starttext
Bonjour de luatex!
\blank
LUA  \cite[year][destv]
\startlua
a = 1.5
b = 1.8
c = a*b
tex.print(c)
\stoplua
\completepublications[criterium=all]
\stoptext
..

I see this in the messages:

publications   : warning: cite argument destv is unknown on 139

pdftex and xetex engines find it without problem.

What did I miss?
-- 
Jean
___
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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Bibliography and luatex

2008-01-16 Thread Jean Magnan de Bornier
Le 16 janvier à 22:43:28 Thomas A. Schmitz [EMAIL PROTECTED] écrit 
notamment:

| I have successfully used the bib module with luatex, but I had to run  
| bibtex manually on the file once. Have you tried that?

| Thomas

Well thanks! I did it but still the same; besides I saw this in the blg
file:
This is BibTeX, Version 0.99c (Web2C 7.5.6)
The top-level auxiliary file: taist.aux
I couldn't open style file cont-no.bst

but this file is there and readable by any user!?!

| On Jan 16, 2008, at 7:56 PM, Jean Magnan de Bornier wrote:

|  Hi all,
| 
|  Using luatex from the minimals at minimals.contextgarden.net  
|  (linux), I am
|  unable to have bibtex working: here is a minimal example:
|  ..
|  \usemodule[bib]
|  \usemodule[bibltx]
|  \setupbibtex [database=/home/jean/BIB/biblio.bib]
|  \setuppublications[]
|  \setuppublicationlist[]
|  \setupcite[]
|  \starttext
|  Bonjour de luatex!
|  \blank
|  LUA  \cite[year][destv]
|  \startlua
|  a = 1.5
|  b = 1.8
|  c = a*b
|  tex.print(c)
|  \stoplua
|  \completepublications[criterium=all]
|  \stoptext
|  ..
| 
|  I see this in the messages:
| 
|  publications   : warning: cite argument destv is unknown on 139
| 
|  pdftex and xetex engines find it without problem.
| 
|  What did I miss?
|  -- 
|  Jean
|  
___
|  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  : https://foundry.supelec.fr/projects/contextrev/
|  wiki : http://contextgarden.net
|  
___

| 
___
| 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  : https://foundry.supelec.fr/projects/contextrev/
| wiki : http://contextgarden.net
| 
___


-- 
Jean
___
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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___