Re: [NTG-context] Changing font and font size inside textex

2022-05-30 Thread Stefan Nedeljkovic via ntg-context
Thanks Max that works perfectly! But It would still be useful if I could
change families inside a MPpage.

On Tue, May 31, 2022 at 1:31 AM Max Chernoff  wrote:

> > I'm using the following macro to set the font size via h-height:
> >
> > \starttexdefinition setxheight [#1][#2]
> > \switchtobodyfont[#1, 12pt]
> > \scratchdimen=\dimexpr#2\relax
> > \switchtobodyfont[#1, \cldcontext{tex.dimen.scratchdimen /
> tex.sp"1ex"
> > * tex.sp"1em" .. "sp"}]
> > \stoptexdefinition
> >
> > But I can't figure out how to use that in MPpage.
>
> So it looks like the "\cldcontext" command doesn't work quite right
> inside "textext", and it also looks like "\switchtobodyfont" doesn't
> take effect until text is actually typeset when we're inside "textext".
>
> This seems to work:
>
>  \starttexdefinition setxheight [#1]
>  \switchtobodyfont[\the\dimexpr #1 * \number\dimexpr1em\relax /
> \number\dimexpr1ex\relax \relax]
>  \stoptexdefinition
>
>
>  \starttext
>  \switchtobodyfont[adventor]
>  \startMPpage
>  draw textext.origin("\setxheight[1cm]Hello!");
>
>  draw (0, 1cm) -- (6cm, 1cm);
>  \stopMPpage
>
>  \switchtobodyfont[pagella]
>  \startMPpage
>  draw textext.origin("\setxheight[1cm]Hello!");
>
>  draw (0, 1cm) -- (6cm, 1cm);
>  \stopMPpage
>
>  \switchtobodyfont[heros]
>  \startMPpage
>  draw textext.origin("\setxheight[6pt]Hello!");
>  draw textext.origin("\setxheight[24pt]Hello!");
>
>  draw (0, 6pt) -- (6cm, 6pt);
>  draw (0, 24pt) -- (6cm, 24pt);
>  \stopMPpage
>  \stoptext
>
> The catch here is that you need to set the font family *before* you
> start the MPpage.
>
> -- Max
>
___
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] Setting up zint on a mac with macOS Montery Version 12.3.1

2022-05-30 Thread Aditya Mahajan via ntg-context
On Tue, 31 May 2022, Michal Vlasák via ntg-context wrote:

> On Mon May 30, 2022 at 8:19 PM CEST, Jan-Erik Hägglöf via ntg-context wrote:
> > With latest LMTX installed on my Monterey intel MacBook Air and Zint 
> > version 2.11
> >
> > optional> using library 
> > '/Users/janneman/CTX/tex/texmf-osx-64/bin/lib/luametatex/zint/libzint.so'
> > zint> something went wrong: invalid result vector
> > zint> something went wrong: invalid result vector
> > zint> something went wrong: invalid result vector
> > …
> 
> Luametatex is still built against zint 2.10, which is on the binary
> level incompatible with 2.11, so you should try 2.10 in the meantime.
> 
> Ultimately there are three possibilities for the long run:
> 
> 1) Everyone sticks with 2.10 (which may be problematic since binaries
> for this "old" version may gradually cease to be available).
> 
> 2) Hans updates luametatex to zint 2.11, which would mean that a lot of
> people would need to update their zint installations now (and possibly
> in the future for every update). This is what was done last time with
> the update to 2.10.
> 
> 3) luametatex gains compatibility with 2.10 *and* 2.11.
> 
> Not sure what is the best way to proceed, since 3) is the messiest
> implementation wise, but nicest for the users.

Another option is to call the binary via the filter module. Here is an example 
which uses the `barcode` binary. It should be easy to adapt this to call `zint`.

https://github.com/adityam/filter/blob/dev/tests/13-filtersetup.tex

The filter module caches the result, so the overhead of calling a binary 
instead of a library will be negligible. 

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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] Changing font and font size inside textex

