ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Alignment table with comma, and long long space after
@ 2013-09-21 14:22 Xan
  2013-09-21 16:55 ` Wolfgang Schuster
  0 siblings, 1 reply; 11+ messages in thread
From: Xan @ 2013-09-21 14:22 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hi,

I have this

\startsetups table:style
  \setupTABLE[row][first][background=color, backgroundcolor=tablecolor, color=black, align={middle,lohi},style=ss]
  \setupTABLE[column][1][align={right,lohi}]
  \setupTABLE[column][2][align={left,lohi},alignmentcharacter={,},aligncharacter=yes]
%  \setupTABLE[column][2][width=.20\textwidth]
  \setupTABLE[loffset=1mm,roffset=1mm]
  \setupTABLE[frame=off]
  \setupTABLE[topframe=on,bottomframe=on]
  \setupTABLE[column][first][leftframe=on]
  \setupTABLE[column][last][rightframe=on]
\stopsetups

\placefigure[here]{Diverses mesures}{
\bTABLE[setups={table:header, table:frame, table:style}]
\bTABLEhead
\bTR \bTD Esdeveniment \eTD \bTD Mesura (m) \eTD \eTR
\eTABLEhead
\bTABLEbody
\bTR \bTD Distància mitjana Terra-Lluna \eTD \bTD 150.000.000.000 \eTD \eTR
\bTR \bTD Diàmetre mitjà terrestre \eTD \bTD 12 800.000 \eTD \eTR
\bTR \bTD Distància Palma-Alcúdia \eTD \bTD 75.000 \eTD \eTR
\bTR \bTD Diàmetre mitjà de Júpiter \eTD \bTD 140.000.000 \eTD \eTR
\bTR \bTD L'altura d'una persona \eTD \bTD 1,75 \eTD \eTR
\bTR \bTD La distància mitjana entre el Sol i Alfa-Centauri \eTD \bTD 40.790.494.000.000.000 \eTD \eTR
\eTABLEbody
\eTABLE}


but ConTeXt produces a lot of space after 1,75.

How can I do for second column fits the content?

Thanks in advance,
Xan.

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

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


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

* Re: Alignment table with comma, and long long space after
  2013-09-21 14:22 Alignment table with comma, and long long space after Xan
@ 2013-09-21 16:55 ` Wolfgang Schuster
  2013-09-22 17:13   ` Xan
  0 siblings, 1 reply; 11+ messages in thread
From: Wolfgang Schuster @ 2013-09-21 16:55 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Xan


Am 21.09.2013 um 16:22 schrieb Xan <dxpublica@telefonica.net>:

> Hi,
> 
> I have this
> 
> \startsetups table:style
>  \setupTABLE[row][first][background=color, backgroundcolor=tablecolor, color=black, align={middle,lohi},style=ss]
>  \setupTABLE[column][1][align={right,lohi}]
>  \setupTABLE[column][2][align={left,lohi},alignmentcharacter={,},aligncharacter=yes]
> %  \setupTABLE[column][2][width=.20\textwidth]
>  \setupTABLE[loffset=1mm,roffset=1mm]
>  \setupTABLE[frame=off]
>  \setupTABLE[topframe=on,bottomframe=on]
>  \setupTABLE[column][first][leftframe=on]
>  \setupTABLE[column][last][rightframe=on]
> \stopsetups
> 
> \placefigure[here]{Diverses mesures}{
> \bTABLE[setups={table:header, table:frame, table:style}]
> \bTABLEhead
> \bTR \bTD Esdeveniment \eTD \bTD Mesura (m) \eTD \eTR
> \eTABLEhead
> \bTABLEbody
> \bTR \bTD Distància mitjana Terra-Lluna \eTD \bTD 150.000.000.000 \eTD \eTR
> \bTR \bTD Diàmetre mitjà terrestre \eTD \bTD 12 800.000 \eTD \eTR
> \bTR \bTD Distància Palma-Alcúdia \eTD \bTD 75.000 \eTD \eTR
> \bTR \bTD Diàmetre mitjà de Júpiter \eTD \bTD 140.000.000 \eTD \eTR
> \bTR \bTD L'altura d'una persona \eTD \bTD 1,75 \eTD \eTR
> \bTR \bTD La distància mitjana entre el Sol i Alfa-Centauri \eTD \bTD 40.790.494.000.000.000 \eTD \eTR
> \eTABLEbody
> \eTABLE}
> 
> 
> but ConTeXt produces a lot of space after 1,75.
> 
> How can I do for second column fits the content?

Add the following line to your setups for the table.

\chardef\characteralignmentmode\plustwo

Wolfgang


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

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


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

* Re: Alignment table with comma, and long long space after
  2013-09-21 16:55 ` Wolfgang Schuster
