[NTG-context] extracting pages using luacode

2020-04-25 Thread Floris van Manen
I'm trying to extract pages from an existing pdf using lua. But this approach to extract pages 11 and 30 does not work: \starttext \startluacode for i, blz in ipairs({11, 30}) do context.startTEXpage() context.externalfigure("my_pdf.pdf", page=blz) context.stopTEXpage() end \stopluacode \sto

Re: [NTG-context] extracting pages using luacode

2020-04-25 Thread Floris van Manen
On 25-04-2020 16:56, Hans Hagen wrote: >> >> Where am I missing the point? > the syntax ... > >     context.externalfigure( { "my_pdf.pdf" }, { page = blz } ) so simple :-) Thanks! .F pEpkey.asc Description: application/pgp-keys __

[NTG-context] [rotate question]

2020-05-01 Thread Floris van Manen
I try to introduce a per character rotation using lua. But a negative rotation angle seems to introduce a vertical offset to the base line. It might be intended, but how to get it gone? Any hints? .Floris \def\streepA{% \rotate[rotation=\ctxlua{context(math.random(1,15))}]{\|}% } \def\streepB{% \r

[NTG-context] [ibmplex setup script]

2020-05-02 Thread Floris van Manen
At present the ibmplexmonothin font is seen by the mtxrun script mtxrun --script fonts --list --all --pattern=ibmplexmonothin* identifier familynamefontnamefilename subfont instances ibmplexmonothin ibmplexmono ibmplexmonothin /home/vm/.local/share/f

Re: [NTG-context] [ibmplex setup script]

2020-05-03 Thread Floris van Manen
Thank you Wolfgang! Your example works as intended. I really get lost in the font definition files, as it is difficult to understand which variable point to what other definition. Is there a (simple) picture where the scripts are annotated with arrows, to know which variable points to where? All

Re: [NTG-context] [ibmplex setup script]

2020-05-03 Thread Floris van Manen
Hello Wolfgang, On 03-05-2020 10:49, Wolfgang Schuster wrote: > % Load IBM Plex with the regular width > > % \setupbodyfont[ibmplex] > > % Load IBM Plex with the thin width > > %\setupbodyfont[ibmplex-thin] A quick follow-up question. Apparently the thin/bold/italics combination does not wo

Re: [NTG-context] [ibmplex setup script]

2020-05-03 Thread Floris van Manen
I noticed that the same font test with the same lmtx versions on two different linux machines with the same ibmplex fonts installed, return a different rendering for the bold-italic. That is only one produces the italics, the other doesn't. I guess that is an example of true software magic, or yet

[NTG-context] [pretty printing python]

2020-05-24 Thread Floris van Manen
Does anyone know how to activate/use the pretty printing of python code? \starttyping[option=python] does not work. .Floris pEpkey.asc Description: application/pgp-keys ___ If your question is of interest to others

Re: [NTG-context] A simpler way to install LMTX in macOS Catalina

2020-05-30 Thread Floris van Manen
On 30/05/2020 13:09, Nicola wrote: > Of course, it would be > better if the binary were signed... And of course, it would be better to use Linux ;-) .F pEpkey.asc Description: application/pgp-keys ___ If your que

[NTG-context] [overstrike] with different color?

2020-06-03 Thread Floris van Manen
What is the preferred way to overstrike a text with a different color? This does not work: One \overstrike[color=red]{Two} Three .F pEpkey.asc Description: application/pgp-keys ___ If your question is of interest to

Re: [NTG-context] [overstrike] with different color?

2020-06-04 Thread Floris van Manen
On 03/06/2020 16:30, Henning Hraban Ramm wrote: > \setupbar[color=red,rulethickness=1.4] % measurement in pt the command also takes a parameter offset as well as dy. I assume the offset will position the line higher / lower . But I see no effect. \setupbar[color=red,rulethickness=.3,offset=0.5]

Re: [NTG-context] Draft Watermark of Garden gives unexpected results

2020-06-11 Thread Floris van Manen
On 11/06/2020 22:31, Jairo A. del Rio wrote: > The watermark is partially outside the page, whereas the Wiki result is > more "centered". Is that an intended behaviour? > Also, if you set \rotate[rotation=0.0]{Draft} it will disappear... pEpkey.asc Description: application/pgp-keys _

Re: [NTG-context] Typesetting poetry with particular indenting

2020-07-02 Thread Floris van Manen
On 02/07/2020 20:46, Wolfgang Schuster wrote: > The following example needs version 2020.07.02 or newer. Nice ! .F pEpkey.asc Description: application/pgp-keys ___ If your question is of interest to others as well,