2022-05-30 Thread Max Chernoff via ntg-context

I'm using the following macro to set the font size via h-height:

\starttexdefinition setxheight [#1][#2]
\switchtobodyfont[#1, 12pt]
\scratchdimen=\dimexpr#2\relax
\switchtobodyfont[#1, \cldcontext{tex.dimen.scratchdimen / tex.sp"1ex"
* tex.sp"1em" .. "sp"}]
\stoptexdefinition

But I can't figure out how to use that in MPpage.


So it looks like the "\cldcontext" command doesn't work quite right
inside "textext", and it also looks like "\switchtobodyfont" doesn't
take effect until text is actually typeset when we're inside "textext".

This seems to work:

\starttexdefinition setxheight [#1]
\switchtobodyfont[\the\dimexpr #1 * \number\dimexpr1em\relax / 
\number\dimexpr1ex\relax \relax]
\stoptexdefinition


\starttext
\switchtobodyfont[adventor]
\startMPpage
draw textext.origin("\setxheight[1cm]Hello!");

draw (0, 1cm) -- (6cm, 1cm);
\stopMPpage

\switchtobodyfont[pagella]
\startMPpage
draw textext.origin("\setxheight[1cm]Hello!");

draw (0, 1cm) -- (6cm, 1cm);
\stopMPpage

\switchtobodyfont[heros]
\startMPpage
draw textext.origin("\setxheight[6pt]Hello!");
draw textext.origin("\setxheight[24pt]Hello!");

draw (0, 6pt) -- (6cm, 6pt);
draw (0, 24pt) -- (6cm, 24pt);
\stopMPpage
\stoptext

The catch here is that you need to set the font family *before* you
start the MPpage.

-- Max
___
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] Setting up zint on a mac with macOS Montery Version 12.3.1

2022-05-30 Thread Michal Vlasák via ntg-context
On Mon May 30, 2022 at 8:19 PM CEST, Jan-Erik Hägglöf via ntg-context wrote:
> With latest LMTX installed on my Monterey intel MacBook Air and Zint version 
> 2.11
>
> optional> using library 
> '/Users/janneman/CTX/tex/texmf-osx-64/bin/lib/luametatex/zint/libzint.so'
> zint> something went wrong: invalid result vector
> zint> something went wrong: invalid result vector
> zint> something went wrong: invalid result vector
> …

Luametatex is still built against zint 2.10, which is on the binary
level incompatible with 2.11, so you should try 2.10 in the meantime.

Ultimately there are three possibilities for the long run:

1) Everyone sticks with 2.10 (which may be problematic since binaries
for this "old" version may gradually cease to be available).

2) Hans updates luametatex to zint 2.11, which would mean that a lot of
people would need to update their zint installations now (and possibly
in the future for every update). This is what was done last time with
the update to 2.10.

3) luametatex gains compatibility with 2.10 *and* 2.11.

Not sure what is the best way to proceed, since 3) is the messiest
implementation wise, but nicest for the users.


Michal Vlasák

PS: Previously I also suggested option 4: The optional libraries for
selected platforms would be built on the context garden and available
for download (perhaps incorporated into the not yet existing module
manager?). Building the some of the small libraries is easy, but for
the advanced ones one would have to also build transitive dependencies
and this gets out of hand quickly with e.g. curl (and in this case the
returns are diminishing - curl AFAIK is so stable, that such breakage
like with zint shouldn't ever happen).

For what it's worth, this is my repository which allows building some of
the simple libs on Linux (with the possibility to cross compile to
Windows). It will probably also work on Mac. The versions of the
libraries are pinned e.g. zint is locked to 2.10, so at least that
should work, but I didn't follow closely updates to others in luametatex.

https://github.com/vlasakm/context-optional-libraries
___
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] Setting up zint on a mac with macOS Montery Version 12.3.1

2022-05-30 Thread Luis Montgomery via ntg-context
I've seen this error with zinc compiled from source in github, not with v.
2.10.0 (sourceforge). Later I will try the latest v. 2.11.0.