@ 2013-09-22 17:13   ` Xan
  2013-09-22 17:31     ` Wolfgang Schuster
  0 siblings, 1 reply; 11+ messages in thread
From: Xan @ 2013-09-22 17:13 UTC (permalink / raw)
  To: Wolfgang Schuster; +Cc: mailing list for ConTeXt users

It does not work with that:

%%% Per a què les taules se me puguin alinear amb les comes
\chardef\characteralignmentmode=2
\chardef\characteralignmentmode\plustwo

%%% http://randomdeterminism.wordpress.com/2012/11/18/separation-of-content-and-presentation-for-tables-part-1/
\startsetups table:style
  \setupTABLE[row][first][background=color, backgroundcolor=tablecolor, color=black, align={middle,lohi},style=ss]
  \setupTABLE[column][1][align={right,lohi}]
  \setupTABLE[column][2][align={left,lohi},alignmentcharacter={,},aligncharacter=yes]
%  \setupTABLE[column][2][width=.20\textwidth]
  \setupTABLE[loffset=1mm,roffset=1mm]
  \setupTABLE[frame=off]
  \setupTABLE[topframe=on,bottomframe=on]
  \setupTABLE[column][first][leftframe=on]
  \setupTABLE[column][last][rightframe=on]
\stopsetups


What can I do?

Xan.
On Sat, 21 Sep 2013 18:55:51 +0200
Wolfgang Schuster <schuster.wolfgang@gmail.com> ha escrit:

> 
> Am 21.09.2013 um 16:22 schrieb Xan <dxpublica@telefonica.net>:
> 
> > Hi,
> > 
> > I have this
> > 
> > \startsetups table:style
> >  \setupTABLE[row][first][background=color, backgroundcolor=tablecolor, color=black, align={middle,lohi},style=ss]
> >  \setupTABLE[column][1][align={right,lohi}]
> >  \setupTABLE[column][2][align={left,lohi},alignmentcharacter={,},aligncharacter=yes]
> > %  \setupTABLE[column][2][width=.20\textwidth]
> >  \setupTABLE[loffset=1mm,roffset=1mm]
> >  \setupTABLE[frame=off]
> >  \setupTABLE[topframe=on,bottomframe=on]
> >  \setupTABLE[column][first][leftframe=on]
> >  \setupTABLE[column][last][rightframe=on]
> > \stopsetups
> > 
> > \placefigure[here]{Diverses mesures}{
> > \bTABLE[setups={table:header, table:frame, table:style}]
> > \bTABLEhead
> > \bTR \bTD Esdeveniment \eTD \bTD Mesura (m) \eTD \eTR
> > \eTABLEhead
> > \bTABLEbody
> > \bTR \bTD Distància mitjana Terra-Lluna \eTD \bTD 150.000.000.000 \eTD \eTR
> > \bTR \bTD Diàmetre mitjà terrestre \eTD \bTD 12 800.000 \eTD \eTR
> > \bTR \bTD Distància Palma-Alcúdia \eTD \bTD 75.000 \eTD \eTR
> > \bTR \bTD Diàmetre mitjà de Júpiter \eTD \bTD 140.000.000 \eTD \eTR
> > \bTR \bTD L'altura d'una persona \eTD \bTD 1,75 \eTD \eTR
> > \bTR \bTD La distància mitjana entre el Sol i Alfa-Centauri \eTD \bTD 40.790.494.000.000.000 \eTD \eTR
> > \eTABLEbody
> > \eTABLE}
> > 
> > 
> > but ConTeXt produces a lot of space after 1,75.
> > 
> > How can I do for second column fits the content?
> 
> Add the following line to your setups for the table.
> 
> \chardef\characteralignmentmode\plustwo
> 
> Wolfgang
> 
> 
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

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


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