Re: [NTG-context] install.sh not working on Linux (Ubuntu 20.04)?

2020-11-06 Thread Floris van Manen
On 06/11/2020 16:49, Jairo A. del Rio wrote: Is anyone else having problems with recent ConTeXt updates on Linux? Since last month, install.sh isn't doing anything. However, when I go to Pragma ADE's website, I can download newer releases and they work fine (e.g. --permitloadlib works now). I

Re: [NTG-context] new upload

2020-11-06 Thread Floris van Manen
this is my script for a daily update check which seems to do the job #!/usr/bin/env bash cd ~/context context --version | grep "current version" echo "" mtxrun --script cache --erase >ctx.log rm tex/*.tma sh ./install.sh >ctx.log context --version | grep "current version" _

Re: [NTG-context] new upload

2020-11-07 Thread Floris van Manen
Dear Hans, Would it be possible to have a simple text file with the latest release version (or date) tag in it? Next to the folder containing the actual install script files? In that case it is easy to check that version tag by comparing with the local copy and decide if a further download and

Re: [NTG-context] new upload

2020-11-07 Thread Floris van Manen
On 07/11/2020 12:19, Hans Hagen wrote: a version mismatch normally comes from the fact that i generate an lmtx update (for wolfgang to check, posted elsewhere) but nor a mkiv one and then upload to the website (as happened) also, the update script itself doesn't get updated so when that gets

Re: [NTG-context] new upload

2020-11-07 Thread Floris van Manen
On 07/11/2020 13:11, Pablo Rodriguez wrote: Improved message: echo "" && curl -Ihttp://pragma-ade.com/context/latest/cont-tmf.zip 2>&1 | grep Last-Modified && echo "" So you don’t mix access time with last modification. Just in case it helps, That helps. Thx ___

Re: [NTG-context] new upload

2020-11-07 Thread Floris van Manen
On 07/11/2020 13:11, Pablo Rodriguez wrote: echo "" && curl -Ihttp://pragma-ade.com/context/latest/cont-tmf.zip 2>&1 | grep Last-Modified && echo "" So you don’t mix access time with last modification. this seems to work: #!/usr/bin/env bash cd ~/context OLD=`stat -c "%w" context-linux-64

Re: [NTG-context] RE : upload

2020-11-23 Thread Floris van Manen
On 23/11/2020 23:02, Hans Hagen wrote: On 11/23/2020 9:42 PM, Joseph wrote: After running install.bat I see error : new attempt I still get the error: csname overload > fatal error, protection level 4, control sequence 'textcontrolspace', properties 'immutable', file 'enco-ini.mkxl', line

Re: [NTG-context] RE : upload

2020-11-24 Thread Floris van Manen
On 24/11/2020 18:28, Pablo Rodriguez wrote: I’m afraid you are getting an old version, since the newer one reads: mtx-context | ConTeXt Process Management 1.04 mtx-context | mtx-context | main context file: /home/ousia/context/tex/texmf-context/tex/context/base/mkiv/context.mkiv mt

Re: [NTG-context] RE : upload

2020-11-24 Thread Floris van Manen
by creating a new empty ~/context folder, then unzip the distribution and running the install script made Context work again. .F ___ If your question is of interest to others as well, please add an entry to the Wiki

Re: [NTG-context] RE : upload

2020-11-25 Thread Floris van Manen
On 25/11/2020 16:48, Pablo Rodriguez wrote: Just out of curiosity, could you fix your already installed ConTeXt version? no, that did not work. I just dumped the whole folder after a new folder/download seemed to work again. .F __

Re: [NTG-context] install.sh not working on Linux (Ubuntu 20.04)?