Cheers,

L. Montgomery

El lun., 30 de mayo de 2022 13:19, Jan-Erik Hägglöf via ntg-context <
ntg-context@ntg.nl> escribió:

> Hi!
>
> I have issues to get this to work
>
> With latest LMTX installed on my Monterey intel MacBook Air and Zint
> version 2.11
>
> This appears in my log entry
>
> …
> optional> using library
> '/Users/janneman/CTX/tex/texmf-osx-64/bin/lib/luametatex/zint/libzint.so'
> zint> something went wrong: invalid result vector
> zint> something went wrong: invalid result vector
> zint> something went wrong: invalid result vector
> …
>
>
>
>
> > 13 apr. 2022 kl. 00:47 skrev Bruce Horrocks via ntg-context <
> ntg-context@ntg.nl>:
> >
> >
> >
> >> On 12 Apr 2022, at 21:04, Keith McKay  wrote:
> >>
> >> Hi All
> >> I created the symbolic link as suggested by Bruce and Luis and still
> got the error message
> >>
> >> optional> unable to locate library 'libzint'
> >>
> >> in my text editor. I use TeXworks. However, I thought I would try
> running from the Terminal app and it worked. It found libzint and output
> the pdf with both barcodes and the qrcode. I have no idea why it works in
> the Terminal and not TexWorks, I'm guessing I have a path issue which I
> need to investigate.
> >
> > Could be a path issue - or some other environment variable. This link
> should help you decide what needs to go where:
> > <
> https://unix.stackexchange.com/questions/71253/what-should-shouldnt-go-in-zshenv-zshrc-zlogin-zprofile-zlogout
> >
> >
> >> Notes
> >> 1) My machine is a mac-mini-M1 with macos Monterey and I'm running the
> latest ConTeXt version
> >> 2) Bruce noted that my Homebrew was installed in a non-standard
> location so I checked on the Hombrew website and it is installed in
> opt/homebrew for Apple Silicon i.e the M1 chip. Maybe Bruce's homebrew was
> installed on an earlier version.
> >
> > Ah, I'm on an Intel Mac which still uses the old approach. Apologies for
> the red herring.
> >
> >> Thanks to Luis and Bruce for their suggestions.
> >> Best Wishes
> >> Keith McKay
> >
> > —
> > 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
> >
> ___
>
>
> ___
> 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] MathML when processing XML

2022-05-30 Thread Duncan Hothersall via ntg-context
Answering my own question - the rules in x-mathml.mkxl/.lmt assume *only*
an mml: namespace on MathML elements. Having built my current project on
the basis of the examples in the XML in mkiv manual, I had two layers of
namespaces in addition to that. Redoing the mappings for the MathML
elements resulted in glorious formulas coming out.

Duncan

On Sun, 29 May 2022 at 22:23, Duncan Hothersall  wrote:

> This feels like a really stupid question but I can't find an answer to it
> anywhere.
>
> When processing an XML file directly with ConTeXt, i.e.
> using \startxmlsetups rules, how can I make use of the MathML module for
> the MathML content in my XML source? Should I include a specific piece of
> code with a \registerctxluafile command as well as / instead of
> \usemodule[mathml]? Do I need to use something other than \xmlflush to pass
> the XML to the module?
>
> Sorry, it's probably obvious but I can't work it out!
>
> Thanks.
>
> Duncan
>


-- 
Duncan Hothersall, Operations Director
CAPDM Limited - Online Program Enablers
0131 677 2400  www.capdm.com
Registered in Scotland: SC168970   VAT: 682 846 983
Registered address: 20 Forth Street Edinburgh EH1 3LH UK


Capture, author, publish, deliver and manage your learning materials.


*Sign up to the CAPDM newsletter here *
___
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] Changing font and font size inside textex

2022-05-30 Thread Stefan Nedeljkovic via ntg-context
Dear list,

I want to be able to change the font and the font size inside a MPpage. But
if I try to prepend \switchtobodyfont to the text inside textext it doesn't
work. I'm using the following macro to set the font size via h-height:

\starttexdefinition setxheight [#1][#2]
\switchtobodyfont[#1, 12pt]
\scratchdimen=\dimexpr#2\relax
\switchtobodyfont[#1, \cldcontext{tex.dimen.scratchdimen / tex.sp"1ex"
* tex.sp"1em" .. "sp"}]
\stoptexdefinition

But I can't figure out how to use that in MPpage.
Any help would be appreciated.

Sincerely,
Stefan
___
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] Setting up zint on a mac with macOS Montery Version 12.3.1

2022-05-30 Thread Jan-Erik Hägglöf via ntg-context
Hi!

I have issues to get this to work

With latest LMTX installed on my Monterey intel MacBook Air and Zint version 
2.11

This appears in my log entry

…
optional> using library 
'/Users/janneman/CTX/tex/texmf-osx-64/bin/lib/luametatex/zint/libzint.so'
zint> something went wrong: invalid result vector
zint> something went wrong: invalid result vector
zint> something went wrong: invalid result vector
…




> 13 apr. 2022 kl. 00:47 skrev Bruce Horrocks via ntg-context 
> :
> 
> 
> 
>> On 12 Apr 2022, at 21:04, Keith McKay  wrote:
>> 
>> Hi All
>> I created the symbolic link as suggested by Bruce and Luis and still got the 
>> error message 
>> 
>> optional> unable to locate library 'libzint'
>> 
>> in my text editor. I use TeXworks. However, I thought I would try running 
>> from the Terminal app and it worked. It found libzint and output the pdf 
>> with both barcodes and the qrcode. I have no idea why it works in the 
>> Terminal and not TexWorks, I'm guessing I have a path issue which I need to 
>> investigate.
> 
> Could be a path issue - or some other environment variable. This link should 
> help you decide what needs to go where:
> 
> 
>> Notes
>> 1) My machine is a mac-mini-M1 with macos Monterey and I'm running the 
>> latest ConTeXt version
>> 2) Bruce noted that my Homebrew was installed in a non-standard location so 
>> I checked on the Hombrew website and it is installed in opt/homebrew for 
>> Apple Silicon i.e the M1 chip. Maybe Bruce's homebrew was installed on an 
>> earlier version.
> 
> Ah, I'm on an Intel Mac which still uses the old approach. Apologies for the 
> red herring.
> 
>> Thanks to Luis and Bruce for their suggestions.
>> Best Wishes
>> Keith McKay
> 
> —
> 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
> ___

___
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] Align headings on the left

2022-05-30 Thread Jürgen Althaus via ntg-context
Hallo Hraban,

 deswegen ... Ich hab mich schon gewundert warum nix läuft.

 

Jürgen

 

Von meinem Commodore 64 geschickt

 

-Ursprüngliche Nachricht-
Von: ntg-context  Im Auftrag von Henning Hraban 
Ramm via ntg-context
Gesendet: Montag, 30. Mai 2022 19:19
An: Jürgen Althaus via ntg-context 
Cc: Henning Hraban Ramm 
Betreff: Re: [NTG-context] Align headings on the left

 

Am 30.05.22 um 18:37 schrieb Jürgen Althaus via ntg-context:

> Von meinem Commodore 64 geschickt

 

Hallo Jürgen,

ich meine mich zwar zu erinnern, dass es eine TeX-Distribution für C64 gab, 
aber mit LuaMetaTeX wird das nix... ;)

 

Grüßlinge, Hraban

___

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] Align headings on the left

2022-05-30 Thread Jürgen Althaus via ntg-context
Hello Wolfgang, thanks for the quick help. That it is so simple ... The
learning curve is just high at first.

 

Jürgen

 

Von meinem Commodore 64 geschickt

 

Von: ntg-context  Im Auftrag von Wolfgang
Schuster via ntg-context
Gesendet: Montag, 30. Mai 2022 18:56
An: mailing list for ConTeXt users 
Cc: Wolfgang Schuster 
Betreff: Re: [NTG-context] Align headings on the left

 