* Re: Alignment table with comma, and long long space after
  2013-09-22 17:13   ` Xan
@ 2013-09-22 17:31     ` Wolfgang Schuster
  2013-09-22 18:32       ` Xan
  2013-09-23 13:45       ` Xan
  0 siblings, 2 replies; 11+ messages in thread
From: Wolfgang Schuster @ 2013-09-22 17:31 UTC (permalink / raw)
  To: Xan; +Cc: mailing list for ConTeXt users


Am 22.09.2013 um 19:13 schrieb Xan <dxpublica@telefonica.net>:

> It does not work with that:
> 
> %%% Per a què les taules se me puguin alinear amb les comes
> \chardef\characteralignmentmode=2
> \chardef\characteralignmentmode\plustwo
> 
> %%% http://randomdeterminism.wordpress.com/2012/11/18/separation-of-content-and-presentation-for-tables-part-1/
> \startsetups table:style
>  \setupTABLE[row][first][background=color, backgroundcolor=tablecolor, color=black, align={middle,lohi},style=ss]
>  \setupTABLE[column][1][align={right,lohi}]
>  \setupTABLE[column][2][align={left,lohi},alignmentcharacter={,},aligncharacter=yes]
> %  \setupTABLE[column][2][width=.20\textwidth]
>  \setupTABLE[loffset=1mm,roffset=1mm]
>  \setupTABLE[frame=off]
>  \setupTABLE[topframe=on,bottomframe=on]
>  \setupTABLE[column][first][leftframe=on]
>  \setupTABLE[column][last][rightframe=on]
> \stopsetups
> 
> 
> What can I do?

You can show us a *complete* minimal example.

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

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


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

