ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* bad interaction between listofabbreviations and interlinespace
@ 2007-01-31 14:47 Johan Sandblom
  2007-02-07 22:03 ` Johan Sandblom
  0 siblings, 1 reply; 4+ messages in thread
From: Johan Sandblom @ 2007-01-31 14:47 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Consider the example below. It results in a list of synonyms that are
vertically misaligned with their meanings. What can I do?

Regards, Johan

This is Debian, pdftex compiled from source, but otherwise standard
texlive from testing. Last lines of texexec --check:

TeXExec | runtime: 0.397205
TeXExec | end of analysis
TeXExec |
TeXExec | TeXExec | version 6.2.0 - 1997-2006 - PRAGMA ADE/POD
TeXExec | TeXUtil   | version 9.1.0 - 1997-2005 - PRAGMA ADE/POD
TeXExec | CtxTools | version 1.3.3 - 2004/2006 - PRAGMA ADE/POD
TeXExec |
TeXExec | testing interface en
TeXExec | pdfTeX Version 3.141592-1.40.1 (Web2C 7.5.6)
TeXExec | ConTeXt ver: 2007.01.23 13:32 MKII fmt: 2007.1.30 int: english/english
TeXExec |
TeXExec | testing interface en
TeXExec | pdfTeX Version 3.141592-1.40.1 (Web2C 7.5.6)
TeXExec | ConTeXt ver: 2007.01.23 13:32 MKII fmt: 2007.1.30 int: english/english




% Example file
\definesynonyms[abbreviation][abbreviations][\infull]
\setupsynonyms[abbreviations][criterium=all]
\setupinterlinespace[auto, big]

\starttext

\completelistofabbreviations

\abbreviation{EEG} {Electroencephalogram}
\abbreviation{ERP} {Event-Related Potentials}

\EEG, \ERP

\stoptext

-- 
Johan Sandblom  N8, MRC, Karolinska sjh
t +46851776108  17176 Stockholm
m +46735521477  Sweden
"What is wanted is not the will to believe, but the
will to find out, which is the exact opposite"
- Bertrand Russell

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

* bad interaction between listofabbreviations and interlinespace
  2007-01-31 14:47 bad interaction between listofabbreviations and interlinespace Johan Sandblom
@ 2007-02-07 22:03 ` Johan Sandblom
  2007-02-08  8:12   ` Taco Hoekwater
  0 siblings, 1 reply; 4+ messages in thread
From: Johan Sandblom @ 2007-02-07 22:03 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Sorry to be a pest, but does anyone have an idea on this?

Johan

Consider the example below. It results in a list of synonyms that are
vertically misaligned with their meanings. What can I do?

Regards, Johan

% Example file
\definesynonyms[abbreviation][abbreviations][\infull]
\setupsynonyms[abbreviations][criterium=all]
\setupinterlinespace[auto, big]

\starttext

\completelistofabbreviations

\abbreviation{EEG} {Electroencephalogram}
\abbreviation{ERP} {Event-Related Potentials}

\EEG, \ERP

\stoptext


This is Debian, pdftex compiled from source, but otherwise standard
texlive from testing. Last lines of texexec --check:

TeXExec | runtime: 0.397205
TeXExec | end of analysis
TeXExec |
TeXExec | TeXExec | version 6.2.0 - 1997-2006 - PRAGMA ADE/POD
TeXExec | TeXUtil   | version 9.1.0 - 1997-2005 - PRAGMA ADE/POD
TeXExec | CtxTools | version 1.3.3 - 2004/2006 - PRAGMA ADE/POD
TeXExec |
TeXExec | testing interface en
TeXExec | pdfTeX Version 3.141592-1.40.2 (Web2C 7.5.6)
TeXExec | ConTeXt ver: 2007.01.23 13:32 MKII fmt: 2007.2.3 int: english/english
TeXExec |
TeXExec | testing interface en
TeXExec | pdfTeX Version 3.141592-1.40.2 (Web2C 7.5.6)
TeXExec | ConTeXt ver: 2007.01.23 13:32 MKII fmt: 2007.2.3 int: english/english





--
Johan Sandblom  N8, MRC, Karolinska sjh
t +46851776108  17176 Stockholm
m +46735521477  Sweden
"What is wanted is not the will to believe, but the
will to find out, which is the exact opposite"
- Bertrand Russell


-- 
Johan Sandblom  N8, MRC, Karolinska sjh
t +46851776108  17176 Stockholm
m +46735521477  Sweden
"What is wanted is not the will to believe, but the
will to find out, which is the exact opposite"
- Bertrand Russell

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

* Re: bad interaction between listofabbreviations and interlinespace
  2007-02-07 22:03 ` Johan Sandblom