Jürgen Althaus via ntg-context schrieb am 30.05.2022 um 18:37:



Hello all,

 

my first post in this mailing list and I hope you can help me. I am looking
for a setting that sets the headings completely left-aligned. Have
unfortunately found nothing suitable in the online search. Maybe I searched
for the wrong terms?


The layout of titles can be changed with the \setuphead commmand
and the alternative key is used to select on of the predefined styles,
in your case paragraph is the style you need.

 begin example
\setuphead
  [chapter]
  [alternative=paragraph]

\starttext

\chapter{Bestehen und Reichweite eines arbeitgeberseitigen Weisungsrechts
auf Anordnung der Teilnahme \unknown}

\input lorem

\stoptext
 end example

The ConTeXt wiki has a separate page with all major documents
(https://wiki.contextgarden.net/Documentation) and the "not so short
introduction"
gives a overview over many ConTeXt features.

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] Align headings on the left

2022-05-30 Thread Henning Hraban Ramm via ntg-context

Am 30.05.22 um 18:37 schrieb Jürgen Althaus via ntg-context:

Von meinem Commodore 64 geschickt


Hallo Jürgen,
ich meine mich zwar zu erinnern, dass es eine TeX-Distribution für C64 
gab, aber mit LuaMetaTeX wird das nix... ;)


Grüßlinge, Hraban
___
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] Align headings on the left

2022-05-30 Thread Wolfgang Schuster via ntg-context

Jürgen Althaus via ntg-context schrieb am 30.05.2022 um 18:37:


Hello all,

my first post in this mailing list and I hope you can help me. I am 
looking for a setting that sets the headings completely left-aligned. 
Have unfortunately found nothing suitable in the online search. Maybe 
I searched for the wrong terms?




The layout of titles can be changed with the \setuphead commmand
and the alternative key is used to select on of the predefined styles,
in your case paragraph is the style you need.

 begin example
\setuphead
  [chapter]
  [alternative=paragraph]

\starttext

\chapter{Bestehen und Reichweite eines arbeitgeberseitigen 
Weisungsrechts auf Anordnung der Teilnahme \unknown}


\input lorem

\stoptext
 end example

The ConTeXt wiki has a separate page with all major documents
(https://wiki.contextgarden.net/Documentation) and the "not so short 
introduction"

gives a overview over many ConTeXt features.

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
___


[NTG-context] Align headings on the left

2022-05-30 Thread Jürgen Althaus via ntg-context
Hello all,

 

my first post in this mailing list and I hope you can help me. I am looking
for a setting that sets the headings completely left-aligned. Have
unfortunately found nothing suitable in the online search. Maybe I searched
for the wrong terms?

 



 

Thanks in advance for your help

 

Jürgen

 

Von meinem Commodore 64 geschickt

 

___
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] issue in Lua syntax formatting

2022-05-30 Thread Henning Hraban Ramm via ntg-context

Hi,
the formatting of Lua multi-line strings messes up the source structure, 
in the following MWE, the "one" is displayed after "[[":


\starttext

\startLUA
words = [[
  one
  two
  three
]]
\stopLUA

\stoptext

(Denis recognized that in his MAPS/CGJ article on ligature handling.)

Hraban
___
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] arm osx

2022-05-30 Thread Taco Hoekwater via ntg-context
Hi,


> On 29 May 2022, at 22:15, Keith McKay via ntg-context  
> wrote:
> 
> Hi Steffen
> 
> I have TeXshop setup on my mac mini M1 but I rarely use it.

I do not use TeXshop, but I did just upgrade to an M1 Mac, and I had some 
issues with
intel binaries 'sticking around’. Perhaps this page helps (esp. point 3)?

https://www.macrumors.com/how-to/tell-apps-optimized-for-m1-apple-silicon-macs/

Best wishes,
Taco

— 
Taco Hoekwater  E: t...@bittext.nl
genderfluid (all pronouns)



___
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
___