* Re: Alignment table with comma, and long long space after
  2013-09-22 17:31     ` Wolfgang Schuster
@ 2013-09-22 18:32       ` Xan
  2013-09-23 13:45       ` Xan
  1 sibling, 0 replies; 11+ messages in thread
From: Xan @ 2013-09-22 18:32 UTC (permalink / raw)
  To: Wolfgang Schuster; +Cc: mailing list for ConTeXt users

[-- Attachment #1: Type: text/plain, Size: 70 bytes --]

Yes:



> You can show us a *complete* minimal example.
> 
> Wolfgang

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: prova.tex --]
[-- Type: text/x-tex; name="prova.tex", Size: 4870 bytes --]

% Regime
\enableregime[utf]

% Choose a language, and associated hyphenation rules.
\mainlanguage[ca]

% AMSTHM equivalent
%% Exercici
%% Mirar http://wiki.contextgarden.net/Command/setupdescriptions
%%% posar alternative=left per identar tots els continguts | alternative=serried per tractar el contingut com un paràgraf ordinari
\defineenumeration
  [exercici]
  [alternative=serried,text={\startcolor[darkblue]Exercici\stopcolor},stopper={.\space},left={\bgroup},right={\egroup},width=fit,headstyle=\ss,distance=0.25em,width=fit]

%\defineenumeration
%  [exerciciimportant]
%  [text={Exercici},headstyle=bold,between=\blank,titledistance=0em,textdistance=1em,
%stopper={.\space},location=serried,left={\bgroup\bf},right={\egroup},width=fit,before={\bgroup\startframedtext[background=screen,frame=off,width=broad]},after={\stopframedtext\egroup}]

% Intent fer una comanda per a fer requadres a les coses importants
% http://www.ntg.nl/pipermail/ntg-context/2013/074823.html
\def\important{\dodoubleempty\doimportant}
\def\doimportant[#1][#2]{\bgroup
    \ifsecondargument
       \startframedtext[background=color,backgroundcolor=#2,frame=off,width=broad]%
       #1
    \else
       \startframedtext[background=screen,frame=off,width=broad]%
       #1
    \fi
    \stopframedtext
    \egroup}

\defineframedtext
  [important]
  [background=screen,
   frame=off,
   width=broad]

% Per a veure què falla amb els símbols
\enabletrackers [fonts.missing]


% Choose a font
%\usetypescript[pagella][ec]
%\setupbodyfont[pagella,11pt]
\setupbodyfont [cmr,11pt] % cmr, 11pt

% Margins
%\setuplayout[topspace=2cm, backspace=2cm, header=1.5cm,margin=2cm,width=middle,footer=1cm]

% Colors
\definecolor[headingcolor][c=1,m=0.5431,y=0,k=0.5451]
\definecolor[tablecolor][b=1,t=.5,a=1]

% Page number
\setuppagenumbering [location={header,right}]

% Paper size
\setuppapersize [A4]

% Italic in emph (by default is slanted)
\setupbodyfontenvironment[default][em=italic]

% Headers and footers
\setupfooter[text][style={\ss\tfx},color=headingcolor,before={\hrule}]
\setupheader[text][style={\ss},color=headingcolor,after={\hrule}]

%% Display of headers
\setuphead[title][style={\tfd},align=middle,before={\begingroup},after={\bigskip\endgroup}]
\setupheads[section,subject][style={\tfc}]
\setupheads[subsubject,subsection][style={\tfb}]
\setuphead[title,chapter,subject,section,subsubject,subsection][color=headingcolor]

%% Per veure els enllaços
\setupinteraction[state=start]

%% Per a BibTeX
\setuppublications[alternative=ams]


%% Taules: estils

%%% Per a què les taules se me puguin alinear amb les comes
\chardef\characteralignmentmode=2
\chardef\characteralignmentmode\plustwo

%%% http://randomdeterminism.wordpress.com/2012/11/18/separation-of-content-and-presentation-for-tables-part-1/
\startsetups table:style
  \setupTABLE[row][first][background=color, backgroundcolor=tablecolor, color=black, align={middle,lohi},style=ss]
  \setupTABLE[column][1][align={right,lohi}]
  \setupTABLE[column][2][align={left,lohi},alignmentcharacter={,},aligncharacter=yes]
%  \setupTABLE[column][2][width=.20\textwidth]
  \setupTABLE[loffset=1mm,roffset=1mm]
  \setupTABLE[frame=off]
  \setupTABLE[topframe=on,bottomframe=on]
  \setupTABLE[column][first][leftframe=on]
  \setupTABLE[column][last][rightframe=on]
\stopsetups

%% Normal
\startsetups table2:style
  \setupTABLE[row][first][background=color, backgroundcolor=tablecolor, color=black, align={middle,lohi},style=ss]
  \setupTABLE[column][1][align={right,lohi}]
  \setupTABLE[column][2][align={left,lohi}]
%  \setupTABLE[column][2][width=.20\textwidth]
  \setupTABLE[loffset=1mm,roffset=1mm]
  \setupTABLE[frame=off]
  \setupTABLE[topframe=on,bottomframe=on]
  \setupTABLE[column][first][leftframe=on]
  \setupTABLE[column][last][rightframe=on]
\stopsetups


%% ConTeXt MIV

%% Capçaleres i peus

%%% Prenc els primers 5 caràcters del sha256 del fitxer (requereix ConTeXt MIV)
\setupfootertexts[\jobname\space(versió \ctxlua{context(os.resultof("sha256sum \jobname.tex | cut -c  -5"))}, \currentdate)][]

\starttext


\placefigure[here]{Diverses mesures}{
\bTABLE[setups={table:header, table:frame, table:style}]
\bTABLEhead
\bTR \bTD Esdeveniment \eTD \bTD Mesura (m) \eTD \eTR
\eTABLEhead
\bTABLEbody
\bTR \bTD Distància mitjana Terra-Lluna \eTD \bTD 150.000.000.000 \eTD \eTR
\bTR \bTD Diàmetre mitjà terrestre \eTD \bTD 12 800.000 \eTD \eTR
\bTR \bTD Distància Palma-Alcúdia \eTD \bTD 75.000 \eTD \eTR
\bTR \bTD Diàmetre mitjà de Júpiter \eTD \bTD 140.000.000 \eTD \eTR
\bTR \bTD L'altura d'una persona \eTD \bTD 1,75 \eTD \eTR
\bTR \bTD La distància mitjana entre el Sol i Alfa-Centauri \eTD \bTD 40.790.494.000.000.000 \eTD \eTR
\eTABLEbody
\eTABLE}

\stoptext

[-- Attachment #3: prova.pdf --]
[-- Type: application/pdf, Size: 16908 bytes --]

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

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

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

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

* Re: Alignment table with comma, and long long space after
  2013-09-22 17:31     ` Wolfgang Schuster
  2013-09-22 18:32       ` Xan
@ 2013-09-23 13:45       ` Xan
  2013-09-23 18:11         ` Wolfgang Schuster
  1 sibling, 1 reply; 11+ messages in thread
From: Xan @ 2013-09-23 13:45 UTC (permalink / raw)
  To: Wolfgang Schuster; +Cc: mailing list for ConTeXt users

On Sun, 22 Sep 2013 19:31:33 +0200
Wolfgang Schuster <schuster.wolfgang@gmail.com> ha escrit:

> 

> You can show us a *complete* minimal example.
> 
> Wolfgang

What is at final?

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

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


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

* Re: Alignment table with comma, and long long space after
  2013-09-23 13:45       ` Xan
