[NTG-context] Line breaks, \wordright and hyphenation

2021-10-23 Thread kauśika cittūr via ntg-context
Dear list,

In short, my question is: why does \wordright cause a line-break when the line 
preceding it breaks with hyphenation and does not otherwise? How to avoid it 
(if at all possible)?

I have this delimitedtext instance called 'amnata' defined as below:

\definemeasure[amnatamargin][3cm]
\definedelimitedtext
  [amnata]
\setupdelimitedtext
  [amnata]
  [
left=,
right=,
leftmargin={\measure{amnatamargin}},
rightmargin={\measure{amnatamargin}},
  ]

I am using this to quote paragraph(s) of other authors. 
Since, I also want to indicate where the quote is from, I use this as follows:

\startamnata
  ⋮
\wordright{author}
\stopamnata

so that the author's name appears at the right-edge of the block.

When the penultimate line inside the block breaks without hyphenation, then 
argument of \wordright is typeset as expected (i.e. in the same line).

On the other hand, when the penultimate line inside this block breaks with 
hyphenation, the argument of \wordright is pushed to the next line even when 
there is enough space for it on the same line.

Here is a sample illustrating this:

\startamnata
A quote from another author : Suppose that thereisalongwordhere.
\wordright{– author}
\stopamnata

\startamnata
A quote from another author : Here, the text does not cause 
hyphenation in the first line.
\wordright{– author}
\stopamnata

[I have attached the output here as an image] 

How do I ensure that this does not happen, if that is possible at all? I 
suppose this is expected behaviour but I am not able to understand why.

Thanks,
kauśika___
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] A book with sections

2021-10-23 Thread Bruce Horrocks via ntg-context


