Re: [NTG-context] Context 2006.08.04 released

2006-08-08 Thread Hans Hagen
Sanjoy Mahajan wrote:
 in such case you need to add a \dontleavehmode to force tex into
 starting a paragraph
 

 Is that better than using \noindentation (suggested by the other
 Mahajan)?  The one problem with it that I found is an extra space in
 indentation for the first paragraph. I guess it's because there's a
 space in horizontal mode somewhere that isn't being ignored (as it
 would have been in vertical mode)?
   
hm, try to nail that space down and let me know 

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


Re: [NTG-context] Context 2006.08.04 released

2006-08-08 Thread Taco Hoekwater


Nicolas Grilly wrote:
 
 Why does it break column alignment? Is it normal?

A quick test looks fine to me. What precisely is wrong?

Taco

% testfile
\setupTABLE[column][each][aligncharacter=yes, alignmentcharacter={,}]

\definestartstop[tableau][
 before={\blank[2*big]},
 commands={\switchtobodyfont[10pt]},
 after={\blank[big]}]

\starttext
\starttableau
\bTABLE \bTR \bTD 2,22 \eTD  \bTD 2   \eTD \eTR
 \bTR \bTD 22,2 \eTD  \bTD 222 \eTD \eTR \eTABLE
\stoptableau
\stoptext
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Context 2006.08.04 released

2006-08-08 Thread Hans Hagen
Renaud AUBIN wrote:


 DemiBold causes problems here... Demibold seems to work cleanly...
   
all should be DemiBold; fixed 


-
  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


Re: [NTG-context] Context 2006.08.04 released

2006-08-08 Thread Nicolas Grilly
Taco Hoekwater wrote:
 A quick test looks fine to me. What precisely is wrong?

My test file to reproduce the problem is at the end of this message.
When executing this test file, you should see numbers in table 2 are
not correctly aligned.

When you comment \starttableau and \stoptableau, columns are correctly aligned.

It seems the problem exists only when table 1 and table 2 have not the
same number of columns.

Thanks for your help,

Nicolas Grilly


%testfile

\setuppapersize [A4, landscape] [A4, landscape]

\definestartstop[tableau][
before={\blank[2*big]},
commands={\switchtobodyfont[10pt]},
after={\blank[big]}
]

\setupTABLE[column][each][align=middle, aligncharacter=yes,
alignmentcharacter={,}]

\starttext

\subject{Table 1 - Numbers in this table are correctly aligned}

\starttableau
\bTABLE
\bTR
\bTH Nombre de trucs \eTH
\bTH Evolution des trucs \eTH
\bTH Revenu des trucs \eTH
\bTH Evolution des trucs \eTH
\eTR
\bTR
\bTD 38 229 \eTD
\bTD +8,3\% \eTD
\bTD 387 930 k\$ \eTD
\bTD +8,3\% \eTD
\eTR
\bTR
\bTD 29 616 \eTD
\bTD +7,0\% \eTD
\bTD 272 241 k\$ \eTD
\bTD +0,7\% \eTD
\eTR
\eTABLE
\stoptableau

\subject{Table 2 - Numbers in these tables are not aligned}

\starttableau
\bTABLE
\bTR
\bTH Nombre de trucs \eTH
\bTH Part des trucs \eTH
\bTH Evolution des trucs \eTH
\bTH Revenu des trucs \eTH
\bTH Part des trucs \eTH
\bTH Evolution des trucs \eTH
\eTR
\bTR
\bTD 27 269 \eTD
\bTD 92,1\% \eTD
\bTD +7,3\% \eTD
\bTD 127 110 k\$ \eTD
\bTD 46,7\% \eTD
\bTD -2,0\% \eTD
\eTR
\bTR
\bTD 20 084 \eTD
\bTD 67,8\% \eTD
\bTD +1,6\% \eTD
\bTD 65 770 k\$ \eTD
\bTD 24,2\% \eTD
\bTD +2,7\% \eTD
\eTR
\eTABLE
\stoptableau

\stoptext
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Context 2006.08.04 released

2006-08-08 Thread Renaud AUBIN




