Re: [NTG-context] Finalizing my book

2015-09-06 Thread Mikoláš Štrajt
>> 1) its impossible to place table of content after the content itself. It >> simply doesnt display without any trace in log. > >Hi Mikoláš, > >\placecontent[criterium=previous] is the right command. > >> 2) i am triying to use Antykwa Torunska with "\definetypeface [antykwa] >> [rm] [serif]

Re: [NTG-context] Finalizing my book

2015-09-06 Thread Wolfgang Schuster
Mikoláš Štrajt 5. September 2015 22:15 I am finalizing my semi-autogenerated e-book and i ran into three issues: 1) its impossible to place table of content after the content itself. It simply doesnt display without any trace in log. 2) i am triying to use Antykwa

[NTG-context] footnote coloring

2015-09-06 Thread dr. Hans van der Meer
I want to color all elements of a footnote, but I cannot find how to do this.Minimal example:\def\rednumber#1{\color[red]{#1}}\starttext\setupfootnotes[textcolor=red,numbercommand=\rednumber,foregroundcolor=red]This text\footnote{the footnote} contains a footnote.\stoptextThe footnotenumber in the

[NTG-context] framed broken?

2015-09-06 Thread dr. Hans van der Meer
I tried to reproduce a framed example from the context-reference: Input taken from this example by copying the lines from the reference document: \starttext \framed [width=.2\hsize,height=3cm] {\cbox to 2.5cm{\hsize2.5cm just\\in the\\middle}} \stoptext result is wrong in comparison with the

Re: [NTG-context] footnote coloring

2015-09-06 Thread Pablo Rodriguez
On 09/06/2015 11:11 AM, dr. Hans van der Meer wrote: > I want to color all elements of a footnote, but I cannot find how to do > this. > Minimal example: > > \def\rednumber#1{\color[red]{#1}} > \starttext > \setupfootnotes[textcolor=red,numbercommand=\rednumber,foregroundcolor=red] > This

Re: [NTG-context] footnote coloring

2015-09-06 Thread Meer, H. van der
Indeed, this helped. Thanks. For the record: in order to keep the position of the number in the footnote high, one has to use: \def\redfootnotenumber#1{\color[red]{\high{#1}}} \setupnotation[footnote][numbercommand=\redfootnotenumber] Hans van der Meer On 06 Sep 2015, at 12:29, Pablo

Re: [NTG-context] Finalizing my book

2015-09-06 Thread Pablo Rodriguez
On 09/05/2015 10:15 PM, Mikoláš Štrajt wrote: > I am finalizing my semi-autogenerated e-book and i ran into three issues: > > 1) its impossible to place table of content after the content itself. It > simply doesnt display without any trace in log. Hi Mikoláš, \placecontent[criterium=previous]

Re: [NTG-context] Oddity: \buildtextaccent shifts glyph right

2015-09-06 Thread Rik
On 2015-09-06 11:52, Pablo Rodriguez wrote: On 09/06/2015 05:27 PM, Rik wrote: I am using \buildtextaccent to create a couple of characters that have no Unicode equivalent. Hi Rik, although they don’t seem to work as expected in ConTeXt, Unicode has combining diacritical marks (as you might

Re: [NTG-context] footnote coloring

2015-09-06 Thread Meer, H. van der
Thanks. I would not have thought of that. In the reference manual headcolor occurs in 13.2 \setupdescriptions and in 13.5 \definelabel only. I did not connect that with footnotes. Is \setupnotation a special form of \setupdescriptions? By the way, is a separate call to

[NTG-context] Oddity: \buildtextaccent shifts glyph right

2015-09-06 Thread Rik
I am using \buildtextaccent to create a couple of characters that have no Unicode equivalent. They are scribal abbreviations that made it into early typesetters works. In this case, the abbreviation are for Latin que, which looks like a q with a small ezh appended in a subscript position, and

Re: [NTG-context] Oddity: \buildtextaccent shifts glyph right

2015-09-06 Thread Pablo Rodriguez
On 09/06/2015 05:27 PM, Rik wrote: > I am using \buildtextaccent to create a couple of characters that have > no Unicode equivalent. Hi Rik, although they don’t seem to work as expected in ConTeXt, Unicode has combining diacritical marks (as you might know), such as: U+0301 COMBINING ACUTE

Re: [NTG-context] Oddity: \buildtextaccent shifts glyph right

2015-09-06 Thread Thomas A. Schmitz
On 06.09.2015 17:27, Rik wrote: It seems that \buildtextaccent\textacute q (or \buildtextaccent´q) moves the q to the right within the character’s bounding box. The following example (and attached resulting pdf) demonstrates this. Lines 1 and 2 show the string with and without the

Re: [NTG-context] footnote coloring

2015-09-06 Thread Wolfgang Schuster
Meer, H. van der 6. September 2015 13:15 Indeed, this helped. Thanks. For the record: in order to keep the position of the number in the footnote high, one has to use: \def\redfootnotenumber#1{\color[red]{\high{#1}}}