> On 23 Oct 2021, at 14:51, Gerben Wierda via ntg-context  
> wrote:
> 
> 
>> On 23 Oct 2021, at 15:34, Wolfgang Schuster 
>>  wrote:
>> 
>>  Gerben Wierda via ntg-context schrieb am 23.10.2021 um 15:20:
>>> I’d like a book with chapters to have sections/parts, e.g. something that 
>>> groups a few \chapter elements together. Is there support for this in LMTX? 
>>> I.e. in such a way that it also shows up in the table of contents?
>> 
>> You can use \part.
> 
> Yes. Thanks. But that leads to additional questions:
> - how do I get the parts to show up in the table of contents? Because I tried 
> \part but it did not show up
> - how do I let chapters number on (not restart in each part, and not a x.y 
> number but simply ‘2. Chapter’
> - what is a good way to create actual RHS ‘title’ pages for each chapter?
> - how do I get parts to number with Roman numerals?

I define my own versions of \part and \chapter (called \Part and \Chapter) and 
specify a different display style using setups. The definition for \Part is 
below, \Chapter is very similar so I haven't included it.

%% Double rule above part title
\startsetups PartSetup
 \setupheader[state=empty]
 \par
 \startMPcode
   draw (0,2mm)--(TextWidth,2mm) withpen pensquare scaled 1.5mm ;
   draw (0,0)--(TextWidth,0) withpen pensquare scaled 1.0mm ;
   clip currentpicture to unitsquare yscaled 1cm xscaled TextWidth
 \stopMPcode
\stopsetups

\define[2]\placePartTitle{\midaligned{#2}}
%% The above line is what I use. You want Roman numerals so maybe adapt it to:
%% \define[2]\placePartTitle{\midaligned{\convertnumber[Romannumerals][#1] #2}}

\definehead [Part] [part]
\setuphead[Part]
 [ page=right,
   placehead=yes,
   style={\stylePartTitle}, %% this is just from a \definefont
   before={\setups{PartSetup}},
   command=\placePartTitle,
 ]

With \setuplayout[location=doublesided] this then comes out on the RHS.

For the ToC, I use:

\setuplist [alternative=b]
\setuplist [Part]
 [ headnumber=no,
   margin=0cm,
   width=0cm,
   distance=0cm,
   style=\tocStylePartTitle,
 ]
\setuplist [Chapter]
 [ headnumber=no,
   margin=1em,
   width=0cm,
   distance=0cm,
 ]
\setupcombinedlist [content] [list={Part,Chapter}]

then \placecontent prints the chapter titles indented under each part.

HTH
—
Bruce Horrocks
Hampshire, UK



—
Bruce Horrocks
Hampshire, 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
___


Re: [NTG-context] My setup almost works

2021-10-23 Thread Pablo Rodriguez via ntg-context
On 10/23/21 6:09 PM, Gerben Wierda wrote:
> [...]

Replying a private to the list, since it could be useful for (future?)
reference.

> This works, except:
> - Parts are not mentioned in the table of contents. If I use
> \completecontent, I do not get the abstracts

Well, don’t use \completecontent and replace

  \placelist[chapter,chaptertext]

with something similar to

  \placelist[part, chapter,chaptertext]

> - In the backmatter, the chapters should be numbered with letters
> (appendix A, B, etc.) and chapters start again from 1 (A)

Add to the numbering command

  \definestructureconversionset[sectionnumbers][R,n][n]

the following definition

  \definestructureconversionset[appendix:sectionnumbers][R,Character][n]

> I haven’t looked at getting the part title somewhere at 1/3 of the page
> and horizontally centered yet. And the part title page should have no
> page number.

align is a fairly common option and you can add a \vskip with the
.3\textheight (or even \paperheight)

  \setuphead[part]
[placehead=yes, align=center, before={\null\vskip.3\textheight}]

\blank would be another option, but I cannot make it work here with
\textheight.

No page number is done by surpressing headers with:

  \setuphead[part][placehead=yes, header=empty]% or none

I hope it helps,

Pablo
--
http://www.ousia.tk
___
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] How to enable the use of the blackboard font in modern ConTeXt

2021-10-23 Thread Hans Hagen via ntg-context

On 10/23/2021 3:31 PM, Wolfgang Schuster via ntg-context wrote:

Gerben Wierda via ntg-context schrieb am 23.10.2021 um 15:24:
On 23 Oct 2021, at 15:15, Pablo Rodriguez via ntg-context 
mailto:ntg-context@ntg.nl>> wrote:


On 10/23/21 3:00 PM, Gerben Wierda via ntg-context wrote:

By the way, neither does \blackboard{Q} work. But \rationals works in
the case of the letter Q.


Hi Gerben,

it only seems to work inside math:

 \starttext
 \dorecurse{26}{$\blackboard\characters{\recurselevel}
 \Characters{\recurselevel}$}
 \stoptext

I hope it helps,


Yes, the new \blackboard command works, so $\blackboard{Q}$ works. Thanks.


The \blackboard command is a switch like \it, to keep it local to a 
single character put the left brace before the command.


     $Q {\blackboard Q} Q$

also, it is an math alphabet switch (one of the math alphabets)

Hans

-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
   tel: 038 477 53 69 | www.pragma-ade.nl | 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] A book with sections

2021-10-23 Thread Pablo Rodriguez via ntg-context
On 10/23/21 3:51 PM, Gerben Wierda via ntg-context wrote:
>> On 23 Oct 2021, at 15:34, Wolfgang Schuster wrote:
>> [...]
>> You can use \part.
>
> Yes. Thanks. But that leads to additional questions:
> - how do I get the parts to show up in the table of contents? Because
> I tried \part but it did not show up
> - how do I let chapters number on (not restart in each part, and not
> a x.y number but simply ‘2. Chapter’
> - what is a good way to create actual RHS ‘title’ pages for each
> chapter?
> - how do I get parts to number with Roman numerals?
Hi Gerben,

I don’t know what actual RHS title pages are:

  \definestructureresetset[default][0,1,1][1]
  \definestructureconversionset[sectionnumbers][R,n][n]
  \setupheads[sectionconversionset=sectionnumbers,
sectionresetset=default]
  \setuphead[part][placehead=yes]
  \setuphead[chapter][sectionsegments=chapter]
  \setuphead[section][sectionsegments=chapter:section]
  \starttext
  \completecontent
  \dorecurse{25}{\part{Part}
  \chapter{Chapter}
  \section{Section}
  \section{Section}}
  \stoptext

Pablo
--
http://www.ousia.tk
___
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] A book with sections

2021-10-23 Thread Wolfgang Schuster via ntg-context

Gerben Wierda schrieb am 23.10.2021 um 15:51:

On 23 Oct 2021, at 15:34, Wolfgang Schuster  
wrote:

 Gerben Wierda via ntg-context schrieb am 23.10.2021 um 15:20:

I’d like a book with chapters to have sections/parts, e.g. something that 
groups a few \chapter elements together. Is there support for this in LMTX? 
I.e. in such a way that it also shows up in the table of contents?

You can use \part.

Yes. Thanks. But that leads to additional questions:
- how do I get the parts to show up in the table of contents? Because I tried 
\part but it did not show up

I can't reproduce the problem, do you have a example.

- how do I let chapters number on (not restart in each part, and not a x.y 
number but simply ‘2. Chapter’

Use \defineresetset as shown below.

- what is a good way to create actual RHS ‘title’ pages for each chapter?

Use a doublesided layout.

- how do I get parts to number with Roman numerals?

See below.


% Change the number conversion for section titles

\defineconversionset [section] [Romannumerals] [numbers]

\setuphead
  [sectionconversionset=section]

% Show only the chapter value for chapter

\setuphead
  [chapter]
  [sectionsegments=chapter]

% Don't reset the counter for parts and chapters

\defineresetset [default] [0,0] [1]

\starttext

\completecontent

\dorecurse{4}
  {\expanded{\part{Part \recurselevel}}
   \dorecurse{5}{\expanded{\chapter{Chapter \recurselevel

\stoptext

Wolfgang

___
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] A book with sections

2021-10-23 Thread Gerben Wierda via ntg-context

> On 23 Oct 2021, at 15:34, Wolfgang Schuster 
>  wrote:
> 
>  Gerben Wierda via ntg-context schrieb am 23.10.2021 um 15:20:
>> I’d like a book with chapters to have sections/parts, e.g. something that 
>> groups a few \chapter elements together. Is there support for this in LMTX? 
>> I.e. in such a way that it also shows up in the table of contents?
> 
> You can use \part.

Yes. Thanks. But that leads to additional questions:
- how do I get the parts to show up in the table of contents? Because I tried 
\part but it did not show up
- how do I let chapters number on (not restart in each part, and not a x.y 
number but simply ‘2. Chapter’
- what is a good way to create actual RHS ‘title’ pages for each chapter?
- how do I get parts to number with Roman numerals?

Gerben


> 
> Wolfgang
> 
___
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] A book with sections

2021-10-23 Thread Wolfgang Schuster via ntg-context

Gerben Wierda via ntg-context schrieb am 23.10.2021 um 15:20:
I’d like a book with chapters to have sections/parts, e.g. something 
that groups a few \chapter elements together. Is there support for 
this in LMTX? I.e. in such a way that it also shows up in the table of 
contents?


You can use \part.

Wolfgang

___
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] How to enable the use of the blackboard font in modern ConTeXt

2021-10-23 Thread Wolfgang Schuster via ntg-context

Gerben Wierda via ntg-context schrieb am 23.10.2021 um 15:24:
On 23 Oct 2021, at 15:15, Pablo Rodriguez via ntg-context 
mailto:ntg-context@ntg.nl>> wrote:


On 10/23/21 3:00 PM, Gerben Wierda via ntg-context wrote:

By the way, neither does \blackboard{Q} work. But \rationals works in
the case of the letter Q.


Hi Gerben,

it only seems to work inside math:

 \starttext
 \dorecurse{26}{$\blackboard\characters{\recurselevel}
 \Characters{\recurselevel}$}
 \stoptext

I hope it helps,


Yes, the new \blackboard command works, so $\blackboard{Q}$ works. Thanks.


The \blackboard command is a switch like \it, to keep it local to a 
single character put the left brace before the command.


    $Q {\blackboard Q} Q$

Wolfgang

___
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] How to enable the use of the blackboard font in modern ConTeXt

2021-10-23 Thread Gerben Wierda via ntg-context
On 23 Oct 2021, at 15:15, Pablo Rodriguez via ntg-context  
wrote:
> 
> On 10/23/21 3:00 PM, Gerben Wierda via ntg-context wrote:
>> By the way, neither does \blackboard{Q} work. But \rationals works in
>> the case of the letter Q.
> 
> Hi Gerben,
> 
> it only seems to work inside math:
> 
>  \starttext
>  \dorecurse{26}{$\blackboard\characters{\recurselevel}
>  \Characters{\recurselevel}$}
>  \stoptext
> 
> I hope it helps,

Yes, the new \blackboard command works, so $\blackboard{Q}$ works. Thanks.

Feature request: make sure that the new \blackboard switches math mode on/off 
if necessary. Not a big deal though. The fix is simple. Adding the info about 
math mode might also be helpful here: 
https://wiki.contextgarden.net/Blackboard_bold 


G

> 
> Pablo
> --
> http://www.ousia.tk
> ___
> 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] A book with sections

2021-10-23 Thread Gerben Wierda via ntg-context
I’d like a book with chapters to have sections/parts, e.g. something that 
groups a few \chapter elements together. Is there support for this in LMTX? 
I.e. in such a way that it also shows up in the table of contents?

Thanks,


Gerben Wierda (LinkedIn )
R Enterprise Architecture  (main site)
Book: Chess and the Art of Enterprise Architecture 
Book: Mastering ArchiMate 

___
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] How to enable the use of the blackboard font in modern ConTeXt

2021-10-23 Thread Pablo Rodriguez via ntg-context
On 10/23/21 3:00 PM, Gerben Wierda via ntg-context wrote:
> By the way, neither does \blackboard{Q} work. But \rationals works in
> the case of the letter Q.

Hi Gerben,

it only seems to work inside math:

  \starttext
  \dorecurse{26}{$\blackboard\characters{\recurselevel}
  \Characters{\recurselevel}$}
  \stoptext

I hope it helps,

Pablo
--
http://www.ousia.tk
___
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] How to enable the use of the blackboard font in modern ConTeXt

2021-10-23 Thread Gerben Wierda via ntg-context
By the way, neither does \blackboard{Q} work. But \rationals works in the case 
of the letter Q.

Gerben 

> On 23 Oct 2021, at 14:42, Gerben Wierda via ntg-context  
> wrote:
> 
> I’m back to an attempt to migrate my old mkii project to lmtx
> 
> One thing I haven’t been able to find yet is how to use the blackboard font.
> 
> {\blackboard Q}
> 
> Doesn’t do anything. It also doesn’t give an error.
> 
> Gerben Wierda (LinkedIn )
> R Enterprise Architecture  (main site)
> Book: Chess and the Art of Enterprise Architecture 
> 
> Book: Mastering ArchiMate 
> 
> ___
> 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] How to enable the use of the blackboard font in modern ConTeXt

2021-10-23 Thread Gerben Wierda via ntg-context
I’m back to an attempt to migrate my old mkii project to lmtx

One thing I haven’t been able to find yet is how to use the blackboard font.

{\blackboard Q}

Doesn’t do anything. It also doesn’t give an error.

Gerben Wierda (LinkedIn )
R Enterprise Architecture  (main site)
Book: Chess and the Art of Enterprise Architecture 
Book: Mastering ArchiMate 

___
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] logo from wiki

2021-10-23 Thread Pablo Rodriguez via ntg-context
On 10/23/21 12:35 PM, Adam Reviczky via ntg-context wrote:
> Hi Pablo,
>
> https://gitlab.com/schickele/new-context-logo
> (See: https://mailman.ntg.nl/pipermail/ntg-context/2019/093859.html)

Many thanks for your fast reply and your help, Adam.

Pablo
--
http://www.ousia.tk
___
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] logo from wiki

2021-10-23 Thread Adam Reviczky via ntg-context
Hi Pablo,

https://gitlab.com/schickele/new-context-logo
(See: https://mailman.ntg.nl/pipermail/ntg-context/2019/093859.html)

Adam

On Sat, Oct 23, 2021 at 8:16 AM Pablo Rodriguez via ntg-context <
ntg-context@ntg.nl> wrote:

> Dear list,
>
> where could I get the vector version from
>
> https://wiki.contextgarden.net/skins/common/images/context/context_logo_inv.png
> ?
>
> Many thanks for your help,
>
> Pablo
> --
> http://www.ousia.tk
>
> ___
> 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
___


Re: [NTG-context] another svg conversion=mp question

2021-10-23 Thread juh via ntg-context
Am Fri, Oct 22, 2021 at 05:48:09PM +0200 schrieb Hans Hagen:
> On 10/22/2021 3:58 PM, juh via ntg-context wrote:
> > Can I do any harm if I do:
> > 
> > \setupexternalfigures[conversion=mp]
> 
> probably not unless there is an mp conversion for the other formats

Thanks a lot, this is a good enough approach for the moment.

juh

-- 
Autoren-Homepage: . http://literatur.hasecke.com
Satiren & Essays: . http://www.sudelbuch.de
Privater Blog:  http://www.hasecke.eu
Netzliteratur-Projekt:  http://www.generationenprojekt.de




signature.asc
Description: PGP signature
___
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] upload

2021-10-23 Thread Mikael Sundqvist via ntg-context
On Fri, Oct 22, 2021 at 9:22 AM Hans Hagen  wrote:
>
> On 10/21/2021 10:31 PM, Mikael Sundqvist via ntg-context wrote:
>
> > It works very nicely. I played with the test file you sent me, and I
> > find that in the .lfg file, the up parameter set to 0.06 instead of
> > 0.1 looks better to me.
> there are no ssty's for the quadruple prime in that font but if you need
> primes so badly you probably shouldn't use it anyway i guess (there are
> only super-textsize ssty variants for the 1/2/3 and their reverse)
>
> anyway, as you desperately need these quads (why check otherwise),
> adding this to the lfg blob helps:
>
> local four = characters[0x2057]
> if four then
>  local one = characters[okay]
>  local owd = .75*one.width
>  local off = .6*one.height
>  four.width = 4*owd
>  four.commands = {
>  { "offset", 0, off, okay },
>  { "offset",   owd, off, okay },
>  { "offset", 2*owd, off, okay },
>  { "offset", 3*owd, off, okay },
>  }
> else
>  -- we don't add (but we could), just patch, and there's no
>  -- reverse quad either
> end
>
> and no one will notice (unless you wikify al this)
>
> Hans
>
> -
>Hans Hagen | PRAGMA ADE
>Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
> tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
> -

Hi!

As I wrote, I do not use the quadruple primes (I used your file), but
I must confess that I'm impressed that you fix it so quickly. :)

In any case, a big thank you for fixing the primes in the libertinus font!!

/Mikael
___
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] logo from wiki

2021-10-23 Thread Pablo Rodriguez via ntg-context
Dear list,

where could I get the vector version from
https://wiki.contextgarden.net/skins/common/images/context/context_logo_inv.png?

Many thanks for your help,

Pablo
--
http://www.ousia.tk
___
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
___