Ok, works with Demi"B"old

lbd.afm gives
FontName LucidaBright-Demi
FullName Lucida Bright Demibold
FamilyName LucidaBright
Weight DemiBold

So, afaiu, you use the Weight to suffix the font's name...
But I don't understand why Demibold works ? Strange ? Could you explain
?

The result of
\placeformula
\startformula[lucida]
 1 \Gamma \alpha x
\stopformula

\placeformula
\startformula[lucida]
 1 \Gamma {\bfm \alpha x}
\stopformula

\placeformula
\startformula[lucidaboldmath]
 1 \Gamma \alpha x
\stopformula

\placeformula
\startformula[lucidaboldmath]
 1 \Gamma {\bfm \alpha x}
\stopformula
doesn't match the one displayed in "This Way" (\startformula[lucida] 1
\Gamma {\bfm \alpha x} \stopformula returns Demi in "This Way" and
Math-AltItalic in my test file)... Odd or not ?

Renaud

Hans Hagen a crit:

  Renaud AUBIN wrote:
  
  

DemiBold causes problems here... Demibold seems to work cleanly...
  

  
  all should be DemiBold; fixed 


-
  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


  




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


Re: [NTG-context] Context 2006.08.04 released

2006-08-08 Thread Hans Hagen
Renaud AUBIN wrote:
 Ok, works with DemiBold

 lbd.afm gives
 FontName LucidaBright-Demi
 FullName Lucida Bright Demibold
 FamilyName LucidaBright
   

ah, i see, so we should use Demibold
 Weight DemiBold

 So, afaiu, you use the Weight to suffix the font's name...
 But I don't understand why Demibold works ? Strange ? Could you explain ?
   
this are internal names, so in principle you could use then in \definefont

hm, so maybe we should use just LucidaBright-Demi

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


Re: [NTG-context] Context 2006.08.04 released

2006-08-08 Thread Renaud AUBIN




I'm agree to use Demibold ;) (my type-buy is ready)

Can you test:

\placeformula
\startformula[lucida]
 1 \Gamma \alpha x
\stopformula

\placeformula
\startformula[lucida]
 1 \Gamma {\bfm \alpha x}
\stopformula

\placeformula
\startformula[lucidaboldmath]
 1 \Gamma \alpha x
\stopformula

\placeformula
\startformula[lucidaboldmath]
 1 \Gamma {\bfm \alpha x}
\stopformula

please and compare with
http://www.pragma-ade.com/general/magazines/mag-0005.pdf where you say
"For Lucida lovers, we prepared some typescripts that provide (mixed)
bold math." page 5

Hans Hagen a crit:

  Renaud AUBIN wrote:
  
  
Ok, works with Demi"B"old

lbd.afm gives
FontName LucidaBright-Demi
FullName Lucida Bright Demibold
FamilyName LucidaBright
  

  
  
ah, i see, so we should use Demibold
  
  
Weight DemiBold

So, afaiu, you use the Weight to suffix the font's name...
But I don't understand why Demibold works ? Strange ? Could you explain ?
  

  
  this are internal names, so in principle you could use then in \definefont

hm, so maybe we should use just LucidaBright-Demi

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


  




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


Re: [NTG-context] Context 2006.08.04 released

2006-08-07 Thread Renaud AUBIN

Hi,

A suggestion for the next release:

diff type-buy.tex type-buy.tex.20060804
114c114
   \definefontsynonym [MathBeta]  [LucidaNewMath-Demibold]
---
   \definefontsynonym [MathBeta]  [LucidaNewMath-DemiBold]
123c123
   \definefontsynonym [MathBetaBold]  [LucidaNewMath-Demibold] % ??
---
   \definefontsynonym [MathBetaBold]  [LucidaNewMath-DemiBold] % ??
175c175
   \definefontsynonym [LucidaNewMath-Demibold]  [lbmd]
---
   \definefontsynonym [LucidaNewMath-DemiBold]  [lbmd]


DemiBold causes problems here... Demibold seems to work cleanly...

Renaud

Taco Hoekwater a écrit :

Hello all,