2020-12-01 Thread Floris van Manen
On 06/11/2020 18:55, Pablo Rodriguez wrote: I reported a similar issue some days ago. I think I have solved it (no extensive checking yet) by deleting the three texmf*.tma files on the tex/ directory. If you still have a copy of your older installation, you may try this (but please make a bac

Re: [NTG-context] checkbox in fields show the word yes

2020-12-11 Thread Floris van Manen
On 11/12/2020 08:46, Jan U. Hasecke wrote: as nobody answered I would like too repeat my question. This is what I see ___ If your question is of interest to others as well, please add an entry to the Wiki! mail

Re: [NTG-context] lmtx

2021-01-19 Thread Floris van Manen
On 18/01/2021 19:20, Hans Hagen wrote: You can run   meta-imp-punk.mkxl to get an idea. There's also a typescript:   type-imp-punk.mkxl How to run these? .F ___ If your question is of interest to others as

[NTG-context] [startstop]

2021-01-22 Thread Floris van Manen
I'd like to create a start/stop command with a parameter \startzzz[a] one two three \stopzzz \startzzz[b] one two three \stopzzz How do i define/pass the tag parameter in the definition? This does not work (obviously) \definestartstop[zzz][ before={\hrule\bf tag\blank}, after={\blank[10mm]}

Re: [NTG-context] [startstop]

2021-01-22 Thread Floris van Manen
unfortunately this does not work, 'annotation' is not found. But is it possible to give a start/stop definition user parameters? And if so, how? .F ___ If your question is of interest to others as well, please add a

Re: [NTG-context] [startstop]

2021-01-22 Thread Floris van Manen
On 22/01/2021 23:39, Wolfgang Schuster wrote: No \do...empty (LMTX only): \tolerant\protected\def\startzzz#=%   {\hrule    \doifsomething{#1}{\bold{\strut#1}\blank}} \protected\def\stopzzz   {\blank[10mm]} \starttext \startzzz \input weisman \stopzzz \startzzz{Ward} \input ward \stopzz

[NTG-context] [passing parameter into MPpage]

2021-02-12 Thread Floris van Manen
What is the correct ways to pass parameters into a \startMPpage section? This does not produce a page (obviously if you know how it works) But how to get the intende output? \def\blz[#1][#2][#3]{ \startMPpage draw thefmttext(#1) shifted(10mm, 20mm); draw thefmttext(#2) shifted(10mm, 205m); draw

[NTG-context] [pagenumbers in pdf]

2021-02-13 Thread Floris van Manen
When I generate a serie of TEXpages, those pages end up with the same page number in the pdf. 1, 1, 1 \starttext \def\blz{\begingroup \startTEXpage 1 2 3 \stopTEXpage \endgroup} \blz \blz \blz \stoptext If I insert a \strut at the start, I get pagenumbering 1, 2, 3, 1 \starttext \def\blz{\be

[NTG-context] [formatting verbatim text]

2021-04-26 Thread Floris van Manen
What is the easiest way, if possible, to highlight some sections of verbatim text? given: \starttyping one two three four five six seven eight nine \stoptyping i'd like to color the word 'five' in red, or italic. .Floris ___

Re: [NTG-context] [formatting verbatim text]

2021-04-26 Thread Floris van Manen
On 26/04/2021 10:59, Hans Hagen wrote: \starttext \starttyping[escape=/] one two three four /btex/bgroup/red five /egroup/etex six seven eight nine \stoptyping \stoptext That works indeed! Thanks. Are there restriction on what context commands can be given inside the bgroup? e.g. I tried

Re: [NTG-context] [formatting verbatim text]

2021-04-26 Thread Floris van Manen
Aparently all spaces after @etex get reduced to one only. I'd expect that to happen inside @btex and @etex \starttext \starttyping[escape=@] 1 137 26 25 >1 69 32 2 @btex@bgroup@red@bf 137 @egroup@etex 26 25 >1 69 32 3 @btex@bgroup@red@bf 137 @egroup@etex 26 25 >

Re: [NTG-context] KeenWrite 2.0

2021-05-10 Thread Floris van Manen
On 10/05/2021 07:40, Thangalin wrote: https://github.com/DaveJarvis/keenwrite#download Stay safe everyone! When launching from Linux vmz 5.11.0-7614-generic #15~1618626693~20.10~ecb25cd-Ubuntu SMP Thu Apr 22 16:00:45 UTC x86_64 x86_64 x

[NTG-context] [installing lmtx on raspi400]

2021-05-13 Thread Floris van Manen
No desktop system is complete before having a proper lmtx installed ;-) So with this OS version $ uname -a Linux rp400 5.10.17-v8+ #1414 SMP PREEMPT Fri Apr 30 13:23:25 BST 2021 aarch64 GNU/Linux $ hostnamectl Static hostname: rp400 Icon name: computer Operating System: Debian G

Re: [NTG-context] [installing lmtx on raspi400]

2021-05-13 Thread Floris van Manen
On 13/05/2021 22:39, Christian Prim wrote: I solved it following this (or a similar) solution: https://github.com/deltachat/deltachat-desktop/issues/1006#issue-498257133 That worked very well, thank you ! $ hostna

[NTG-context] [metafun example does not compile]

2021-05-21 Thread Floris van Manen
Using the example from the wiki https://wiki.contextgarden.net/textext_positioning then using the latest version of lmtx $ context --version mtx-context | ConTeXt Process Management 1.04 mtx-context | mtx-context | main context file: /home/vm/context/tex/texmf-context/tex/context/ba

Re: [NTG-context] [metafun example does not compile]

2021-05-21 Thread Floris van Manen
the line preventing the output from showing uo seems to be be: draw textext.dflt("DFLT-" & MonTexte) shifted PB; If I remove that, I'll get output. ___ If your question is of interest to others as well, please add

Re: [NTG-context] [metafun example does not compile]

2021-05-21 Thread Floris van Manen
On 21/05/2021 14:14, Taco Hoekwater wrote: It looks like textext.dflt is undefined in the latest lmtx because it is now renamed to textext.dlft :) As we say in dutch: een kniesoor die daar op let ;-) ___ If your

