ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Problems with XML and table of contents
@ 2014-03-27 10:55 Xan
  2014-03-27 22:07 ` Hans Hagen
  2014-03-28  8:27 ` Xan
  0 siblings, 2 replies; 4+ messages in thread
From: Xan @ 2014-03-27 10:55 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hi,

I have this:

\definehead [Fitxa] [subsubject]
\setuphead [Fitxa][textstyle=sca,align=normal,color=headingcolor,before={},ownnumber=yes,incrementnumber=yes,number=no,strut=no]
\setuplabeltext [Fitxa=Fitxa]
\setuplist[Fitxa] [margin=4em,interaction=text,color=green,textcommand=\WORD]
%\setuplist [Fitxa] [width=2em,criterium=all,interaction=all]

\newcounter\FitxaNumber

\def\fitxa#1%
{\doglobal\increment\FitxaNumber
\Fitxa{\FitxaNumber}{#1}}


\setupcombinedlist[content][list={chapter,section,subsection,Fitxa,tasca},interaction=all,textcolor=black]


and

\startxmlsetups xml:demo:titol
  \fitxa{\xmltext{#1}{/}}
\stopxmlsetups


In the document all is ok, but in the table of contents, I get "phantom" content.

Any clue?

Thanks in advance,
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] 4+ messages in thread

* Re: Problems with XML and table of contents
  2014-03-27 10:55 Problems with XML and table of contents Xan
@ 2014-03-27 22:07 ` Hans Hagen
  2014-03-28  8:27 ` Xan
  1 sibling, 0 replies; 4+ messages in thread
From: Hans Hagen @ 2014-03-27 22:07 UTC (permalink / raw)
  To: ntg-context

On 3/27/2014 11:55 AM, Xan wrote:
> Hi,
>
> I have this:
>
> \definehead [Fitxa] [subsubject]
> \setuphead [Fitxa][textstyle=sca,align=normal,color=headingcolor,before={},ownnumber=yes,incrementnumber=yes,number=no,strut=no]
> \setuplabeltext [Fitxa=Fitxa]
> \setuplist[Fitxa] [margin=4em,interaction=text,color=green,textcommand=\WORD]
> %\setuplist [Fitxa] [width=2em,criterium=all,interaction=all]
>
> \newcounter\FitxaNumber
>
> \def\fitxa#1%
> {\doglobal\increment\FitxaNumber
> \Fitxa{\FitxaNumber}{#1}}
>
>
> \setupcombinedlist[content][list={chapter,section,subsection,Fitxa,tasca},interaction=all,textcolor=black]
>
>
> and
>
> \startxmlsetups xml:demo:titol
>    \fitxa{\xmltext{#1}{/}}
> \stopxmlsetups
>
>
> In the document all is ok, but in the table of contents, I get "phantom" content.
>
> Any clue?

\definehead [Fitxa] [subsection][ownnumber=yes,expansion=yes]

\newcounter\FitxaNumber

\startxmlsetups xml:demo:base
       \xmlsetsetup{demo}{*}{xml:demo:*}
\stopxmlsetups

\xmlregisterdocumentsetup{demo}{xml:demo:base}

\startxmlsetups xml:demo:d
     \xmlflush{#1}
\stopxmlsetups

\startxmlsetups xml:demo:t
     \doglobal\increment\FitxaNumber
     \Fitxa{\FitxaNumber}{\xmlflush{#1}}
\stopxmlsetups

\startxmlsetups xml:demo:b
     \start
         \bf \xmlflush{#1}
     \stop
\stopxmlsetups

\starttext

\placelist[Fitxa][criterium=all]

\page

\xmlprocessfile{demo}{./x.xml}{}

\stoptext



<?xml version='1.0' standalone='yes' encoding="UTF-8"?>
<d>
     <t>normal <b>bold</b></t>
     <t>some more</t>
</d>


-----------------------------------------------------------------
                                           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] 4+ messages in thread

* Re: Problems with XML and table of contents
  2014-03-27 10:55 Problems with XML and table of contents Xan
  2014-03-27 22:07 ` Hans Hagen
@ 2014-03-28  8:27 ` Xan
  2014-04-01  7:59   ` Xan
  1 sibling, 1 reply; 4+ messages in thread
From: Xan @ 2014-03-28  8:27 UTC (permalink / raw)
  To: Xan; +Cc: mailing list for ConTeXt users

Thanks, many thanks Hans.
The key is expansion=yes. Without, "phantom" contents in table of contents. With, all is ok:

 \definehead [Fitxa] [subsection][ownnumber=yes,expansion=yes]

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] 4+ messages in thread

* Re: Problems with XML and table of contents
  2014-03-28  8:27 ` Xan
@ 2014-04-01  7:59   ` Xan
  0 siblings, 0 replies; 4+ messages in thread
From: Xan @ 2014-04-01  7:59 UTC (permalink / raw)
  To: Xan; +Cc: mailing list for ConTeXt users

Finally, I use xsltproc and xml from scratch for this conversion, because Aditya module seems to does not work with XML.

The process is XML, XSLT --> ConTeXT file -> PDF file

Just for interest of someone...

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] 4+ messages in thread

end of thread, other threads:[~2014-04-01  7:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-27 10:55 Problems with XML and table of contents Xan
2014-03-27 22:07 ` Hans Hagen
2014-03-28  8:27 ` Xan
2014-04-01  7:59   ` Xan

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