[NTG-context] Re: LuaMetaTeX code

2024-01-19 Thread Hans Hagen
On 1/19/2024 9:26 AM, Shiv Shankar Dayal wrote: Dear Hans, I saw the C code of LuaMetaTeX and I saw a lot of gotos which is not good coding practice. These potions of code which have goto should be refactored. I am a C programmer, but I know very little of TeX. If you can point me towards

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-19 Thread Hans Hagen
On 1/19/2024 1:33 AM, Aditya Mahajan wrote: \starttext \dorecurse{5000}{\ReadFile{knuth}} \stoptext I'll send you the PDFs offlist. lmtx defaults to 'modern' so you need to \setupbodyfont[modern] for mkiv Hans -

[NTG-context] Re: LuaMetaTeX code

2024-01-19 Thread Shiv Shankar Dayal
uot;; > > > > These ensure type-safety in the code and are good coding practice. > > > > On Fri, Jan 19, 2024 at 1:56 PM Shiv Shankar Dayal < > shivshankar.da...@gmail.com> wrote: > > Dear Hans, > > > > I saw the C code of LuaMetaTeX and I saw a lot of

[NTG-context] Re: LuaMetaTeX code

2024-01-19 Thread Taco Hoekwater
rsion_string="2.10.10"; > > These ensure type-safety in the code and are good coding practice. > > On Fri, Jan 19, 2024 at 1:56 PM Shiv Shankar Dayal > wrote: > Dear Hans, > > I saw the C code of LuaMetaTeX and I saw a lot of gotos which is not good > coding

[NTG-context] Re: LuaMetaTeX code

2024-01-19 Thread Shiv Shankar Dayal
210; const char* luametatex_version_string="2.10.10"; These ensure type-safety in the code and are good coding practice. On Fri, Jan 19, 2024 at 1:56 PM Shiv Shankar Dayal < shivshankar.da...@gmail.com> wrote: > Dear Hans, > > I saw the C code of LuaMetaTeX and I saw a lot

[NTG-context] LuaMetaTeX code