Re: [NTG-context] new in upload

2021-06-09 Thread Floris van Manen
On 09/06/2021 20:42, Hans Hagen wrote: \startoverlayMPgraphic{mp:whatever-6}     draw anchorcell (1,1)   withpen pencircle scaled 1pt withcolor "blue" ;     fill anchorspan (2,2) (3,5) withpen pencircle scaled 1pt withcolor "yellow" ;     draw anchorcell (2,2)   withpen pencircle

Re: [NTG-context] weekend upload

2021-07-12 Thread Floris van Manen
with the latest version not everything gets drawn as intended. $ context --version mtx-context | ConTeXt Process Management 1.04 mtx-context | current version: 2021.07.10 21:51 On 12/07/2021 10:07, Hans Hagen wrote: I need to ckeck if the range checked does negative numbers ... anywa

Re: [NTG-context] weekend upload - stacking and animation

2021-07-13 Thread Floris van Manen
On 13/07/2021 15:14, Hans Hagen wrote: How about: \startuseMPgraphic{demo}     for i=1 upto 10:     draw fullcircle scaled (i*cm/3)     withcolor (i*red/10)     withpen   pencircle scaled (bp/2)     withstacking i     ;     endfor ; \stopuseMPgraphic \un

Re: [NTG-context] lmt_chart_bar with data from luacode

2021-07-24 Thread Floris van Manen
On 23/07/2021 23:56, Jorge Manuel wrote: I tried this code, but it didn't work. This is not my day. Using the latest version made it work here. .F ___ If your question is of interest to others as well, please ad

Re: [NTG-context] manual on style design

2004-02-23 Thread Floris van Manen
hans! very nice indeed this manual! thinking of trivial support tools, is there a (simple) script one could launch to get a list of all installed fonts (with a sample in the font itself), with the necessary instructions included as how to incorporate it in context? that would really make the differ

Re[2]: [NTG-context] manual on style design

2004-02-23 Thread Floris van Manen
> if you're a member of the ntg / dante in a couple of weeks you will get a > (i hope nice) colorful font sampler booklet showing the free fonts on tex > live (at the printer now); it's on my todo list to write an howto for those > fonts i was thinking of system installed fonts. e.g. the reuse o

Re: [NTG-context] new stuff for brave users

2004-08-04 Thread Floris van Manen
Patrick, just gave the context service a try. concerning the UI i aks myself why i get default the logfile opened in a separate window and that i have to explicitly open the pdf file to see the result of what the action is all about in the first place :-) i would opt for a better 'result-ready' f

[NTG-context] no graph after compilation

2004-08-10 Thread Floris van Manen
i'm working through the metafun manual. i noticed at some point that changes to the source do not appear in the pdf output. sometimes after another texexec round, sometimes not at all until i do something different in the tex file... how come (or how to work around :-) thanks! //f ___

Re[2]: [NTG-context] no graph after compilation

2004-08-11 Thread Floris van Manen
PR> it seems that you haven't reached page 307 well i did. as far as i understand it, the best way to deal with compiling is to call texexec. and i do get graphics in my pdf, but sometimes i need to do en extra texexec cycle to see the changes come through. and sometimes i don't get anything i

Re[2]: [NTG-context] no graph after compilation

