ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Aditya Mahajan <adityam@umich.edu>
To: mailing list for ConTeXt users <ntg-context@ntg.nl>
Subject: Re: referring to floats in xml
Date: Mon, 21 Mar 2011 11:44:13 -0400 (EDT)	[thread overview]
Message-ID: <alpine.LNX.2.01.1103211134220.5784@ybpnyubfg.ybpnyqbznva> (raw)
In-Reply-To: <3BE7A960-6099-48D3-9D37-F5DAA0DD61C6@hccnet.nl>

On Mon, 21 Mar 2011, R. Ermers wrote:

> Thanks, Aditya, The first problem is adequately solved by adding []. I'll prepare an example for the second problem.
>
> A related problem is referring to sections and other blocks.
>
> <section id="sec:cows"><title>Cows</title>
> <para>cows cows cows. As I told in <xref linkend="sec:cows"/></para></section>
>
> The title is mapped as follows (lpath):
> \xmlsetsetup{#1}{section/title}{xml:section/title}
>
> \startxmlsetups xml:section:title
> \section{\xmlflush{#1}}
> \stopxmlsetups
>
> The section is not mapped:
> \startxmlsetups xml:section
> \xmlflush{#1}
> \stopxmlsetups
>
> Adding [\xmlatt{#1}{id}] to xml:section:title does not work of course. 
> Using [\xmlatt{#1}{id}] with xml:section puts the id before the \section 
> command. I think one of the other commands has to be used in such a way 
> that the id is flushed forward after the \section command.

Map section to include both id and title. (Untested)

\startxmlsetups xml:section
\section[\xmlatt{#1}{id}]{\xmlfirst{#1}{/title}}
% or slightly better
% \section[\xmlattdef{#1}{id}{+}]{\xmlfirst{#1}{/title}}
% Then flush para separately
% \xmlall{#1}{/para}
% or
% \xmlconcat {#1} {/para} {\par}
% or better, add a contents tag around the contents
% <section> <title> ... </title>
%   <contents> ... </contents>
% </section>
% and then use
% \xmlfirst{#1}{/contents}

\stopxmlsetups

Aditya
___________________________________________________________________________________
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
___________________________________________________________________________________


  reply	other threads:[~2011-03-21 15:44 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-03-20  9:46 R. Ermers
2011-03-20 16:05 ` Aditya Mahajan
2011-03-21  6:28   ` R. Ermers
2011-03-21 15:44     ` Aditya Mahajan [this message]
2011-03-22  7:42       ` R. Ermers

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=alpine.LNX.2.01.1103211134220.5784@ybpnyubfg.ybpnyqbznva \
    --to=adityam@umich.edu \
    --cc=ntg-context@ntg.nl \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).