2024-01-19 Thread Shiv Shankar Dayal
Dear Hans, I saw the C code of LuaMetaTeX and I saw a lot of gotos which is not good coding practice. These potions of code which have goto should be refactored. I am a C programmer, but I know very little of TeX. If you can point me towards where should I start for TeX(perhaps TeX Book or TeX

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-18 Thread Aditya Mahajan
On Fri, 19 Jan 2024, Hans Hagen via ntg-context wrote: > On 1/19/2024 12:34 AM, Aditya Mahajan wrote: > > On Thu, 18 Jan 2024, Hans Hagen wrote: > > > >> Of course we'll never be as fast as (pure) plain tex (no layers added) or > >> latex (which often is advocated as faster than context). > > >

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-18 Thread Hans Hagen via ntg-context
On 1/19/2024 12:34 AM, Aditya Mahajan wrote: On Thu, 18 Jan 2024, Hans Hagen wrote: Of course we'll never be as fast as (pure) plain tex (no layers added) or latex (which often is advocated as faster than context). I was curious, so did a quick experiment: typeset \input knuth 500 times.

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-18 Thread Aditya Mahajan
On Thu, 18 Jan 2024, Hans Hagen wrote: > Of course we'll never be as fast as (pure) plain tex (no layers added) or > latex (which often is advocated as faster than context). I was curious, so did a quick experiment: typeset \input knuth 500 times. Here are the results: pdflatex: 547 pages/sec

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-18 Thread Bruce Horrocks
On 18 Jan 2024, at 18:56, Shiv Shankar Dayal wrote: > > I understand that why it is slow, but the problem is that the difference is > too high. > My book has lots of math, so perhaps that is the reason. Option 1: Buy or borrow a faster computer. You'll get your desired speed-up far faster

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-18 Thread Joseph Wright
On 18/01/2024 20:55, Gavin via ntg-context wrote: That’s fast enough for me. That's surely the key statement - 'fast' here is a personal thing, and 40 pages a second is fast enough for many people. It's certainly fast when you look at what LuaMetaTeX is doing, as Hans has said. Joseph

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-18 Thread Gavin via ntg-context
ok in almost an instant using PDFTeX which is about 450+ > pages but my math book takes around 30 seconds averaging ~40 pages/second. > > Why LuaMetaTeX is so slow? How can I speed it up? > -- > Re

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-18 Thread Hans Hagen
On 1/18/2024 7:56 PM, Shiv Shankar Dayal wrote: In comparison to LaTeX with LuaHBTeX, ConTeXt with LuaMetaTeX is lightning fast. pdfTeX is 8bit, and Knuth’s plain TeX is very low level – for a fairer comparison, try the TeXbook on LuaMetaTeX (I don’t know if “plain” works

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-18 Thread Mikael Sundqvist
Hi, On Thu, Jan 18, 2024 at 7:58 PM Shiv Shankar Dayal wrote: > > > > >> In comparison to LaTeX with LuaHBTeX, ConTeXt with LuaMetaTeX is >> lightning fast. >> >> pdfTeX is 8bit, and Knuth’s plain TeX is very low level – for a fairer >> comparison, t

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-18 Thread Shiv Shankar Dayal
In comparison to LaTeX with LuaHBTeX, ConTeXt with LuaMetaTeX is > lightning fast. > > pdfTeX is 8bit, and Knuth’s plain TeX is very low level – for a fairer > comparison, try the TeXbook on LuaMetaTeX (I don’t know if “plain” works > though). > I understand that why it is slo

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-18 Thread Henning Hraban Ramm
that “The TeXbook” (having been written by Knuth himself) may be optimized for speed. Your math book may use features (I’m guessing again) that require more resources than the features used by “The TeXbook”. Why LuaMetaTeX is so slow? How can I speed it up? https://www.pragma-ade.com/general

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-18 Thread Pablo Rodriguez via ntg-context
self) may be optimized for speed. Your math book may use features (I’m guessing again) that require more resources than the features used by “The TeXbook”. > Why LuaMetaTeX is so slow? How can I speed it up? https://www.pragma-ade.com/general/manuals/musings.pdf#page=96 might explain why

[NTG-context] Why LuaMetaTex is so slow?

2024-01-18 Thread Shiv Shankar Dayal
I can process TeXBook in almost an instant using PDFTeX which is about 450+ pages but my math book takes around 30 seconds averaging ~40 pages/second. Why LuaMetaTeX is so slow? How can I speed it up? -- Respect, Shiv Shankar Dayal

[NTG-context] Re: How to obtain older versions of LMTX?

2024-01-17 Thread Otared Kavian
wrote: >> >> Hi Gavin, >> >> Thanks for your reply. Does TeX Live contain LuaMetaTeX (LMTX)? >> That is because I need LMTX to typeset a presentation for which most of the >> content is ready, but using features from LMTX… >> >> Best regards: Otared

[NTG-context] Re: How to obtain older versions of LMTX?

2024-01-17 Thread Otared Kavian
Thanks for your reply. Does TeX Live contain LuaMetaTeX (LMTX)? >> That is because I need LMTX to typeset a presentation for which most of the >> content is ready, but using features from LMTX… > You can try to fetch > > https://github.com/contextgarden/context > > as

[NTG-context] Re: How to obtain older versions of LMTX?

2024-01-17 Thread Gavin via ntg-context
Hi Otared, Yes, it contains LMTX. I am using TeX Live 2023 right now for a project, and it reports "ConTeXt ver: 2023.05.05 18:36 LMTX”. Gavin > On Jan 17, 2024, at 3:13 PM, Otared Kavian wrote: > > Hi Gavin, > > Thanks for your reply. Does TeX Live cont

[NTG-context] Re: How to obtain older versions of LMTX?

2024-01-17 Thread Hans Hagen
On 1/17/2024 11:13 PM, Otared Kavian wrote: Hi Gavin, Thanks for your reply. Does TeX Live contain LuaMetaTeX (LMTX)? That is because I need LMTX to typeset a presentation for which most of the content is ready, but using features from LMTX… You can try to fetch https://github.com

[NTG-context] Re: How to obtain older versions of LMTX?

2024-01-17 Thread Otared Kavian
Hi Gavin, Thanks for your reply. Does TeX Live contain LuaMetaTeX (LMTX)? That is because I need LMTX to typeset a presentation for which most of the content is ready, but using features from LMTX… Best regards: Otared > On 17 Jan 2024, at 23:01, Gavin via ntg-context wrote: > >

[NTG-context] Suggestions and problems of the manuals

2024-01-17 Thread Gerion Entrup
mkiv lua stats > used cache path: /home/gerion/context/tex/texmf-cache/luametatex-cache/context/5fe67e0bfe781ce0dde776fb1556f32e mkiv lua stats > resource resolver: loadtime 0.003 seconds, 0 scans with scantime 0.000 seconds, 0 shared scans, 15 found files, scanned paths:

[NTG-context] Re: After Compiling the Context test, there was no PDF.

2024-01-16 Thread Ursula Hermann
Please paste line no. 238 of your input file. On Tue, Jan 16, 2024 at 4:11 PM Ursula Hermann mailto:ursula.herm...@univie.ac.at>> wrote: Dear List, After Compiling in the Folder: This is LuaMetaTeX, Version 2.10.11 initex (C:/Users/Hermann/Downloads/context-mswin/tex/texmf-context/tex/cont

[NTG-context] Re: After Compiling the Context test, there was no PDF.

2024-01-16 Thread Shiv Shankar Dayal
mail.com> wrote: > >> Please paste line no. 238 of your input file. >> >> On Tue, Jan 16, 2024 at 4:11 PM Ursula Hermann < >> ursula.herm...@univie.ac.at> wrote: >> >>> Dear List, >>> >>> >>> >>> After Compiling in the

[NTG-context] Re: After Compiling the Context test, there was no PDF.

2024-01-16 Thread luigi scarso
>> >> >> After Compiling in the Folder: >> >> >> >> This is LuaMetaTeX, Version 2.10.11 initex >> >> (C:/Users/Hermann/Downloads/context-mswin/tex/texmf-context/tex/context/base/mkxl/cont- >> en.mkxl(context.mkxl(syst-ini.mkxl >> ! Undefined contr

[NTG-context] Re: After Compiling the Context test, there was no PDF.

2024-01-16 Thread Shiv Shankar Dayal
Please paste line no. 238 of your input file. On Tue, Jan 16, 2024 at 4:11 PM Ursula Hermann wrote: > Dear List, > > > > After Compiling in the Folder: > > > > This is LuaMetaTeX, Version 2.10.11 initex > > (C:/Users/Hermann/Downloads/context-mswin/tex/texmf-c

[NTG-context] After Compiling the Context test, there was no PDF.

2024-01-16 Thread Ursula Hermann
Dear List, After Compiling in the Folder: This is LuaMetaTeX, Version 2.10.11 initex (C:/Users/Hermann/Downloads/context-mswin/tex/texmf-context/tex/context/base/mkxl/cont- en.mkxl(context.mkxl(syst-ini.mkxl ! Undefined control sequence. \immutable\defcsname\tocharacter \tabasciicode

[NTG-context] Wiki update

2024-01-16 Thread Taco Hoekwater
Hi all, I just updated the wiki ConTeXt to 20240108. The tag on the wiki by default uses luametatex (LMTX), but if you want luatex instead (MKIV), you can still do that by using . There have been some problems recently because Hans’ new binaries needed a newer version of various system

[NTG-context] Re: LMTX schema for poster

2024-01-11 Thread Henning Hraban Ramm
sent some sort of logical structure. I'm happy for it to be decorative, in which case fewer labels might be better. ConTeXt “wraps” the LuaMetaTeX binary, since it handles the input as well as the output. I wasn’t sure how to show what controls what. 5. Similar to the box structure comment is t

[NTG-context] Re: Chemnitz, Leipzig, Call for Poster

2024-01-11 Thread Fabrice L
; – overview of layout areas (I re-made Sietse’s drawing from the wiki for my > book) > - workflow diagrams > – parts of LuaMetaTeX > – artwork by Eçir Baff (art-aleatoire.com) > – Hans’ recent christmas card / memory game artwork > > But I don’t want just a wild collection of

[NTG-context] Re: Chemnitz, Leipzig, Call for Poster

2024-01-10 Thread Henning Hraban Ramm
card memory” patterns as a background (thanks, Hans!). I tried to sketch the relationship of Lua/TeX/MetaPost in LuaMetaTeX and ConTeXt LMTX around it, with different inputs and PDF/XML output – don’t know yet how to make this easily understandable… ConTeXt is interesting for people

[NTG-context] Re: Chemnitz, Leipzig, Call for Poster

2024-01-07 Thread Henning Hraban Ramm
and measures), maybe also in Arabic – dodo & cow drawings from Mikael’s math manual – overview of layout areas (I re-made Sietse’s drawing from the wiki for my book) - workflow diagrams – parts of LuaMetaTeX – artwork by Eçir Baff (art-aleatoire.com) – Hans’ recent christmas card / memory

[NTG-context] Re: Solaris 11 SPARC Support [SEC=OFFICIAL]

2024-01-05 Thread Hans Hagen via ntg-context
On 1/5/2024 12:54 AM, Michael Wigston via ntg-context wrote: Hi, Would you consider supporting Solaris 11 on SPARC? Alternatively if you could provide documentation how to build Context on "SunOS sun4v" hardware would also be beneficial. I have compiled luametatex, but getting b

[NTG-context] Solaris 11 SPARC Support [SEC=OFFICIAL]

2024-01-04 Thread Michael Wigston via ntg-context
Hi, Would you consider supporting Solaris 11 on SPARC? Alternatively if you could provide documentation how to build Context on "SunOS sun4v" hardware would also be beneficial. I have compiled luametatex, but getting below error when trying to create cache an

[NTG-context] Re: QR Code

2023-12-21 Thread Ursula Hermann
s2pdf.exe TeX-Bin (dvipdfmx.exe): OK* C:\Program Files\MiKTeX 2.9\miktex\bin\dvipdfmx.exe TeX-Bin (mf.exe): OK* C:\Program Files\MiKTeX 2.9\miktex\bin\mf.exe TeX-Bin (mpost.exe): OK* C:\Program Files\MiKTeX 2.9\miktex\bin\mpost.exe MiKTeX-Bin (TeXify.exe): OK* C:\Program

[NTG-context] Re: QR Code

2023-12-19 Thread Ursula Hermann
ou see in the pdf. Are you using MkIV (LuaTeX) or LMTX (LuaMetaTeX)? What’s your ConTeXt version, and how did you install it? (TeX live, Linux distribution, LMTX distribution?) I guess a missing EPS means you load the MkIV version of the module, probably because "m-zint". Is there an err

[NTG-context] Re: QR Code

2023-12-18 Thread Michal Vlasák
On Mon Dec 18, 2023 at 9:35 PM CET, Pablo Rodriguez via ntg-context wrote: > On 12/18/23 20:34, Henning Hraban Ramm wrote: > > [...] > > Are you using MkIV (LuaTeX) or LMTX (LuaMetaTeX)? > > Many thanks for your reply, Hraban. > > I understood my issue with your

[NTG-context] Re: QR Code

2023-12-18 Thread Pablo Rodriguez via ntg-context
On 12/18/23 20:34, Henning Hraban Ramm wrote: > [...] > Are you using MkIV (LuaTeX) or LMTX (LuaMetaTeX)? Many thanks for your reply, Hraban. I understood my issue with your reply (I known, your answer is intended to Uschi). It is also in the sent file: Creator: LuaMetaTeX 2.10.11 20

[NTG-context] Re: QR Code

2023-12-18 Thread Henning Hraban Ramm
in the pdf. Are you using MkIV (LuaTeX) or LMTX (LuaMetaTeX)? What’s your ConTeXt version, and how did you install it? (TeX live, Linux distribution, LMTX distribution?) I guess a missing EPS means you load the MkIV version of the module, probably because "m-zint". Is there an err

[NTG-context] Re: QR Code

2023-12-18 Thread Pablo Rodriguez via ntg-context
On 12/18/23 17:05, Ursula Hermann wrote: > […] > I got what you see in the pdf. Hi Uschi, I‘m on Linux64 using LuaMetaTEx. Contrary to the explanation from https://wiki.contextgarden.net/Barcodes#Zint_module, I need the zint package installed on Fedora. I have safely removed the whole co

[NTG-context] Re: externalfigure crashed

2023-11-22 Thread Hans van der Meer via ntg-context
The problem persists. Here the new logfile. >> >> 1. What is the version of your Luametatex binary? >> >> luametatex --version >> This is LuaMetaTeX, Version 2.10.11 > > For me, it is the same: > > This is LuaMetaTeX, Version 2.10.11 >

[NTG-context] Re: externalfigure crashed

2023-11-22 Thread Aditya Mahajan
On Wed, 22 Nov 2023, Wolfgang Schuster wrote: > Hans van der Meer schrieb am 22.11.2023 um 21:22: > > The problem persists. Here the new logfile. > > 1. What is the version of your Luametatex binary? > >     luametatex --version >     This is LuaMetaTeX, Version 2.10.11

[NTG-context] Re: externalfigure crashed

2023-11-22 Thread Wolfgang Schuster
Hans van der Meer schrieb am 22.11.2023 um 21:22: The problem persists. Here the new logfile. 1. What is the version of your Luametatex binary?     luametatex --version     This is LuaMetaTeX, Version 2.10.11 2. What do you get in your log-file with the following example!     \starttext

[NTG-context] Re: context not producing synctex output that my synctex program can use

2023-11-15 Thread Jim
a pdf viewer that intercept some 'goto the text file' command and then > launches an editor (afik the library has some heuristics build in wrt boxes > and nesting and so); at the tex end there is also a library that kicks in > addiional code for nodes and the backend (which is why enablin

[NTG-context] Re: context not producing synctex output that my synctex program can use

2023-11-12 Thread Hans Hagen
) wrt the synctex file, that one is generated by context (so we don't use the synctex code in luatex and as luametatex has no backend there it's even completely absent ... context generates the file itself which is also a bit more efficient) Unfortunately, it’s not a drop-in replacement, so

[NTG-context] Several math features broke for me in new Debian version

2023-11-03 Thread Kumar Appaiah
2u1 but gives me this error in 2023.05.05.20230730+dfsg-2: resolvers | formats | executing runner 'run luametatex format': /usr/bin/luametatex --jobname="./test.tex" --socket --shell-escape --fmt=/home/kumar/.texlive2023/texmf-var/luametatex-cache/context/f919750633122078d70

[NTG-context] Example is not working

2023-11-03 Thread Ursula Hermann
: context.exe --synctex=-1 "mathtry.tex" Startup Folder: C:\Users\Administrator\Downloads\cont-tmf\doc\context\sources\general\magazines resolvers | formats | executing runner 'run luametatex format': luametatex --jobname="./mathtry.tex" --socket --shell-escape --fmt=C:/te

[NTG-context] Re: Cron /var/www/aanhet.net/context/bin/cron/context-mirror

2023-09-18 Thread Hans Hagen
ike a mismatch in binary (you can compile luametatex yourself and then update the bin if ther eis some platform issue) the compile farm is down (Mojca has to replace the machine) so I can't check it H

[NTG-context] Re: Using structureuservariables before the heading

2023-09-14 Thread Wolfgang Schuster
e lowlevel-macros manual: «Traditional TEX has three prefixes that can be used with macros: \global, \outer and \long. The last two are no-op's in LuaMetaTEX and if you want to know what they do (did) you can look it up in the TEXbook.» So, \long is gone, but why is that? Is there a new

[NTG-context] \dontleavethemode

2023-09-12 Thread Ursula Hermann
\test\mkiv resolvers | formats | executing runner 'run luametatex format': luametatex --jobname="./pablo.tex" --socket --shell-escape --fmt=C:/Users/Hermann/Downloads/context-mswin/tex/texmf-cache/luametatex-cache/context/5fe67e0bfe781ce0dde776fb1556f32e/formats/luametatex/cont-en.

[NTG-context] (no subject)

2023-09-05 Thread Ursula Hermann
}}\dontleavehmode\hairline \startformula a^n + b^n = c^n. \stopformula \stoptext I get: Command Line: context.exe --synctex=-1 "blackrule1.tex" Startup Folder: \\ub.univie.ac.at\U_Dom\Users G-L\Hermann\Documents\Texlive resolvers | formats | executing runner 'run luametatex format':

[NTG-context] After compiling

2023-09-04 Thread Ursula Hermann
I get: Command Line: context.exe --synctex=-1 "blackrule1.tex" Startup Folder: \\ub.univie.ac.at\U_Dom\Users G-L\Hermann\Documents\Texlive resolvers | formats | executing runner 'run luametatex format': luametatex --jobname="./blackrule1.tex" --socket --shell-esca

[NTG-context] Re:

2023-09-04 Thread Ursula Hermann
--synctex=-1 "blackrule1.tex" Startup Folder: \\ub.univie.ac.at\U_Dom\Users G-L\Hermann\Documents\Texlive resolvers | formats | executing runner 'run luametatex format': luametatex --jobname="./blackrule1.tex" --socket --shell-escape --fmt=C:/Users/Hermann/Downloa

[NTG-context] Re: Reinserting a section title followed by (continued) after a page break

2023-09-04 Thread Hans Hagen via ntg-context
experiment. In luametatex we have a few more ways to influence the page builder and also get more reliable info about the state so far. It is something Mikael and I are experimenting with (using large complex mixed text/math documents) in the perspective of par and page building. We will come back

[NTG-context] Re: Building luametatex with Lua symbols exposed

2023-09-02 Thread Michal Vlasák
On Wed Aug 30, 2023 at 6:23 PM CEST, Jairo A. del Rio wrote: > Hi, beloved list. Since sources are in the distribution, I've tried > compiling luametatex by setting LMT_STRIP in CMakeLists.txt to 0, yet the > resulting binary still warns about undefined symbols, such as lua_getto

[NTG-context] Building luametatex with Lua symbols exposed

2023-08-30 Thread Jairo A. del Rio
Hi, beloved list. Since sources are in the distribution, I've tried compiling luametatex by setting LMT_STRIP in CMakeLists.txt to 0, yet the resulting binary still warns about undefined symbols, such as lua_gettop, when an external library is loaded in Lua. Any ideas on how to solve it? Thank you

[NTG-context] Re: hyphenation inside quotation

2023-08-22 Thread Hans Hagen
and the patch but since than Hans added a few new features to Luametatex to improve the quotation mechanism and the patch results now in the unwanted side effect. I always had \setupdelimitedtext[quotation][method=font] in my environments without really understanding it (remark: enables hanging

[NTG-context] Re: hyphenation inside quotation

2023-08-22 Thread Henning Hraban Ramm
features to Luametatex to improve the quotation mechanism and the patch results now in the unwanted side effect. I always had \setupdelimitedtext[quotation][method=font] in my environments without really understanding it (remark: enables hanging quotation marks). So both methods (font/text

[NTG-context] Re: zint 2.12.0 barcode generator

2023-08-21 Thread Keith McKay
tps://wiki.contextgarden.net/Barcodes> 1) I had to create the path $TEXROOT/tex/texmf-osx-64/bin/lib/luametatex/zint 2) I symbolic linked directly to the homebrew created libzint library $ cd $TEXROOT/tex/texmf-osx-64/bin/lib/luametatex/zint $ ln -s /usr/local/Cellar/zint/2.12

[NTG-context] Re: zint 2.12.0 barcode generator

2023-08-20 Thread Bruce Horrocks
2.0 works for me on an x64 Mac mini using ConTeXt ver: 2023.08.10 02:59 Following the instructions here <https://wiki.contextgarden.net/Barcodes> 1) I had to create the path $TEXROOT/tex/texmf-osx-64/bin/lib/luametatex/zint 2) I symbolic linked directly to the homebrew created libzint librar

[NTG-context] Re: zint 2.12.0 barcode generator

2023-08-20 Thread Keith McKay
re is some subtle error (like there was when > we upgraded to 2.11). > > Unfortunately I am unable to take a closer look until the end of the > month. In the meantime can you please try to compile the library > yourself? Here are the instructions: > > https://github.com

[NTG-context] Re: zint 2.12.0 barcode generator

2023-08-20 Thread Michal Vlasák
? Here are the instructions: https://github.com/contextgarden/luametatex-optional-libraries I.e. on Linux (please adjust for macOS): git clone --recursive https://github.com/contextgarden/luametatex-optional-libraries.git cd luametatex-optional-libraries cmake -S . -B build

[NTG-context] Re: hyphenation inside quotation

2023-08-20 Thread Wolfgang Schuster
there was no problem with hyphenation and the patch but since than Hans added a few new features to Luametatex to improve the quotation mechanism and the patch results now in the unwanted side effect. Wolfgang ___ If your

[NTG-context] Re: redefine space to be the same as \␣ similar to knuthian approach

2023-08-18 Thread Hans Hagen
On 8/18/2023 8:48 PM, Carlos wrote: And with luatex frozen for better or for worse, I better stick to plain tex not sure what frozen has to do with it ... it will be around and maintained forever but no fundamental new functionality will be added that said: luametatex is of not much use when

[NTG-context] Re: startitemize[a, text] space in LMTX

2023-08-16 Thread Hans Hagen via ntg-context
On 8/16/2023 9:27 PM, Xavier B. wrote: OK. Thanks but it's about luatex [https://tracker.luatex.org/changelog_page.php]. Does we use luametatex? lmtx uses luametatex ... luatex dev is basically frozen (has to be stable because used by several macro packages now) Hans

[NTG-context] Re: startitemize[a, text] space in LMTX

2023-08-16 Thread Xavier B.
OK. Thanks but it's about luatex [https://tracker.luatex.org/changelog_page.php]. Does we use luametatex? On Wed, 16 Aug 2023 21:07:47 +0200 Wolfgang Schuster ha escrit: > Xavier B. schrieb am 16.08.2023 um 20:38: > > Thanks. > > Anyway do ypu have public triaging bugs

[NTG-context] An error which is not in .log file

2023-08-15 Thread Xavier B.
up 0:0: bottomlevel mkiv lua stats > used config file: selfautoparent:/texmf/web2c/texmfcnf.lua mkiv lua stats > used cache path: /home/xan/bin/context-current/tex/texmf-cache/luametatex-cache/context/5fe67e0bfe781ce0dde776fb1556f32e mkiv lua stats > resource resolver: loadtime 0.004 seco

[NTG-context] Re: Why overbar is so big

2023-08-13 Thread Mikael Sundqvist
Hi, On Sun, Aug 13, 2023 at 9:13 AM Xavier B. wrote: > > So, > > Finally is it a bug in MKIV? It seems you fix some kind of bug in your > messages. Is it true? > > > The output with Luametatex is correct but Luatex creates a raised bar > >

[NTG-context] Re: Why overbar is so big

2023-08-13 Thread Hans Hagen via ntg-context
at tug meetings on YT. The output with Luametatex is correct but Luatex creates a raised bar (and different linebreaking). \showglyphs \startTEXpage[offset=1ex] \ruledhbox{$\overline{OA} = \overbar {OA} = 4.2$} \par \ruledhbox{$\underline {OA} = \underbar

[NTG-context] Re: Why overbar is so big

2023-08-13 Thread Xavier B.
So, Finally is it a bug in MKIV? It seems you fix some kind of bug in your messages. Is it true? > The output with Luametatex is correct but Luatex creates a raised bar > (and different linebreaking). > > \showglyphs > > \startTEXpage[offset=1ex] > \ruledh

[NTG-context] Re: Why overbar is so big

2023-08-12 Thread Hans Hagen via ntg-context
the modern-math.lfg file have:     AccentTopShiftUp = -60,     FlattenedAccentTopShiftUp    = -60, I assume it has the same lm math font as we use. Do you test with Luatex? Only when asked. The output with Luametatex is correct but Luatex creates

[NTG-context] Re: Why overbar is so big

2023-08-12 Thread Wolfgang Schuster
:     AccentTopShiftUp = -60,     FlattenedAccentTopShiftUp    = -60, I assume it has the same lm math font as we use. Do you test with Luatex? The output with Luametatex is correct but Luatex creates a raised bar (and different linebreaking). Wolfgang

[NTG-context] Re: issue with current latest (2023.07.28 20:04)

2023-07-29 Thread Pablo Rodriguez
On 7/29/23 10:03, Jairo A. del Rio wrote: > [...] > Same here. If, in line 69 of lang-lab.mkxl, you replace \lastchknumber > with #2 [...] works again. Hi Jairo, \lastchknumber is an alias of \lastchkinteger (line 1522 of syst-ini.mkxl). \lastchknumber might even be a primitive in L

[NTG-context] Re: issue with current latest (2023.07.28 20:04)

2023-07-29 Thread Jairo A. del Rio
belclass [head] [0] > % titles > > > You injected something that confused the parser, maybe by using some Lua > call. > > LuaMetaTeX is from 20230727 (just in case it might be relevant). > > Could anyone confirm the issue? > Same here. If, in line 69 of lang-l

[NTG-context] issue with current latest (2023.07.28 20:04)

2023-07-29 Thread Pablo Rodriguez
ded {\lang_labels_define_class_indeed {#1}{\ifchknumber #2\or \lastchknumber \else \zerocount \fi }\expandafter \noexpand \csn ... \definelabelclass [head] [0] % titles You injected something that confused the parser, maybe by using some Lua call. LuaMetaTeX is from 20230727 (just in c

[NTG-context] Problems with luametatex and texlive on OpenBSD

2023-07-27 Thread Edd Barrett
Hi everyone, I'm finalising packaging TeX Live 2023 for OpenBSD and have an issue with context using the new luametatex engine. I'm getting various Lua errors when running `context --make`, like: node-ini.lmt:54: attempt to call a nil value (local 'getvalues') and: node-nut.lmt:22

[NTG-context] Re: Arch linux package for context lmtx

2023-07-05 Thread Hans Hagen via ntg-context
On 7/6/2023 3:35 AM, Aditya Mahajan wrote: So, I think that the AUR package is still useful. It is essentially just a wrapper around the official install scripts and provides the latest release of context lmtx (and user modules). So, I am renaming my old `luametatex` package and am re

[NTG-context] Arch linux package for context lmtx

2023-07-05 Thread Aditya Mahajan
Hi, I maintained a AUR (Arch User Repository) package for context lmtx which was called luametatex. Arch recently introduced an official extra package for luametatex (the binary) called ... well ... luametatex, which means that my package has a name conflict with the official package

[NTG-context] Re: \showmakeup adds unwanted space despite accurate readings; \qquad mandatory before \TeX\

2023-07-05 Thread Carlos
> system > mp instances : 0 system > mp estimated memory : 0 (0 MB) system > mp file callbacks : 0 system > mp text callbacks : 0 system > mp script callbacks : 0 system > mp log callb

Re: [NTG-context] TikZ \shade broken

2023-06-26 Thread Gavin via ntg-context
>>> expected, likely 'direction' >>> \pgfsys@vertshading >>> #1#2#3->{\pgf@parsefunc {#3}\pgfmathparse {#2}\setbox \pgfutil@tempboxa >>> =\hbox dir >>> ... >> luametatex doesn't have the dir keyword >> >> (I could probably add it in a simpl

Re: [NTG-context] right and left arrowfill

2023-06-23 Thread Hans Hagen via ntg-context
xes in the meantime) in lmtx (using luametatex) we use \Uhextensible instead which build from an opentype extensible (which makes me wonder: do users really expect all \macros in plain, latex and context do to the same? i bet not because \end in latex is definitely something else than \e

Re: [NTG-context] new version

2023-06-23 Thread Marcus Vinicius Mesquita via ntg-context
Should then \setupalign[granular] be used before defining font features? On Thu, Jun 22, 2023 at 9:37 AM Hans Hagen via ntg-context wrote: > > Hi, > > I uploaded a new lmtx version (so the next series will be luametatex > 2.10.10). Although Mikael and I are still in improvin

[NTG-context] new version

2023-06-22 Thread Hans Hagen via ntg-context
Hi, I uploaded a new lmtx version (so the next series will be luametatex 2.10.10). Although Mikael and I are still in improving math mode, we side tracked a bit to the par builder (better breaking of math etc). In the end some experiments there turned features. (1) We already had a more

Re: [NTG-context] TikZ \shade broken

2023-06-19 Thread Gavin via ntg-context
box \pgfutil@tempboxa >> =\hbox dir >> ... > luametatex doesn't have the dir keyword > > (I could probably add it in a simplified form just for this purpose because > the performance penalty is less now.) If you have a chance to add a dir keyword, that would be great. Since t

Re: [NTG-context] Off topic: Does a 'free for commercial use' flared-sans font exist in the world?

2023-06-18 Thread Hans Hagen via ntg-context
possibly identical, isn't it? and it could also inarguably apply to the circumstances as well. Don't you think? no it isn't, its building upon hat is there: mkii -> mkiv -> mkxl (pdf)tex -> luatex -> luametatex I mean, it's like comparing oranges with apples, and mkii with m

Re: [NTG-context] Off topic: Does a 'free for commercial use' flared-sans font exist in the world?

2023-06-18 Thread Carlos via ntg-context
I read and followed some publications about > > the aformentioned extension and just went over them recently, to > > have an idea what did and did not work. In regards to typefaces, > > its goal was unmatched, or so I think. > > It might be comforting to know that right from the sta

Re: [NTG-context] TikZ \shade broken

2023-06-17 Thread Hans Hagen via ntg-context
pgfsys@invoke {/Sh sh}}\hfil }\pgf@process {\pgfpoint {#2}{\pgf@max }}\immediate \saveboxresource resources {/Shading luametatex doesn't have the dir keyword (I could probably add it in a simplified form just for this purpose because the performance penalty is less now.)

Re: [NTG-context] Off topic: Does a 'free for commercial use' flared-sans font exist in the world?

2023-06-17 Thread Hans Hagen via ntg-context
a lot possible wrt fonts (runtime manipulation) and was also one of the first to support variable fonts, color fonts etc (not that many care about that). And with luametatex we go even further. I found some flared-sans fonts, but not one with at least regular, italic, bold, and bold-italic

[NTG-context] update

2023-06-04 Thread Hans Hagen via ntg-context
Hi, This time not a functional update but a (potential) performance one. I have no clue if it matters for average usage and some was already in place anyway. I gain some .2 seconds on the 8.5 seconds for the luametatex manual (of which is < 4 sec for tex so we gain the .2 sec on that p

Re: [NTG-context] TiKz with LMTX

2023-06-04 Thread Floris van Manen via ntg-context
On 04/06/2023 16:44, Hans Hagen via ntg-context wrote: what if you run "mtxrun --generate" beforehand? is that file somewhere in the tree? it works here i tried it here as well, does not work. $ context tk-tst.tex resolvers | formats | executing runner 'run luameta

Re: [NTG-context] TiKz with LMTX

2023-06-04 Thread Hans Hagen via ntg-context
begins with: resolvers | formats | executing runner 'run luametatex format': [...] and ends with: [...] open source > level 4, order 11, name 'pgf.cfg' close source> level 4, order 11, name 'pgf.cfg' Driver file for pgf: pgfsys-luatex.def tex error > tex error on

[NTG-context] TiKz with LMTX

2023-06-04 Thread Jigé via ntg-context
runner 'run luametatex format': [...] and ends with: [...] open source > level 4, order 11, name 'pgf.cfg' close source> level 4, order 11, name 'pgf.cfg' Driver file for pgf: pgfsys-luatex.def tex error > tex error on line 1757 in file pgfsys.code.tex: Package pgf Error: Dr

Re: [NTG-context] hyperlinks not working with current latest

2023-05-29 Thread Hans Hagen via ntg-context
\completecontent \dorecurse{5} {a\footnote{}} \stoptext LuaTeX generates fine hyperlinks for footnotes. My guess is that the issue is in the LuaMetaTeX binary. Could anyone confirm this issue? i'll upload a fix later today (some sensitivity to an extra return value of a helper) Hans

Re: [NTG-context] hyperlinks not working with current latest

2023-05-28 Thread Hans Hagen via ntg-context
\completecontent \dorecurse{5} {a\footnote{}} \stoptext LuaTeX generates fine hyperlinks for footnotes. My guess is that the issue is in the LuaMetaTeX binary. Could anyone confirm this issue? i'll check it but (maybe side effect of some ref things Alan and I are working on). The engine has

[NTG-context] hyperlinks not working with current latest

2023-05-28 Thread Pablo Rodriguez via ntg-context
generates fine hyperlinks for footnotes. My guess is that the issue is in the LuaMetaTeX binary. Could anyone confirm this issue? Many thanks for your help, Pablo ___ If your question is of interest to others as well, please

[NTG-context] [ cleaning up ]

2023-05-27 Thread Floris van Manen via ntg-context
As I use luametatex for compiling context docs to pdf, I wonder what files/folders could safely removed from the context base folder? e.g. is there a script to purge unused features? .Floris ___ If your question

Re: [NTG-context] 17th ConTeXt Meeting, Prague, 10.–16. 9. 2023: Registration Open

2023-05-15 Thread Alan Braslau via ntg-context
now open. > > We will meet at our favourite place close to Prague for the 3rd time. > Come and join us to hear all the great news about new developments of > ConTeXt and LuaMetaTex, meet developers and friends from this list. > Better come in person, though registration for online particip

[NTG-context] 17th ConTeXt Meeting, Prague, 10.–16. 9. 2023: Registration Open

2023-05-15 Thread Jano Kula via ntg-context
Dear list members! Registration for the 17th ConTeXt Meeting <https://meeting.contextgarden.net/2023/> is now open. We will meet at our favourite place close to Prague for the 3rd time. Come and join us to hear all the great news about new developments of ConTeXt and LuaMetaTex, meet deve

<    1   2   3   4   5   6   7   8   9   10   >