@ 2013-09-23 18:11         ` Wolfgang Schuster
  2013-09-24  7:18           ` Xan
  2013-10-04 21:47           ` Hans Hagen
  0 siblings, 2 replies; 11+ messages in thread
From: Wolfgang Schuster @ 2013-09-23 18:11 UTC (permalink / raw)
  To: Xan; +Cc: mailing list for ConTeXt users


Am 23.09.2013 um 15:45 schrieb Xan <dxpublica@telefonica.net>:

> On Sun, 22 Sep 2013 19:31:33 +0200
> Wolfgang Schuster <schuster.wolfgang@gmail.com> ha escrit:
> 
>> You can show us a *complete* minimal example.
>> 
>> Wolfgang
> 
> What is at final?

It’s a bug in the alignment mechanism and looking for a solution.

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

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


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

* Re: Alignment table with comma, and long long space after
  2013-09-23 18:11         ` Wolfgang Schuster
@ 2013-09-24  7:18           ` Xan
  2013-10-04 21:47           ` Hans Hagen
  1 sibling, 0 replies; 11+ messages in thread
From: Xan @ 2013-09-24  7:18 UTC (permalink / raw)
  To: Wolfgang Schuster; +Cc: mailing list for ConTeXt users

On Mon, 23 Sep 2013 20:11:01 +0200
Wolfgang Schuster <schuster.wolfgang@gmail.com> ha escrit:

> 
> Am 23.09.2013 um 15:45 schrieb Xan <dxpublica@telefonica.net>:
> 
> > On Sun, 22 Sep 2013 19:31:33 +0200
> > Wolfgang Schuster <schuster.wolfgang@gmail.com> ha escrit:
> > 
> >> You can show us a *complete* minimal example.
> >> 
> >> Wolfgang
> > 
> > What is at final?
> 
> It’s a bug in the alignment mechanism and looking for a solution.
> 
> Wolfgang

Thanks. Please notice me when you (sure) have the solution

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

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

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

* Re: Alignment table with comma, and long long space after
  2013-09-23 18:11         ` Wolfgang Schuster
  2013-09-24  7:18           ` Xan
@ 2013-10-04 21:47           ` Hans Hagen
  2013-10-05  3:37             ` hwitloc
  1 sibling, 1 reply; 11+ messages in thread
From: Hans Hagen @ 2013-10-04 21:47 UTC (permalink / raw)
  To: ntg-context

On 9/23/2013 8:11 PM, Wolfgang Schuster wrote:
>
> Am 23.09.2013 um 15:45 schrieb Xan <dxpublica@telefonica.net>:
>
>> On Sun, 22 Sep 2013 19:31:33 +0200
>> Wolfgang Schuster <schuster.wolfgang@gmail.com> ha escrit:
>>
>>> You can show us a *complete* minimal example.
>>>
>>> Wolfgang
>>
>> What is at final?
>
> It’s a bug in the alignment mechanism and looking for a solution.