2004-08-11 Thread Floris van Manen
VZ> Floris, you are not alone. I also have not find the quick solution. So I VZ> call texexec two times when working with MP graphics, VZ> color definitions, ... :-( running it twice is something i can live with, but if it will not solve the problem, then it is... what do i do wrong? //f ___

Re[2]: [NTG-context] no graph after compilation

2004-08-11 Thread Floris van Manen
rid(0, 5, 1, 3cm, 3cm) ; draw vlingrid(0, 10, 1, 3cm, 3cm) ; \stopuseMPgraphic \useMPgraphic{dummy} \stoptext Floris van Manen <[EMAIL PROTECTED]> writes: > VZ> Floris, you are not alone. I also have not find the quick solution. So I > VZ> call texexec two times wh

Re[2]: [NTG-context] no graph after compilation

2004-08-11 Thread Floris van Manen
PG> You should tell metapost to erase the first picture before drawing PG> the second one. So: PG> PG> PG> currentpicture :=nullpicture; PG> draw pic scaled 3 ; PG> PG> clears the first picture. but i only intend to draw one picture... ___ ntg-cont

Re[2]: [NTG-context] no graph after compilation

2004-08-11 Thread Floris van Manen
>> PG> currentpicture :=nullpicture; >> PG> draw pic scaled 3 ; >> PG> >> PG> clears the first picture. >> >> >> but i only intend to draw one picture... PG> PG> is this a question? Did you try the code? i did, but it has side-effects... it will scale, but the color disappears too. try. -

Re[2]: [NTG-context] no graph after compilation

2004-08-11 Thread Floris van Manen
i guess it might have to do with the versions of the programs involved. below you see the output of my version and the contextgarden version. i got my LiveTex last week from the web. Any idea how to (automatically) update to the most recent versions? //f = my version:

Re[2]: [NTG-context] no graph after compilation

2004-08-11 Thread Floris van Manen
PG> There is no way to update this automaticalliy. i think i got lost in the trees... i got the update from pragma-ade.com, unzipped the files in c:\texlive\texmf i did run the texexec --make but i still have texexec 4.0 running... the texexec.exe doesn't seem to find the most recent version. i

Re[2]: [NTG-context] no graph after compilation

2004-08-12 Thread Floris van Manen
h. I just want to use context with the metafun and xml features. I don't know if that is minimal enough :-) HH> actually, if you run a minimal tree, you can do a sycn with the HH> tree on out server using texsync, but i have to test that -) via google i found: http://www.pragma-ade.com/general/

Re[2]: [NTG-context] no graph after compilation

2004-08-12 Thread Floris van Manen
Hi Patrick, PG> But unzipping it on top of the texlive was not the very best idea I'd PG> guess. The directory structure has changed a bit with respect to the PG> location of scripts and metapost files, so your old texlive metafun PG> macros will be used. that is explaining the situation. But for

Re[2]: [NTG-context] no graph after compilation

2004-08-12 Thread Floris van Manen
>> But unzipping it on top of the texlive was not the very best idea I'd >> guess. EA> EA> I agree... but be aware that in EA> http://contextgarden.net/Linux_Installation this is just what is suggested and precisely what i therefor did :-( % f ___ n

Re: [NTG-context] Re: no graph after compilation

2004-08-12 Thread Floris van Manen
what is going on here??? is this the babel of our time? :-) OK, i re-installed a fresh copy of fpTex with the Context option. It will *not* install texexec at first. only after removing and re-installing the context option it will. then i added/unzipped all the cont-*.zip files into the texmf fol

Re[2]: [NTG-context] getting context going