I am pleased to announce that the new ConTeXt release from Hans Hagen
can be downloaded as of now from the Pragma ADE website or one of its
mirrors.

   http://www.pragma-ade.com/context/current/cont-tmf.zip
   http://context.aanhet.net/context/current/cont-tmf.zip
   http://mirror.contextgarden.net/context/current/cont-tmf.zip

The current release has version 2006.08.04

A very short list of changes is given below. As usual, there is an
html page with more detailed release notes available on the Wiki, see:

   http://wiki.contextgarden.net/Release_Notes

New features since  2006.07.28:

* \framed (and -text) now support an [indenting=] key
* support for russian hyphenation
* new version of the bib module
* \[lL]commaaccent character definitions

Bugfixes:
* column alignment in natural tables
* image inclusion:
   * bounding box discovery using rli files fixed
   * fix for Aleph in global TRT documents
   * some still-needed definitions from former supp-pdf re-instated
* disappearing subtextblocks
* unicode table 002 fix
* some identation problems removed

Happy TeXing,

Taco Hoekwater

___
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


Re: [NTG-context] Context 2006.08.04 released

2006-08-07 Thread Nicolas Grilly
Hello Taco,

Thanks for this new release. But it seems the fix for the bug column
alignment in natural tables doesn't work.

I installed and tried this new release with the examples Peter and I
posted some days ago on this list and the columns of last table are
still mis-aligned.

Or I have a problem with my ConTeXt installation, or there is an issue
with the bug fix. Any advice?

Nicolas


On 8/7/06, Taco Hoekwater [EMAIL PROTECTED] wrote:
 Hello all,

 I am pleased to announce that the new ConTeXt release from Hans Hagen
 can be downloaded as of now from the Pragma ADE website or one of its
 mirrors.

http://www.pragma-ade.com/context/current/cont-tmf.zip
http://context.aanhet.net/context/current/cont-tmf.zip
http://mirror.contextgarden.net/context/current/cont-tmf.zip

 The current release has version 2006.08.04

 A very short list of changes is given below. As usual, there is an
 html page with more detailed release notes available on the Wiki, see:

http://wiki.contextgarden.net/Release_Notes

 New features since  2006.07.28:

 * \framed (and -text) now support an [indenting=] key
 * support for russian hyphenation
 * new version of the bib module
 * \[lL]commaaccent character definitions

 Bugfixes:
 * column alignment in natural tables
 * image inclusion:
* bounding box discovery using rli files fixed
* fix for Aleph in global TRT documents
* some still-needed definitions from former supp-pdf re-instated
 * disappearing subtextblocks
 * unicode table 002 fix
 * some identation problems removed

 Happy TeXing,

 Taco Hoekwater

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



-- 
Garden - Conseil en Marketing  Datamining
Nicolas Grilly
Tel +33 1 45 72 48 78
Mob +33 6 03 00 25 34
www.garden-paris.com
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Context 2006.08.04 released

2006-08-07 Thread Sanjoy Mahajan
From:Taco Hoekwater [EMAIL PROTECTED]
 The current release has version 2006.08.04

After updating I see a slightly earlier date:

  CtxTools | context version: 2006.08.02 23:31

 * some identation problems removed

I just tested yesterday's example of paragraph indention combined with
before= and after= keys in setuphead, and it has the same problem
(indenting the before hairline and the first text line after the
heading).

-Sanjoy