I decided to replace the old mechanism by a new one .. still somewhat 
experimental ...

\starttext

% \enabletrackers[typesetters.characteralign]

\starttabulate[|l|g{,}|r|]
     \NC test \NC 1.234.456,99 \NC \NC test \NR
     \NC test \NC   234.456,9  \NC \NC test \NR
     \NC test \NC   234.456    \NC \NC test \NR
     \NC test \NC       456    \NC \NC test \NR
     \NC test \NC \bf default  \NC \NC test \NR
\stoptabulate

\starttabulate[|l|rg{,}|]
     \NC test \NC 1.234.456,99 \NC \NR
     \NC test \NC   234.456,9  \NC \NR
     \NC test \NC          ,9  \NC \NR
     \NC test \NC   234.456,   \NC \NR
     \NC test \NC   234.456    \NC \NR
     \NC test \NC       456    \NC \NR
     \NC test \NC \bf right    \NC \NR
\stoptabulate

\starttabulate[|l|lg{,}|]
     \NC test \NC -1.234.456,99 \NC \NR
     \NC test \NC +1.234.456,99 \NC \NR
     \NC test \NC  1.234.456,99 \NC \NR
     \NC test \NC    234.456,9  \NC \NR
     \NC test \NC    234.456    \NC \NR
     \NC test \NC        456    \NC \NR
     \NC test \NC \bf left      \NC \NR
\stoptabulate

\starttabulate[|l|cg{,}|cg{.}|]
     \NC test \NC 1.234.456,99 \NC 1,234,456.99 \NR
     \NC test \NC   234.456,9  \NC   234,456.9  \NR
     \NC test \NC   234.456    \NC   234,456    \NR
     \NC test \NC       456    \NC       456    \NR
     \NC test \NC \bf center   \NC \bf center   \NR
\stoptabulate

\starttabulate[|l|cg{,}w(10em)|lg{,}|]
     \NC test \NC €                      1,1     \NC 
1.234.456,99 \NC \NR
     \NC test \NC €                     11,11    \NC 
234.456,9  \NC \NR
     \NC test \NC € 12\punctuationspace111,11    \NC 
234\punctuationspace456,9  \NC \NR
     \NC test \NC €                 12 111,11    \NC 
234 456,9  \NC \NR
     \NC test \NC €              1.234.451,22222 \NC 
234.456    \NC \NR
     \NC test \NC €                234.451,2     \NC 
   456    \NC \NR
     \NC test \NC €                234.451       \NC 
          \NC \NR
     \NC test \NC €                    451       \NC 
          \NC \NR
     \NC test \NC \bf center+width               \NC \bf center 
          \NC \NR
\stoptabulate

\page

\bTABLE
     \bTR \bTD test \eTD \bTD[aligncharacter=yes] € 
  1,1     \eTD \bTD[aligncharacter=yes]                1.234.456,99 \eTD 
\eTR
     \bTR \bTD test \eTD \bTD[aligncharacter=yes] € 
11,11    \eTD \bTD[aligncharacter=yes]                  234.456,9  \eTD \eTR
     \bTR \bTD test \eTD \bTD[aligncharacter=yes] € 
12\punctuationspace111,11    \eTD \bTD[aligncharacter=yes] 
234\punctuationspace456,9  \eTD \eTR
     \bTR \bTD test \eTD \bTD[aligncharacter=yes] €                 12 
111,11    \eTD \bTD[aligncharacter=yes]                  234 456,9  \eTD 
\eTR
     \bTR \bTD test \eTD \bTD[aligncharacter=yes] € 
1.234.451,22222 \eTD \bTD[aligncharacter=yes]                  234.456 
   \eTD \eTR
     \bTR \bTD test \eTD \bTD[aligncharacter=yes] € 
234.451,2     \eTD \bTD[aligncharacter=yes]                      456 
\eTD \eTR
     \bTR \bTD test \eTD \bTD[aligncharacter=yes] € 
234.451       \eTD \bTD[aligncharacter=yes] 
\eTD \eTR
     \bTR \bTD test \eTD \bTD[aligncharacter=yes] € 