2004-08-12 Thread Floris van Manen
hans. i re-started fresh (again :-) re-installing livetex using the texsetup.exe command. HH> if you install context, you can best do it into HH> HH> texmf-local HH> HH> (sometimes texmflocal) HH> HH> that way the files will be found there first; (it's also easier to prune HH> that tree)

Re[2]: [NTG-context] getting context going --> feature tool request

2004-08-13 Thread Floris van Manen
PG> It is not really necessary to run ConTeXt. PG> PG> Did you try your installation? i can run texexec but will still get 4.0 instead of the more recent version i installed into the texmf-local directory. i can run texexec --make if i now try to run texexec test.tex it will stop at the first

[NTG-context] metafun question

2004-08-16 Thread Floris van Manen
it seems that metafun has difficulty understanding the example using thevardef [EMAIL PROTECTED] expr p = construct. ! Illegal parameter number in definition of [EMAIL PROTECTED]@dummy2. ... p of p enddef; \par vardef [EMAIL PROTECTED]

[NTG-context] metafun question getting XY

2004-08-16 Thread Floris van Manen
if i define a path q := (w0,w0)--(w0,ww0)--(w2,ww1)--(w3,ww2)--(w3,w0)--cycle ; and then pass this path as a parameter to a function test( q ) ; then within that function i can step through the 'list of points'. def test( expr a ) = for i = 1 upto (length(a)-2): dotlabel.bot ("" , (point

[NTG-context] command set of table?

2004-08-17 Thread Floris van Manen
in the instruction manual it says context relies on both plain tex as well as the table package. in the context manual i can only find an explanation of the \starttabulate command. i see no instructions as how to combine columns/rows . where can i find that? thanks! % floris ___

[NTG-context] defining a frame with embedded typing

2004-08-17 Thread Floris van Manen
how would i define a frame with the typing environment embedded. the way i thought to solve it does *not* work (of course) \def\startTTinput% {\startframedtext[width=\makeupwidth,background=screen,backgroundscreen=.8] \starttyping } \def\stopTTinput% {\stoptyping\stopframedtext} or do i have

Re[2]: [NTG-context] defining a frame with embedded typing

2004-08-17 Thread Floris van Manen
that was the missing link. thanks! % f ___ ntg-context mailing list [EMAIL PROTECTED] http://www.ntg.nl/mailman/listinfo/ntg-context

Re: [NTG-context] description renders unintended results

2017-03-04 Thread Floris van Manen
> On 4 Mar 2017, at 11:25, Otared Kavian wrote: > > Since you specify > align=left > in the setup of your description, I don’t see why the output would be > unexpected. With the following version of your example code I get the > attached PDF output. I got the left/right discrepancy betw

Re: [NTG-context] description renders unintended results

2017-03-05 Thread Floris van Manen
Is there anyone out there who has a clue as how to fix this? Thanks .F > On 4 Mar 2017, at 11:58, Floris van Manen wrote: > > >> On 4 Mar 2017, at 11:25, Otared Kavian wrote: >> >> Since you specify >> align=left >> in the setup of your descripti

Re: [NTG-context] description renders unintended results (LUATEX BUG?)

2017-03-07 Thread Floris van Manen
The incorrect nesting seems to be connected to the luatex engine. If i have the same source compiled by pdftex, it works as intended. So is the different rendering an intended feature of luatex, or a simple bug? .F > On 6 Mar 2017, at 00:34, Floris van Manen wrote: > > Is there a

Re: [NTG-context] description renders unintended results (LUATEX BUG?)

2017-03-07 Thread Floris van Manen
> On 8 Mar 2017, at 01:04, Alan Braslau wrote: > > The two systems are very different, MKII being > "frozen" and MKIV having evolved in some ways significantly. It is not > a question of TeX engines, but rather of entire systems. > ok, that makes sense. > But it sounds like you want to be u

[NTG-context] confusing columns balancing results

2017-07-13 Thread Floris van Manen
=yes, tolerance=tolerant] Some hints as how to proceed? Thanks .Floris van Manen signature.asc Description: Message signed with OpenPGP using GPGMail ___ If your question is of interest to others as well

Re: [NTG-context] confusing columns balancing results

2017-07-14 Thread Floris van Manen
Here too, your example does renders correctly. Now try this: === \setuppapersize[A4, landscape] \setupbodyfont[8pt] \language[fr] \setupcolumns[ n=5, distance=4mm, balance=yes, tolerance=tolerant] \setupfootertexts[][] \setuplayout[ backspace=10mm, width=277mm, height=f

Re: [NTG-context] confusing columns balancing results

2017-07-14 Thread Floris van Manen
> On 14 Jul 2017, at 17:28, Rik Kabel wrote: > > Henri’s example fails for me in the same way that Floris describes. However, > when I remove either or both of the following lines from the first > \setuplayout directive, all is well. > header=0mm, > footer=0mm, > > In this example, the comple

[NTG-context] fixed spacing

2017-07-17 Thread Floris van Manen
dear List, I try to put a set of numbers into a block text. I want to keep the spacing within the items fixed x-y:~z, How do i do that? The attached code does not seem to treat the fixed space as fixed. Thanks .Floris \definepapersize[iiwii][width=125mm, height=125mm] \setuppapersize[iiwii] \se

Re: [NTG-context] fixed spacing

2017-07-17 Thread Floris van Manen
No, i don’t want them in a table in columns. Rather i want the stretching space after the comma only. .F > On 17 Jul 2017, at 22:05, Rik Kabel wrote: > > On 2017-07-17 15:23, Floris van Manen wrote: >> dear List, >> >> I try to put a set of numbers into a block

[NTG-context] hoot mail merge in context?

2017-08-07 Thread Floris van Manen
Hello, Can someone point me to an example as how to mail merge a CSV file containing the data with a context tex template? Outputting one or more pages per data entry input row? Thanks! .Floris signature.asc Description: Message signed with OpenPGP using GPGMail __

[NTG-context] how to get simplefonts to work as intended?

2017-09-22 Thread Floris van Manen
While trying to use the simplefonts module again, the generated output is somewhat confusing. Before falling back to the default font, it generates a lot of error messages (2.5 pages) in the pdf. Can someone provide a hint as how to solve this issue? Kind regards, .Floris this is the tex fi

Re: [NTG-context] how to get simplefonts to work as intended?

2017-09-22 Thread Floris van Manen
> On 23 Sep 2017, at 00:30, kaddour kardio wrote: > > you should remove the line containing *simplefont*, you don’t > have to load it to get a proper import of fonts, besides the TeX Gyre super > family is already available with the distribution, either standalone or the > texlive distro >

Re: [NTG-context] how to get simplefonts to work as intended?

2017-09-22 Thread Floris van Manen
> On 23 Sep 2017, at 02:14, Floris van Manen wrote: > > >> On 23 Sep 2017, at 00:30, kaddour kardio wrote: >> >> you should remove the line containing *simplefont*, you don’t >> have to load it to get a proper import of fonts, besides the TeX Gyre super &g

Re: [NTG-context] how to get simplefonts to work as intended?

2017-09-23 Thread Floris van Manen
> On 23 Sep 2017, at 11:58, kaddour kardio wrote: > > Here is a MWE > yes that works as intended signature.asc Description: Message signed with OpenPGP using GPGMail ___ If your question is of interest to others

Re: [NTG-context] how to get simplefonts to work as intended?

2017-09-23 Thread Floris van Manen
> On 23 Sep 2017, at 23:38, kaddour kardio wrote: > > sorry again for the first answer, goof (Con)TeXTing The online documentation was not too clear to me. e.g. if you know how it works, you can clearly see it. But the examples given don’t work anymore as of the new command syntax. The generat

[NTG-context] installing ConTeXt on ARM linux

2017-10-05 Thread Floris van Manen
trying to install ConTeXt on an ARM (ubuntu) linux hos, then get this message with the request to report is on the mailing list: $ sh ./first-setup.sh --engine=luatex Error: your system "Linux aarch64" is not supported yet. Please report to the ConTeXt mailing-list (ntg-context@ntg.nl) is there

Re: [NTG-context] installing ConTeXt on ARM linux

2017-10-06 Thread Floris van Manen
i have this snazzy little €30 quad core ARM board with 8GB eMMC. It runs my python3 scripts at 1/3 the speed of my MacBookPro mid 2009. http://wiki.friendlyarm.com/wiki/index.php/NanoPi_NEO_Plus2 To me it looks like a perfect network ConTeXt server. If there is something i can do to get the ConTe

Re: [NTG-context] Risposta: installing ConTeXt on ARM linux

2017-10-06 Thread Floris van Manen
> On 6 Oct 2017, at 13:42, MF wrote: > > Once they get to support it, you could download the texlive context > package that comes with Debian. thanks for the hint. it turns out that the ubuntu distribution for the nanopi board has the context packages included already. (and it works ;-) mtx-

Re: [NTG-context] Lua problem with tagging or setups

2017-10-09 Thread Floris van Manen
if i omit the line with the \externalfigure it does work is that cow.pdf missing? > On 9 Oct 2017, at 18:11, Rik Kabel wrote: > > Consider the following almost-minimal example: > > \setuptagging[state=start] > \setuppapersize [A6] > \setupexternalfigures[location=default] > \defin

Re: [NTG-context] Sorting of abbreviations in index

2017-10-09 Thread Floris van Manen
> On 9 October 2017 at 17:35, Henning Hraban Ramm wrote: > > If you like, I’ll gladly send you a voucher copy of the book*, once it’s > printed. > *) https://www.dreiviertelhaus.de/editionka/gewerkschaftspolitik/ (1947 — 1975) why does the book ends a year before i travelled there ? ;-) .F

Re: [NTG-context] How to add a font folder with local fonts?

2017-10-10 Thread Floris van Manen
you might consider using git easy to keep track of your data and to share / clone the latest state. .F > On 10 Oct 2017, at 12:25, Ulrike Fischer wrote: > > Am Tue, 10 Oct 2017 11:31:15 +0200 schrieb Henning Hraban Ramm: > >>> I can set OSFONTDIR only for context, but it would be a bit tricky

[NTG-context] web certificaat verlopen ...

2017-10-17 Thread Floris van Manen
modules.contextgarden.net uses an invalid security certificate. The certificate expired on 16 September 2017, 01:59. The current time is 17 October 2017, 22:15. Error code: SEC_ERROR_EXPIRED_CERTIFICATE (something might need to get fixed) .F signature.asc Description: Message signed with Open

Re: [NTG-context] ntg-context Digest, Vol 160, Issue 26

2017-10-19 Thread Floris van Manen
> On 19 Oct 2017, at 11:33, Christoph Reller wrote: > > \setupquotation[method=font] what is the intension of the method=font ? .F signature.asc Description: Message signed with OpenPGP using GPGMail ___ If your

Re: [NTG-context] new module uploaded: handlecsv

2017-10-25 Thread Floris van Manen
the modules.contextgarden.net is not secure … https://modules.contextgarden.net/cgi-bin/module.cgi/action=view/id=86 Your connection is not secure The owner of modules.contextgarden.net has configured their website improperly. To protect your information from being stolen, Firefox has not connect

Re: [NTG-context] bug updating the ConTeXt Suite?

2017-11-06 Thread Floris van Manen
here too: $ context --version mtx-context | ConTeXt Process Management 1.02 mtx-context | mtx-context | main context file: /Applications/ConTeXt/tex/texmf-context/tex/context/base/mkiv/context.mkiv mtx-context | current version: 2017.11.01 15:58 $ contextjit --version /Applicat

Re: [NTG-context] bug updating the ConTeXt Suite?

2017-11-06 Thread Floris van Manen
so is the error related to an incompatible luatex? $ luatex --version This is LuaTeX, Version 1.05.0 (TeX Live 2017) $ mtxrunjit --version /Applications/ConTeXt/tex/texmf-osx-64/bin/mtxrun:633: attempt to index local ‘searchers' (a nil value) $ mtxrun --version mtxrun | ConTeXt TDS

Re: [NTG-context] bug updating the ConTeXt Suite?

2017-11-06 Thread Floris van Manen
> On 6 Nov 2017, at 18:58, Pablo Rodriguez wrote: > > On 11/06/2017 10:31 AM, Floris van Manen wrote: >> here too: >> >> $ context --version >> >> mtx-context | ConTeXt Process Management 1.02 >> mtx-context | >> mtx-context | mai

Re: [NTG-context] German letter style

2017-12-05 Thread Floris van Manen
> On 5 Dec 2017, at 16:41, Jan U. Hasecke wrote: > > contextgarden is full of letter examples. But even the first simple > example here http://wiki.contextgarden.net/Letter#Example does not > compile. same here: mtx-context | run 1: luatex --fmt="/Applications/ConTeXt/tex/texmf-cache/lua

Re: [NTG-context] WYSIWYM editor on top of ConTeXt / Lout

2017-12-07 Thread Floris van Manen
it might be simpler to have a ‘watch’ option for the context compiler combined with an ‘open result’. e.g. the coffeescript compiler allows for a ‘-w’ option, it will keep the compiler running in the background and start compiling the file(s) as soon as it detects any changes. i guess such featu

[NTG-context] setting row height?

2017-12-28 Thread Floris van Manen
What is the (preferred) way to set the height of table rows? e.g. the online documentation tells me how to set the width, not the height. or how to set the height of the table? \starttable[*{4}{|w(7mm)}|][textwidth=max]\HL[5] \VL[5]{1} \VL[1]{0} \VL[5]{2} \VL[1]{8} \VL[5]\AR\HL[1] \VL[5]{8} \VL[1]

Re: [NTG-context] setting row height?

2017-12-29 Thread Floris van Manen
height=1cm] % ... or locally. > \startxcell > first bot > \stopxcell > \startxcell > second bot > \stopxcell > \stopxrow > > \stopxtable > > \stoptext > > > > Cheers. > > > > Am 28/12/2017 um 20:44 sc

Re: [NTG-context] xtables: rowwise, columnwise, and cellwise operations

2018-01-05 Thread Floris van Manen
apparently >\startxcell[suffix][ny=2] cell a 1 \stopxcell should be \startxcell[suffix, ny=2] cell a 1 \stopxcell > On 5 Jan 2018, at 14:32, Hans Hagen wrote: > > On 1/5/2018 4:57 AM, Henri wrote: >> Dear list, >> The Natural Tables have this great feature that I can

[NTG-context] missing link

2018-02-04 Thread Floris van Manen
On the contextgarden.net site, at page: http://wiki.contextgarden.net/Mark_IV near the end of the page you see: More sample code Other examples of Lua(TeX) code are to be found on Luigi’s user page as well as http://luatex.bluwiki.com/ the link http://luatex.bluwiki.com/ points to a placehold

Re: [NTG-context] option for printing range

2018-02-27 Thread Floris van Manen
> On 27 Feb 2018, at 13:50, Henning Hraban Ramm wrote: > > Too bad I can’t live (make a living) without Photoshop, InDesign etc... well, that depends as how you organise the workflow… i switched away from adobe using context instead. .F signature.asc Description: Message signed with OpenPGP

  1   2   3   >