Re: [NTG-context] Scaling down symbols and emojis

2019-01-16 Thread User 19087
On Wed, Jan 16, 2019 at 4:24 PM Wolfgang Schuster wrote: > When you need a switch for a smaller size which doesn’t has these > limitations you can just create them: > > \definefontsize [m] > \definefontsize [n] > > \setupbodyfontenvironment >[default] >[m=0.8, > n=0.6] In case the

Re: [NTG-context] Scaling down symbols and emojis

2019-01-16 Thread Wolfgang Schuster
User 19087 schrieb am 16.01.19 um 21:56: I'm having trouble scaling down symbols and emojis. For a while I assumed these don't scale with the current font size. Then I scoured the mailing list and realized that while scaling down seems broken, scaling up works as expected: \tx (or \tfx, \bfx

[NTG-context] Scaling down symbols and emojis

2019-01-16 Thread User 19087
I'm having trouble scaling down symbols and emojis. For a while I assumed these don't scale with the current font size. Then I scoured the mailing list and realized that while scaling down seems broken, scaling up works as expected: \usesymbols[mvs] \setupsymbolset[martinvogel 2]

Re: [NTG-context] \startcolumns and multi-line footnotes

2019-01-16 Thread Taco Hoekwater
> On 16 Jan 2019, at 15:05, Otared Kavian wrote: > > Hi Taco, > > There two documents > > /context-minimal/tex/texmf-context/doc/context/documents/general/manuals/notnow.pdf > and > > /context-minimal/tex/texmf-context/doc/context/documents/general/manuals/pagecolumns.pdf >

Re: [NTG-context] MetaFun: how to check the number of arguments

2019-01-16 Thread Jeong Dal
Dear Hans, > vardef textlength(text t) = >save n ; n := 0 ; >for i = t : > n := n + 1 ; >endfor; >n > enddef; > Thank you for a good method! It can be used in another program. Best regards, Dalyoung

Re: [NTG-context] \startcolumns and multi-line footnotes

2019-01-16 Thread Otared Kavian
Hi Taco, There two documents /context-minimal/tex/texmf-context/doc/context/documents/general/manuals/notnow.pdf and /context-minimal/tex/texmf-context/doc/context/documents/general/manuals/pagecolumns.pdf written by Hans in which he says that long footnotes and columns cannot

Re: [NTG-context] inline textbackgrounds across linebreaks

2019-01-16 Thread Aditya Mahajan
On Tue, 15 Jan 2019, Taco Hoekwater wrote: On 15 Jan 2019, at 15:08, Mohammad Hossein Bateni wrote: I guess it works fine for me on beta 2019.01.07 16:10. Thanks for testing. Sorry, I should have checked myself. On 15 Jan 2019, at 15:22, Hans Hagen wrote: works her ebut better is

[NTG-context] \startcolumns and multi-line footnotes

2019-01-16 Thread Taco Hoekwater
Hi, With the new version of columns, how do I get multi-line footnotes? I tried various things with \setupnotation but nothing seems to work? MWE: \starttext \startcolumns \dorecurse{3}{\input ward\footnote{\input zapf} } \stopcolumns \stoptext Best wishes, Taco footn.pdf Description:

Re: [NTG-context] How to adjust inter item vertical space

2019-01-16 Thread Otared Kavian
Hi, You can define your own white space and then attribute it to each item, as in the following: \setupwhitespace[big] \startsetups[mywhitespace] \setupwhitespace[small] \setupblank[small] \stopsetups \setupitemize[each][inner=\directsetup{mywhitespace}] \starttext \input knuth

[NTG-context] How to adjust inter item vertical space

2019-01-16 Thread jdh
I want to fit a page with an itemized group of items. The normal vertical spacing is to large and the [packed] doesn't give enough seperation between items. I should think that there's a simple way to adjust this with \setupitemize command or even with \startitemize. Is there? I did try

Re: [NTG-context] MetaFun: how to check the number of arguments

2019-01-16 Thread Hans Hagen
On 1/16/2019 12:53 AM, Jeong Dal wrote: Dear Hans, Thank you for a solution. In my memory, it is possible to check the argument in Lua, so I hope that there is a similar method in MetaFun. It may be easier to draw grid using lines instead of squares. vardef textlength(text t) = save n