451       \eTD \bTD[aligncharacter=yes]                             \eTD 
\eTR
     \bTR \bTD test \eTD \bTD                     \bf center+width 
          \eTD \bTD                     \bf center                  \eTD 
\eTR
\eTABLE

\startcharacteralign
     \checkcharacteralign{123.456,78}
     \blank[small]
     \checkcharacteralign{456}
     \blank[small]
     \checkcharacteralign{23.456}
     \blank[small]
     \checkcharacteralign{78,9}
\stopcharacteralign

\stoptext


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

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


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

* Re: Alignment table with comma, and long long space         after
  2013-10-04 21:47           ` Hans Hagen
@ 2013-10-05  3:37             ` hwitloc
  2013-10-05  9:56               ` Hans Hagen
  0 siblings, 1 reply; 11+ messages in thread
From: hwitloc @ 2013-10-05  3:37 UTC (permalink / raw)
  To: mailing list for ConTeXt users


I'd like to try out the new experimental mechanism for tables mentioned below.

Is it correct that I need the standalone version to do this?

If standalone, are there differenct versions that I must select between? 
For example a stable standalone, verses experimental by date or name.

Thanks

Re: ----- below 
Hans Hagen <pragma@wxs.nl> wrote:

> On 9/23/2013 8:11 PM, Wolfgang Schuster wrote:
> >
> > Am 23.09.2013 um 15:45 schrieb Xan <dxpublica@telefonica.net>:
> >
> >> On Sun, 22 Sep 2013 19:31:33 +0200
> >> Wolfgang Schuster <schuster.wolfgang@gmail.com> ha escrit:
> >>
> >>> You can show us a *complete* minimal example.
> >>>
> >>> Wolfgang
> >>
> >> What is at final?
> >
> > It’s a bug in the alignment mechanism and looking for a solution.
> 
> I decided to replace the old mechanism by a new one .. still somewhat
> experimental ...
> 
> \starttext
> 
> % \enabletrackers[typesetters.characteralign]
> 
> \starttabulate[|l|g{,}|r|]
>     \NC test \NC 1.234.456,99 \NC \NC test \NR
>     \NC test \NC   234.456,9  \NC \NC test \NR
>     \NC test \NC   234.456    \NC \NC test \NR
>     \NC test \NC       456    \NC \NC test \NR
>     \NC test \NC \bf default  \NC \NC test \NR
> \stoptabulate
> 
> \starttabulate[|l|rg{,}|]
>     \NC test \NC 1.234.456,99 \NC \NR
>     \NC test \NC   234.456,9  \NC \NR
>     \NC test \NC          ,9  \NC \NR
>     \NC test \NC   234.456,   \NC \NR
>     \NC test \NC   234.456    \NC \NR
>     \NC test \NC       456    \NC \NR
>     \NC test \NC \bf right    \NC \NR
> \stoptabulate
> 
> \starttabulate[|l|lg{,}|]
>     \NC test \NC -1.234.456,99 \NC \NR
>     \NC test \NC +1.234.456,99 \NC \NR
>     \NC test \NC  1.234.456,99 \NC \NR
>     \NC test \NC    234.456,9  \NC \NR
>     \NC test \NC    234.456    \NC \NR
>     \NC test \NC        456    \NC \NR
>     \NC test \NC \bf left      \NC \NR
> \stoptabulate
> 
> \starttabulate[|l|cg{,}|cg{.}|]
>     \NC test \NC 1.234.456,99 \NC 1,234,456.99 \NR
>     \NC test \NC   234.456,9  \NC   234,456.9  \NR
>     \NC test \NC   234.456    \NC   234,456    \NR
>     \NC test \NC       456    \NC       456    \NR
>     \NC test \NC \bf center   \NC \bf center   \NR
> \stoptabulate
> 
> \starttabulate[|l|cg{,}w(10em)|lg{,}|]
>     \NC test \NC €                      1,1     \NC 1.234.456,99 \NC
> \NR
>     \NC test \NC €                     11,11    \NC 234.456,9  \NC \NR
>     \NC test \NC € 12\punctuationspace111,11    \NC
> 234\punctuationspace456,9  \NC \NR
>     \NC test \NC €                 12 111,11    \NC 234 456,9  \NC \NR
>     \NC test \NC €              1.234.451,22222 \NC 234.456    \NC \NR
>     \NC test \NC €                234.451,2     \NC 456    \NC \NR
>     \NC test \NC €                234.451       \NC        \NC \NR
>     \NC test \NC €                    451       \NC        \NC \NR
>     \NC test \NC \bf center+width               \NC \bf center
> \NC \NR
> \stoptabulate
> 
> \page
> 
> \bTABLE
>     \bTR \bTD test \eTD \bTD[aligncharacter=yes] € 1,1     \eTD
> \bTD[aligncharacter=yes]                1.234.456,99 \eTD \eTR
>     \bTR \bTD test \eTD \bTD[aligncharacter=yes] € 11,11    \eTD
> \bTD[aligncharacter=yes]                  234.456,9  \eTD \eTR
>     \bTR \bTD test \eTD \bTD[aligncharacter=yes] €
> 12\punctuationspace111,11    \eTD \bTD[aligncharacter=yes]
> 234\punctuationspace456,9  \eTD \eTR
>     \bTR \bTD test \eTD \bTD[aligncharacter=yes] €                 12
> 111,11    \eTD \bTD[aligncharacter=yes]                  234 456,9
> \eTD \eTR
>     \bTR \bTD test \eTD \bTD[aligncharacter=yes] € 1.234.451,22222
> \eTD \bTD[aligncharacter=yes]                  234.456 \eTD \eTR
>     \bTR \bTD test \eTD \bTD[aligncharacter=yes] € 234.451,2     \eTD
> \bTD[aligncharacter=yes]                      456 \eTD \eTR
>     \bTR \bTD test \eTD \bTD[aligncharacter=yes] € 234.451       \eTD
> \bTD[aligncharacter=yes] \eTD \eTR
>     \bTR \bTD test \eTD \bTD[aligncharacter=yes] € 451       \eTD
> \bTD[aligncharacter=yes]                             \eTD \eTR
>     \bTR \bTD test \eTD \bTD                     \bf center+width
> \eTD \bTD                     \bf center                  \eTD \eTR
> \eTABLE
> 
> \startcharacteralign
>     \checkcharacteralign{123.456,78}
>     \blank[small]
>     \checkcharacteralign{456}
>     \blank[small]
>     \checkcharacteralign{23.456}
>     \blank[small]
>     \checkcharacteralign{78,9}
> \stopcharacteralign
> 
> \stoptext
> 
> 
> -----------------------------------------------------------------
>                                           Hans Hagen | PRAGMA ADE
>               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
>     tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
>                                              | www.pragma-pod.nl
> -----------------------------------------------------------------
> ___________________________________________________________________________________
> If your question is of interest to others as well, please add an entry to the Wiki!
> 
> maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
> webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
> archive  : http://foundry.supelec.fr/projects/contextrev/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

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

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

* Re: Alignment table with comma, and long long space         after
  2013-10-05  3:37             ` hwitloc
@ 2013-10-05  9:56               ` Hans Hagen
  0 siblings, 0 replies; 11+ messages in thread
From: Hans Hagen @ 2013-10-05  9:56 UTC (permalink / raw)
  To: ntg-context

On 10/5/2013 5:37 AM, hwitloc@gmail.com wrote:

> I'd like to try out the new experimental mechanism for tables mentioned below.
>
> Is it correct that I need the standalone version to do this?

indeed

> If standalone, are there differenct versions that I must select between?
> For example a stable standalone, verses experimental by date or name.

beta (which is default)

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

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


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

end of thread, other threads:[~2013-10-05  9:56 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-09-21 14:22 Alignment table with comma, and long long space after Xan
2013-09-21 16:55 ` Wolfgang Schuster
2013-09-22 17:13   ` Xan
2013-09-22 17:31     ` Wolfgang Schuster
2013-09-22 18:32       ` Xan
2013-09-23 13:45       ` Xan
2013-09-23 18:11         ` Wolfgang Schuster
2013-09-24  7:18           ` Xan
2013-10-04 21:47           ` Hans Hagen
2013-10-05  3:37             ` hwitloc
2013-10-05  9:56               ` Hans Hagen

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