* Problems with column sets?
@ 2022-05-24 18:43 T. Kurt Bond via ntg-context
2022-05-24 19:07 ` Henning Hraban Ramm via ntg-context
0 siblings, 1 reply; 5+ messages in thread
From: T. Kurt Bond via ntg-context @ 2022-05-24 18:43 UTC (permalink / raw)
To: context mailing list; +Cc: T. Kurt Bond
[-- Attachment #1.1: Type: text/plain, Size: 2222 bytes --]
Given the following file that uses definecolumnset and
startcolumnset/stopcolumnset (largely from the wiki
<https://wiki.contextgarden.net/Command/definecolumnset>) for input:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\setuppapersize[letter]
\definecolumnset[TwoColumns][n=2]
\startcolumnset [TwoColumns]
\title{Test page}
\framed
[frame=off,
bottomframe=on,
width=\textwidth,
frameoffset=1mm,
foregroundstyle=small,
]{\copyright\ \date[][year] Donald E. Knuth}
\input knuth
\stopcolumnset
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Why does context fail, producing an empty .log and .pdf, with the following
information to the terminal:
resolvers | formats | executing runner 'run luametatex format':
/usr/local/sw/versions/context-osx-64/tex/texmf-osx-64/bin/luametatex
--jobname="./x.ctx"
--fmt=/usr/local/sw/versions/context-osx-64/tex/texmf-cache/luametatex-cache/context/5fe67e0bfe781ce0dde776fb1556f32e/formats/luametatex/cont-en.fmt
--lua=/usr/local/sw/versions/context-osx-64/tex/texmf-cache/luametatex-cache/context/5fe67e0bfe781ce0dde776fb1556f32e/formats/luametatex/cont-en.lui
--c:currentrun=1 --c:fulljobname="./x.ctx" --c:input="./x.ctx"
--c:kindofrun=1 --c:maxnofruns=9
--c:texmfbinpath="/usr/local/sw/versions/context-osx-64/tex/texmf-osx-64/bin"
system >
system > ConTeXt ver: 2022.05.11 11:36 LMTX fmt: 2022.5.24 int:
english/english
system >
system > 'cont-new.mkxl' loaded
open source > level 1, order 1, name
'/usr/local/sw/versions/context-osx-64/tex/texmf-context/tex/context/base/mkxl/cont-new.mkxl'
system > beware: some patches loaded from cont-new.mkiv
close source > level 1, order 1, name
'/usr/local/sw/versions/context-osx-64/tex/texmf-context/tex/context/base/mkxl/cont-new.mkxl'
system > files > jobname './x', input './x.ctx', result './x'
fonts > latin modern fonts are not preloaded
languages > language 'en' is active
open source > level 1, order 2, name './x.ctx'
mtx-context | fatal error: return code: 1
--
T. Kurt Bond, tkurtbond@gmail.com, https://tkurtbond.github.io
[-- Attachment #1.2: Type: text/html, Size: 4231 bytes --]
[-- Attachment #2: Type: text/plain, Size: 493 bytes --]
___________________________________________________________________________________
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
___________________________________________________________________________________
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Problems with column sets?
2022-05-24 18:43 Problems with column sets? T. Kurt Bond via ntg-context
@ 2022-05-24 19:07 ` Henning Hraban Ramm via ntg-context
2022-05-24 19:40 ` T. Kurt Bond via ntg-context
0 siblings, 1 reply; 5+ messages in thread
From: Henning Hraban Ramm via ntg-context @ 2022-05-24 19:07 UTC (permalink / raw)
To: ntg-context; +Cc: Henning Hraban Ramm
Am 24.05.22 um 20:43 schrieb T. Kurt Bond via ntg-context:
> Given the following file that uses definecolumnset and
> startcolumnset/stopcolumnset (largely from the wiki
> <https://wiki.contextgarden.net/Command/definecolumnset>) for input:
>
> %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
> \setuppapersize[letter]
> \definecolumnset[TwoColumns][n=2]
> \startcolumnset [TwoColumns]
> \title{Test page}
> \framed
> [frame=off,
> bottomframe=on,
> width=\textwidth,
> frameoffset=1mm,
> foregroundstyle=small,
> ]{\copyright\ \date[][year] Donald E. Knuth}
> \input knuth
> \stopcolumnset
> %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
That’s not a minimal example, but it works for me (even if the text
starts only on the second page):
\definecolumnset[TwoColumns][n=2]
\starttext
\startcolumnset [TwoColumns]
\title{Test page}
\framed
[frame=off,
bottomframe=on,
width=\textwidth,
frameoffset=1mm,
foregroundstyle=small,
]{\copyright\ \date[][year] Donald E. Knuth}
\samplefile{knuth}
\stopcolumnset
\stoptext
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
___________________________________________________________________________________
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Problems with column sets?
2022-05-24 19:07 ` Henning Hraban Ramm via ntg-context
@ 2022-05-24 19:40 ` T. Kurt Bond via ntg-context
2022-05-24 19:42 ` T. Kurt Bond via ntg-context
0 siblings, 1 reply; 5+ messages in thread
From: T. Kurt Bond via ntg-context @ 2022-05-24 19:40 UTC (permalink / raw)
To: mailing list for ConTeXt users; +Cc: T. Kurt Bond
[-- Attachment #1.1: Type: text/plain, Size: 2328 bytes --]
Huh. I tried it on a Linux box, and that worked. But on my main machine,
a Intel 64 bit mac, I get the original result. Oh, I changed to use this
input:
\definecolumnset[TwoColumns][n=2]
\startcolumnset [TwoColumns]
\input knuth
\stopcolumnset
On Tue, May 24, 2022 at 3:09 PM Henning Hraban Ramm via ntg-context <
ntg-context@ntg.nl> wrote:
> Am 24.05.22 um 20:43 schrieb T. Kurt Bond via ntg-context:
> > Given the following file that uses definecolumnset and
> > startcolumnset/stopcolumnset (largely from the wiki
> > <https://wiki.contextgarden.net/Command/definecolumnset>) for input:
> >
> >
> %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
> > \setuppapersize[letter]
> > \definecolumnset[TwoColumns][n=2]
> > \startcolumnset [TwoColumns]
> > \title{Test page}
> > \framed
> > [frame=off,
> > bottomframe=on,
> > width=\textwidth,
> > frameoffset=1mm,
> > foregroundstyle=small,
> > ]{\copyright\ \date[][year] Donald E. Knuth}
> > \input knuth
> > \stopcolumnset
> >
> %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
>
> That’s not a minimal example, but it works for me (even if the text
> starts only on the second page):
>
> \definecolumnset[TwoColumns][n=2]
>
> \starttext
> \startcolumnset [TwoColumns]
> \title{Test page}
> \framed
> [frame=off,
> bottomframe=on,
> width=\textwidth,
> frameoffset=1mm,
> foregroundstyle=small,
> ]{\copyright\ \date[][year] Donald E. Knuth}
> \samplefile{knuth}
> \stopcolumnset
> \stoptext
>
> 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
>
> ___________________________________________________________________________________
>
--
T. Kurt Bond, tkurtbond@gmail.com, https://tkurtbond.github.io
[-- Attachment #1.2: Type: text/html, Size: 3900 bytes --]
[-- Attachment #2: Type: text/plain, Size: 493 bytes --]
___________________________________________________________________________________
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
___________________________________________________________________________________
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Problems with column sets?
2022-05-24 19:40 ` T. Kurt Bond via ntg-context
@ 2022-05-24 19:42 ` T. Kurt Bond via ntg-context
2022-05-25 14:29 ` Ben Moon via ntg-context
0 siblings, 1 reply; 5+ messages in thread
From: T. Kurt Bond via ntg-context @ 2022-05-24 19:42 UTC (permalink / raw)
To: mailing list for ConTeXt users; +Cc: T. Kurt Bond
[-- Attachment #1.1: Type: text/plain, Size: 2709 bytes --]
Sigh. I should have mentioned that that I reinstalled LMTX from scratch on
both machines, and that my mac is running macOS Monterey 12.3.1.
On Tue, May 24, 2022 at 3:40 PM T. Kurt Bond <tkurtbond@gmail.com> wrote:
> Huh. I tried it on a Linux box, and that worked. But on my main machine,
> a Intel 64 bit mac, I get the original result. Oh, I changed to use this
> input:
>
> \definecolumnset[TwoColumns][n=2]
> \startcolumnset [TwoColumns]
> \input knuth
> \stopcolumnset
>
>
> On Tue, May 24, 2022 at 3:09 PM Henning Hraban Ramm via ntg-context <
> ntg-context@ntg.nl> wrote:
>
>> Am 24.05.22 um 20:43 schrieb T. Kurt Bond via ntg-context:
>> > Given the following file that uses definecolumnset and
>> > startcolumnset/stopcolumnset (largely from the wiki
>> > <https://wiki.contextgarden.net/Command/definecolumnset>) for input:
>> >
>> >
>> %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
>> > \setuppapersize[letter]
>> > \definecolumnset[TwoColumns][n=2]
>> > \startcolumnset [TwoColumns]
>> > \title{Test page}
>> > \framed
>> > [frame=off,
>> > bottomframe=on,
>> > width=\textwidth,
>> > frameoffset=1mm,
>> > foregroundstyle=small,
>> > ]{\copyright\ \date[][year] Donald E. Knuth}
>> > \input knuth
>> > \stopcolumnset
>> >
>> %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
>>
>> That’s not a minimal example, but it works for me (even if the text
>> starts only on the second page):
>>
>> \definecolumnset[TwoColumns][n=2]
>>
>> \starttext
>> \startcolumnset [TwoColumns]
>> \title{Test page}
>> \framed
>> [frame=off,
>> bottomframe=on,
>> width=\textwidth,
>> frameoffset=1mm,
>> foregroundstyle=small,
>> ]{\copyright\ \date[][year] Donald E. Knuth}
>> \samplefile{knuth}
>> \stopcolumnset
>> \stoptext
>>
>> 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
>>
>> ___________________________________________________________________________________
>>
>
>
> --
> T. Kurt Bond, tkurtbond@gmail.com, https://tkurtbond.github.io
>
--
T. Kurt Bond, tkurtbond@gmail.com, https://tkurtbond.github.io
[-- Attachment #1.2: Type: text/html, Size: 4725 bytes --]
[-- Attachment #2: Type: text/plain, Size: 493 bytes --]
___________________________________________________________________________________
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
___________________________________________________________________________________
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Problems with column sets?
2022-05-24 19:42 ` T. Kurt Bond via ntg-context
@ 2022-05-25 14:29 ` Ben Moon via ntg-context
0 siblings, 0 replies; 5+ messages in thread
From: Ben Moon via ntg-context @ 2022-05-25 14:29 UTC (permalink / raw)
To: Context Mailing List; +Cc: Ben Moon
[-- Attachment #1.1: Type: text/plain, Size: 3632 bytes --]
I've had a similar issue since December (posted here: https://www.mail-archive.com/ntg-context@ntg.nl/msg101228.html) and trying the examples from the columnsets manual today and the version that worked for Hraban I get the same error (ConTeXt version 2022.05.02, macOS 12.4).
Ben
On Tue, 24 May 2022, at 20:42, T. Kurt Bond via ntg-context wrote:
> Sigh. I should have mentioned that that I reinstalled LMTX from scratch on both machines, and that my mac is running macOS Monterey 12.3.1.
>
> On Tue, May 24, 2022 at 3:40 PM T. Kurt Bond <tkurtbond@gmail.com> wrote:
>> Huh. I tried it on a Linux box, and that worked. But on my main machine, a Intel 64 bit mac, I get the original result. Oh, I changed to use this input:
>>> \definecolumnset[TwoColumns][n=2]
>>> \startcolumnset [TwoColumns]
>>> \input knuth
>>> \stopcolumnset
>>
>> On Tue, May 24, 2022 at 3:09 PM Henning Hraban Ramm via ntg-context <ntg-context@ntg.nl> wrote:
>>> Am 24.05.22 um 20:43 schrieb T. Kurt Bond via ntg-context:
>>> > Given the following file that uses definecolumnset and
>>> > startcolumnset/stopcolumnset (largely from the wiki
>>> > <https://wiki.contextgarden.net/Command/definecolumnset>) for input:
>>> >
>>> > %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
>>> > \setuppapersize[letter]
>>> > \definecolumnset[TwoColumns][n=2]
>>> > \startcolumnset [TwoColumns]
>>> > \title{Test page}
>>> > \framed
>>> > [frame=off,
>>> > bottomframe=on,
>>> > width=\textwidth,
>>> > frameoffset=1mm,
>>> > foregroundstyle=small,
>>> > ]{\copyright\ \date[][year] Donald E. Knuth}
>>> > \input knuth
>>> > \stopcolumnset
>>> > %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
>>>
>>> That’s not a minimal example, but it works for me (even if the text
>>> starts only on the second page):
>>>
>>> \definecolumnset[TwoColumns][n=2]
>>>
>>> \starttext
>>> \startcolumnset [TwoColumns]
>>> \title{Test page}
>>> \framed
>>> [frame=off,
>>> bottomframe=on,
>>> width=\textwidth,
>>> frameoffset=1mm,
>>> foregroundstyle=small,
>>> ]{\copyright\ \date[][year] Donald E. Knuth}
>>> \samplefile{knuth}
>>> \stopcolumnset
>>> \stoptext
>>>
>>> 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
>>> ___________________________________________________________________________________
>>
>>
>> --
>> T. Kurt Bond, tkurtbond@gmail.com, https://tkurtbond.github.io
>
>
> --
> T. Kurt Bond, tkurtbond@gmail.com, https://tkurtbond.github.io
> ___________________________________________________________________________________
> 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
> ___________________________________________________________________________________
>
[-- Attachment #1.2: Type: text/html, Size: 8225 bytes --]
[-- Attachment #2: Type: text/plain, Size: 493 bytes --]
___________________________________________________________________________________
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
___________________________________________________________________________________
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-05-25 14:29 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-24 18:43 Problems with column sets? T. Kurt Bond via ntg-context
2022-05-24 19:07 ` Henning Hraban Ramm via ntg-context
2022-05-24 19:40 ` T. Kurt Bond via ntg-context
2022-05-24 19:42 ` T. Kurt Bond via ntg-context
2022-05-25 14:29 ` Ben Moon via ntg-context
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).