@ 2007-02-08  8:12   ` Taco Hoekwater
  2007-02-08  8:25     ` Johan Sandblom
  0 siblings, 1 reply; 4+ messages in thread
From: Taco Hoekwater @ 2007-02-08  8:12 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Johan Sandblom wrote:
> Sorry to be a pest, but does anyone have an idea on this?
> 
> Johan
> 
> Consider the example below. It results in a list of synonyms that are
> vertically misaligned with their meanings. What can I do?

> Regards, Johan
> 
> % Example file
> \definesynonyms[abbreviation][abbreviations][\infull]
> \setupsynonyms[abbreviations][criterium=all]
> \setupinterlinespace[auto, big]
> 
> \starttext
> 
> \completelistofabbreviations
> 
> \abbreviation{EEG} {Electroencephalogram}
> \abbreviation{ERP} {Event-Related Potentials}
> 
> \EEG, \ERP
> 
> \stoptext

I've narrowed the problem down to one of the internal macros. With this:

   \unprotect
   \bgroup
   \def\@@makedescriptionpurebox #1{}
   \completelistofabbreviations
   \egroup
   \protect

the abbreviation list looks ok to me.

However, that is a quick hack that fixes the abbreviations only, at the
expense of breaking (lots) other stuff. I'll convert this message to
a bug tracker item.

Best, Taco

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

* Re: bad interaction between listofabbreviations and interlinespace
  2007-02-08  8:12   ` Taco Hoekwater
@ 2007-02-08  8:25     ` Johan Sandblom
  0 siblings, 0 replies; 4+ messages in thread
From: Johan Sandblom @ 2007-02-08  8:25 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Thank you. It does not appear to break anything in my document, so I am happy.

Johan

2007/2/8, Taco Hoekwater <taco@elvenkind.com>:
> Johan Sandblom wrote:
> > Sorry to be a pest, but does anyone have an idea on this?
> >
> > Johan
> >
> > Consider the example below. It results in a list of synonyms that are
> > vertically misaligned with their meanings. What can I do?
>
> > Regards, Johan
> >
> > % Example file
> > \definesynonyms[abbreviation][abbreviations][\infull]
> > \setupsynonyms[abbreviations][criterium=all]
> > \setupinterlinespace[auto, big]
> >
> > \starttext
> >
> > \completelistofabbreviations
> >
> > \abbreviation{EEG} {Electroencephalogram}
> > \abbreviation{ERP} {Event-Related Potentials}
> >
> > \EEG, \ERP
> >
> > \stoptext
>
> I've narrowed the problem down to one of the internal macros. With this:
>
>    \unprotect
>    \bgroup
>    \def\@@makedescriptionpurebox #1{}
>    \completelistofabbreviations
>    \egroup
>    \protect
>
> the abbreviation list looks ok to me.
>
> However, that is a quick hack that fixes the abbreviations only, at the
> expense of breaking (lots) other stuff. I'll convert this message to
> a bug tracker item.
>
> Best, Taco
>
> _______________________________________________
> ntg-context mailing list
> ntg-context@ntg.nl
> http://www.ntg.nl/mailman/listinfo/ntg-context
>


-- 
Johan Sandblom  N8, MRC, Karolinska sjh
t +46851776108  17176 Stockholm
m +46735521477  Sweden
"What is wanted is not the will to believe, but the
will to find out, which is the exact opposite"
- Bertrand Russell

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

end of thread, other threads:[~2007-02-08  8:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-01-31 14:47 bad interaction between listofabbreviations and interlinespace Johan Sandblom
2007-02-07 22:03 ` Johan Sandblom
2007-02-08  8:12   ` Taco Hoekwater
2007-02-08  8:25     ` Johan Sandblom

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