Re: [NTG-context] xmlpos values doubled

2022-04-20 Thread Pablo Rodriguez via ntg-context
On 4/20/22 11:51, Ben Moon via ntg-context wrote:
> Hello again,
>
> I wonder whether anyone has some thoughts to help with my problem?
> Either why \xmlpos gives double values or alternatives to arrange my
> table format?

Hi Ben,

I think that both \xmlpos and \xmldepth give weird results.

With this minimal sample:

  \startbuffer[text]
  first level
  second level
  third level
  third level
  
  second level
  third level
  third level
  
  second level
  third level
  third level
  
  
  \stopbuffer

  \startxmlsetups xml:text
  \xmlsetsetup{#1}{doc|s|ss}{xml:*}
  \stopxmlsetups

  \xmlregistersetup{xml:text}

  \startxmlsetups xml:doc
  \chapter{\xmlpos{#1}\letterat\xmldepth{#1}: \xmlflush{#1}}
  \stopxmlsetups

  \startxmlsetups xml:s
  \section{\xmlpos{#1}\letterat\xmldepth{#1}: \xmlflush{#1}}
  \stopxmlsetups

  \startxmlsetups xml:ss
  \subsection{\xmlpos{#1}\letterat\xmldepth{#1}: \xmlflush{#1}}
  \stopxmlsetups

  \setuphead[chapter,section,subsection][before=,after=,]
  \starttext
  \xmlprocessbuffer{main}{text}{}
  \stoptext

\xmldepth shows values that I think are +1 than they should be.

\xmlpos counts in pairs and not in units (as you wrote, 2, 4, 6...).

Hans, could you check whether this is working as expected?

Sorry, but if this isn’t a bug, I have no idea of what I may be missing.

Pablo

___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] xmlpos values doubled

2022-04-20 Thread Ben Moon via ntg-context
Hello again,

I wonder whether anyone has some thoughts to help with my problem? Either why 
\xmlpos gives double values or alternatives to arrange my table format?

Best wishes,
Ben


On Mon, 28 Mar 2022, at 10:44, Ben Moon via ntg-context wrote:
> Hello All,
> 
> I'm trying to render a table stored in XML JATS format 
> (https://jats.nlm.nih.gov/archiving/) and eventually want to use the 
>  tag to setup column aligning from the @align attribute, e.g.,
> 
> \setupTABLE [column] [\xmlpos{#1}] [align=\xmlatt{#1}{align}]
> 
> Including \xmlpos{#1} I get double the value returned, i.e.: the first 
> element in colgroup returns 2, the second returns 4 etc.
> 
> Below is a MWE to show my issue. I show \xmlpos for each  tag in 
>   above the table, which returns 2, 4, 6, 8 but I expected 1, 2, 3, 
> 4. Am I missing something or is there another way I could do this?
> 
> 
> \startbuffer[table]
>   
> 
>   
> 
> 
> 
> 
>   
>   
> 
>   H1 (centre)
>   H2 (right)
>   H3
>   H4
> 
>   
>   
> 
>   A1
>   A2
>   A3
>   A4
> 
> 
>   B1
>   B2
>   B3
>   B4
> 
>   
> 
>   
> \stopbuffer
> 
> \startxmlsetups xml:tabletestsetups
> \xmlsetsetup{#1}{*}{-}
> % tables
> \xmlsetsetup{#1}{table-wrap|table}{xml:*}
> \xmlsetsetup{#1}{thead|tbody|tr|th|td}{xml:table:*}
> \xmlsetsetup{#1}{colgroup|col}{xml:*}
> \stopxmlsetups
> 
> \xmlregistersetup{xml:tabletestsetups}
> 
> \startxmlsetups xml:table-wrap
> \startplacetable
> % \contextversion \par
> \xmlflush{#1}
> \stopplacetable
> \stopxmlsetups
> 
> \startxmlsetups xml:table
> \bTABLE
> \xmlflush{#1}
> \eTABLE
> \stopxmlsetups
> 
> \startxmlsetups xml:colgroup
> \xmlflush{#1}
> \stopxmlsetups
> 
> \startxmlsetups xml:col
> \xmlpos{#1} \xmlatt{#1}{align}\par
> \stopxmlsetups
> 
> \startxmlsetups xml:table:thead
> \bTABLEhead
> \xmlflush{#1}
> \eTABLEhead
> \stopxmlsetups
> 
> \startxmlsetups xml:table:tr
> \bTR
> \xmlflush{#1}
> \eTR
> \stopxmlsetups
> 
> \startxmlsetups xml:table:th
> \bTH
> \xmlflush{#1}
> \eTH
> \stopxmlsetups
> 
> \startxmlsetups xml:table:tbody
> \bTABLEbody
> \xmlflush{#1}
> \eTABLEbody
> \stopxmlsetups
> 
> \startxmlsetups xml:table:td
> \bTC
> \xmlflush{#1}
> \eTC
> \stopxmlsetups
> 
> \xmlprocessbuffer{main}{table}{}
> 
> 
> All the best,
> Ben
> 
> 
> Ben Moon
> b...@themoons.uk
> 
> ___
> 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://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


[NTG-context] xmlpos values doubled

2022-03-28 Thread Ben Moon via ntg-context
Hello All,

I'm trying to render a table stored in XML JATS format 
(https://jats.nlm.nih.gov/archiving/) and eventually want to use the  
tag to setup column aligning from the @align attribute, e.g.,

\setupTABLE [column] [\xmlpos{#1}] [align=\xmlatt{#1}{align}]

Including \xmlpos{#1} I get double the value returned, i.e.: the first element 
in colgroup returns 2, the second returns 4 etc.

Below is a MWE to show my issue. I show \xmlpos for each  tag in 
  above the table, which returns 2, 4, 6, 8 but I expected 1, 2, 3, 
4. Am I missing something or is there another way I could do this?


\startbuffer[table]
  

  




  
  

  H1 (centre)
  H2 (right)
  H3
  H4

  
  

  A1
  A2
  A3
  A4


  B1
  B2
  B3
  B4

  

  
\stopbuffer

\startxmlsetups xml:tabletestsetups
\xmlsetsetup{#1}{*}{-}
% tables
\xmlsetsetup{#1}{table-wrap|table}{xml:*}
\xmlsetsetup{#1}{thead|tbody|tr|th|td}{xml:table:*}
\xmlsetsetup{#1}{colgroup|col}{xml:*}
\stopxmlsetups

\xmlregistersetup{xml:tabletestsetups}

\startxmlsetups xml:table-wrap
\startplacetable
% \contextversion \par
\xmlflush{#1}
\stopplacetable
\stopxmlsetups

\startxmlsetups xml:table
\bTABLE
\xmlflush{#1}
\eTABLE
\stopxmlsetups

\startxmlsetups xml:colgroup
\xmlflush{#1}
\stopxmlsetups

\startxmlsetups xml:col
\xmlpos{#1} \xmlatt{#1}{align}\par
\stopxmlsetups

\startxmlsetups xml:table:thead
\bTABLEhead
\xmlflush{#1}
\eTABLEhead
\stopxmlsetups

\startxmlsetups xml:table:tr
\bTR
\xmlflush{#1}
\eTR
\stopxmlsetups

\startxmlsetups xml:table:th
\bTH
\xmlflush{#1}
\eTH
\stopxmlsetups

\startxmlsetups xml:table:tbody
\bTABLEbody
\xmlflush{#1}
\eTABLEbody
\stopxmlsetups

\startxmlsetups xml:table:td
\bTC
\xmlflush{#1}
\eTC
\stopxmlsetups

\xmlprocessbuffer{main}{table}{}


All the best,
Ben

Ben Moon
b...@themoons.uk
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___