`Never underestimate the evil of which men of power are capable.'
 --Bertrand Russell, _War Crimes in Vietnam_, chapter 1.
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Context 2006.08.04 released

2006-08-07 Thread Taco Hoekwater
Sanjoy Mahajan wrote:
 From:Taco Hoekwater [EMAIL PROTECTED]
 
The current release has version 2006.08.04
 
 
 After updating I see a slightly earlier date:
 
   CtxTools | context version: 2006.08.02 23:31

It looks like the new release is only in 'current' and not in 'latest'.

Taco

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


Re: [NTG-context] Context 2006.08.04 released

2006-08-07 Thread Taco Hoekwater
Nicolas Grilly wrote:
 Hello Taco,
 
 Thanks for this new release. But it seems the fix for the bug column
 alignment in natural tables doesn't work.
 
 I installed and tried this new release with the examples Peter and I
 posted some days ago on this list and the columns of last table are
 still mis-aligned.
 
 Or I have a problem with my ConTeXt installation, or there is an issue
 with the bug fix. Any advice?

Works for me. what does   texexec --check   have to say?

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


Re: [NTG-context] Context 2006.08.04 released

2006-08-07 Thread Taco Hoekwater
Sanjoy Mahajan wrote:
 From:Taco Hoekwater [EMAIL PROTECTED]
 
The current release has version 2006.08.04
 
 
 After updating I see a slightly earlier date:
 
   CtxTools | context version: 2006.08.02 23:31
 
 
* some identation problems removed
 
 
 I just tested yesterday's example of paragraph indention combined with
 before= and after= keys in setuphead, and it has the same problem
 (indenting the before hairline and the first text line after the
 heading).

Yes the fix was for something else ;-)

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


Re: [NTG-context] Context 2006.08.04 released

2006-08-07 Thread Nicolas Grilly
Hereunder is the output of texexec --check on my computer. Everything
seems okay. Can you send me your test file in order I launch it on my
computer?

TeXExec | current distribution: web2c
TeXExec | context source date: 2006.08.04 22:23
TeXExec | format path: . c:/tex/texmf-project/web2c/unsetengine
c:/tex/texmf-fonts/web2c/unsetengine
c:/tex/texmf-local/web2c/unsetengine
c:/tex/texmf-extra/web2c/unsetengine c:/tex/texmf/web2c/unsetengine
c:/tex/texmf-mswin/web2c/unsetengine c:/tex/texmf-project/web2c
c:/tex/texmf-fonts/web2c c:/tex/texmf-local/web2c
c:/tex/texmf-extra/web2c c:/tex/texmf/web2c c:/tex/texmf-mswin/web2c
TeXExec | start of analysis
TeXExec | processing document 'texexec'
TeXExec | tex processing method: context
TeXExec | writing option file texexec.top
TeXExec | using randomseed 798
TeXExec | tex engine: pdftex
TeXExec | tex format: cont-en
TeXExec | progname: context
This is pdfTeX, Version 3.141592-1.40.0-beta-20060213 (Web2c 7.5.5)
 \write18 enabled.
 (c:/tex/texmf-local/web2c/natural.tcx)
entering extended mode
(./texexec.tex

ConTeXt  ver: 2006.08.04 22:23  fmt: 2006.8.7  int: english  mes: english

language: language en is active
protectionstate 0
system  : cont-new loaded
(c:/tex/texmf-local/tex/context/base/cont-new.tex
systems : beware: some patches loaded from cont-new.tex
color   : palette rollover is available
)
system  : cont-old loaded
(c:/tex/texmf-local/tex/context/base/cont-old.tex
loading : Context Old Macros
)
system  : cont-fil loaded
(c:/tex/texmf-local/tex/context/base/cont-fil.tex
loading : Context File Synonyms
)
system  : cont-sys loaded
(c:/tex/texmf-local/tex/context/user/cont-sys.tex)
bodyfont: 12pt rm is loaded
language: patterns en-ec:ec-1-2:3 uk-ec:ec-2-2:3 de-texnansi:tex
nansi-3-2:3 de-ec:ec-4-2:3 fr-texnansi:texnansi-5-2:3 fr-ec:ec-6-2:3
 es-ec:ec-7-2:3 pt-texnansi:texnansi-8-2:3 pt-ec:ec-9-2:3 it-texnansi
:texnansi-10-2:3 it-ec:ec-11-2:3 nl-texnansi:texnansi-12-2:3 nl-ec:ec-
13-2:3 cz-il2:il2-14-2:3 cz-ec:ec-15-2:3 sk-il2:il2-16-2:3 sk-ec:ec
-17-2:3 pl-pl0:pl0-18-2:3 pl-ec:ec-19-2:3 pl-qx:qx-20-2:3 loaded
specials: tex,postscript,rokicki loaded
system  : texexec.top loaded
(./texexec.top
specials: loading definition file tpd
(c:/tex/texmf-local/tex/context/base/spec-tpd.tex
specials: loading definition file fdf
(c:/tex/texmf-local/tex/context/base/spec-fdf.tex)
specials: fdf loaded
)
specials: fdf,tpd loaded
)
systems : system commands are enabled
(c:/tex/texmf-local/tex/context/base/sort-def.tex)
(c:/tex/texmf-local/tex/context/base/sort-lan.tex)
systems : begin file texexec at line 1
fonts   : resetting map file list
{c:/tex/texmf-local/fonts/map/pdftex/context/original-empty.map}
fonts   : using map file: texnansi-public-lm
{c:/tex/texmf-local/fonts/map/pdftex/context/texnansi-public-lm.map}
fonts   : using map file: original-base
{c:/tex/texmf-local/fonts/map/pdftex/context/original-base.map}
fonts   : using map file: ec-public-lm
{c:/tex/texmf-local/fonts/map/pdftex/context/ec-public-lm.map}
fonts   : using map file: ec-base
{c:/tex/texmf-local/fonts/map/pdftex/context/ec-base.map}
fonts   : using map file: original-ams-base
{c:/tex/texmf-local/fonts/map/pdftex/context/original-ams-base.map}
fonts   : using map file: original-ams-euler
{c:/tex/texmf-local/fonts/map/pdftex/context/original-ams-euler.map}
fonts   : using map file: original-public-lm
{c:/tex/texmf-local/fonts/map/pdftex/context/original-public-lm.map}
(c:/tex/texmf-local/tex/context/base/pdfr-ec.tex) [1.1]
systems : end file texexec at line 3
 ){c:/tex/texmf/fonts/enc/dvips/lm/lm-ec.enc}c:/tex/texmf/fonts/type1/public/l
m/lmr12.pfb
Output written on texexec.pdf (1 page, 23276 bytes).
Transcript written on texexec.log.
TeXExec | runtime: 0.297
TeXExec | processing document 'texexec'
TeXExec | tex processing method: context
TeXExec | writing option file texexec.top
TeXExec | using randomseed 387
TeXExec | tex engine: pdftex
TeXExec | tex format: cont-nl
TeXExec | progname: context
This is pdfTeX, Version 3.141592-1.40.0-beta-20060213 (Web2c 7.5.5)
 \write18 enabled.
 (c:/tex/texmf-local/web2c/natural.tcx)
entering extended mode
(./texexec.tex

ConTeXt  ver: 2006.08.04 22:23  fmt: 2006.8.7  int: dutch  mes: dutch

taal: taal nl is actief
protectionstate 0
systeem : cont-new geladen
(c:/tex/texmf-local/tex/context/base/cont-new.tex
systems : beware: some patches loaded from cont-new.tex
kleur   : palet rollover is beschikbaar
)
systeem : cont-old geladen
(c:/tex/texmf-local/tex/context/base/cont-old.tex
loading : Context Old Macros
)
systeem : cont-fil geladen
(c:/tex/texmf-local/tex/context/base/cont-fil.tex
loading : Context File Synonyms
)
systeem : cont-sys geladen

Re: [NTG-context] Context 2006.08.04 released

2006-08-07 Thread Nicolas Grilly

I completely reinstalled ConTeXt and tried one more time with the
attached file, and I confirm it doesn't work correctly on my computer.

I attached another test file, simpler than the previous one.

Thanks,

Nicolas

On 8/7/06, Taco Hoekwater [EMAIL PROTECTED] wrote:



Nicolas Grilly wrote:
 Hereunder is the output of texexec --check on my computer. Everything
 seems okay. Can you send me your test file in order I launch it on my
 computer?

Your own file (attached). Can someone else try this, please?

Taco


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







--
Garden - Conseil en Marketing  Datamining
Nicolas Grilly
Tel +33 1 45 72 48 78
Mob +33 6 03 00 25 34
www.garden-paris.com


character_alignment_bug.tex
Description: TeX document
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Context 2006.08.04 released

2006-08-07 Thread Renaud AUBIN




See http://renojrl.lrv.uvsq.fr/testbed/character_alignment_bug.pdf,
freshly processed...

Taco Hoekwater a crit:

  
Nicolas Grilly wrote:
  
  Hereunder is the output of texexec --check on
my computer. Everything

seems okay. Can you send me your test file in order I launch it on my

computer?

  
  
Your own file (attached). Can someone else try this, please?
  
  
Taco
  
  

___
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


Re: [NTG-context] Context 2006.08.04 released

2006-08-07 Thread Nicolas Grilly
Taco Hoekwater wrote:

 This should do it:

\def\popTBL
  {\ifnum\TBLlevel\plusone
 \globalpopmacro\rowTBL
 \globalpopmacro\colTBL
   \else
 \global\intablefalse
   \fi
   \resetcharacteralign % Do this here !!
   \doglobal\decrement\TBLlevel\relax}

Yes, it works! :-)

But what do you think about a simpler solution:

- In \def\popTBL, don't add line \resetcharacteralign
- In \def\dobTABLE, move \resetcharacteralign just before \bgroup

On my computer, it fixes the bug without adding something to
\def\popTBL. Is it correct?

Thanks,

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


Re: [NTG-context] Context 2006.08.04 released

2006-08-07 Thread Taco Hoekwater
Nicolas Grilly wrote:
 
 But what do you think about a simpler solution:
 
 - In \def\popTBL, don't add line \resetcharacteralign
 - In \def\dobTABLE, move \resetcharacteralign just before \bgroup
 
 On my computer, it fixes the bug without adding something to
 \def\popTBL. Is it correct?

Sure ! I feel a bit more comfortable cleaning up at the
originating spot, but your solution works just as well.

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


Re: [NTG-context] Context 2006.08.04 released

2006-08-07 Thread Nicolas Grilly
I'm sorry to come with another problem related to character alignment...

My natural tables are enclosed in a \starttableau \stoptableau pair
that breaks character alignment:

\starttableau
\bTABLE
...
\eTABLE
\stoptableau

These command is defined this way:

\definestartstop[tableau][
before={\blank[2*big]},
commands={\switchtobodyfont[10pt]},
after={\blank[big]}
]

Why does it break column alignment? Is it normal?

Thanks...

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


Re: [NTG-context] Context 2006.08.04 released

2006-08-07 Thread Idris Samawi Hamid
On Mon, 07 Aug 2006 03:07:49 -0600, Taco Hoekwater [EMAIL PROTECTED]  
wrote:

 A very short list of changes is given below. As usual, there is an
 html page with more detailed release notes available on the Wiki, see:

Does that include the core-fig change

\global\setbox\foundexternalfigure\vbox to \fighei

into

\global\setbox\foundexternalfigure\naturalvbox to \fighei

so that figures work in global RL?

Best
Idris

-- 
Professor Idris Samawi Hamid
Department of Philosophy
Colorado State University
Fort Collins, CO 80523

--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Context 2006.08.04 released

2006-08-07 Thread Hans Hagen
Idris Samawi Hamid wrote:
 On Mon, 07 Aug 2006 03:07:49 -0600, Taco Hoekwater [EMAIL PROTECTED]  
 wrote:

   
 A very short list of changes is given below. As usual, there is an
 html page with more detailed release notes available on the Wiki, see:
 

 Does that include the core-fig change

 \global\setbox\foundexternalfigure\vbox to \fighei

 into

 \global\setbox\foundexternalfigure\naturalvbox to \fighei

 so that figures work in global RL?

   
indeed

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


Re: [NTG-context] Context 2006.08.04 released

2006-08-07 Thread Hans Hagen
Sanjoy Mahajan wrote:
 From:Taco Hoekwater [EMAIL PROTECTED]
   
 The current release has version 2006.08.04
 

 After updating I see a slightly earlier date:

   CtxTools | context version: 2006.08.02 23:31

   
 * some identation problems removed
 

 I just tested yesterday's example of paragraph indention combined with
 before= and after= keys in setuphead, and it has the same problem
 (indenting the before hairline and the first text line after the
 heading).
   
in such case you need to add a \dontleavehmode to force tex into starting a 
paragraph 

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