ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Carlos via ntg-context <ntg-context@ntg.nl>
To: ntg-context@ntg.nl
Cc: Carlos <linguafalsa@gmail.com>
Subject: Re: [NTG-context] TiKz with LMTX
Date: Mon, 12 Jun 2023 12:49:23 -0400	[thread overview]
Message-ID: <e45ldo2kmreiepiqn3higyniodmuxth33cot5bgrhhz77l75ts@dglnaspvnnhl> (raw)
In-Reply-To: <2q19736q-80n5-2ss0-8719-7pq459p54976@hzvpu.rqh>

On Thu, Jun 08, 2023 at 11:57:36PM -0400, Aditya Mahajan via ntg-context wrote:
> On Thu, 8 Jun 2023, Jigé via ntg-context wrote:
> 
> >  Thanks a lot Aditya.
> > 
> > The very simple TikZ example with the cross works.
> > The more complex example with the trigonometric circle from the pgf manual,
> > quoted in https://wiki.contextgarden.net/TikZ , does not compile
> > unless you also comment out
> >  or find(n,"pdftex")
> > in line 181 of the mtx-install-modules.lua file
> > before doing mtxrun --script install-modules --install tikz
> > but I could guess that from a:
> >  Driver file ``pgfsys-pdftex.def'' not found..
> > message
> 
> Ah so tikz uses both drivers. 
> 
> @Hans, so the validate function should be:
> 
> local function validate(n)
>     return not (
>            find(n,"latex")

what's the point of latex there? 

>      -- or find(n,"lualatex")

or for that matter this one lualatex too 

>         or find(n,"plain")
>         or find(n,"optex")
>      -- or find(n,"luatex")
>      -- or find(n,"pdftex")
>     )
> end
> 
> 
> Aditya

Through rsync only and by default without mtx-install-modules script,
obviously, it'll simply fall back loading by pgfsys-pdftex

so you'd be better off by just having 

local function validate(n)
    return not (
           find(n,"latex")
     	or find(n,"lualatex")
        or find(n,"plain")
        or find(n,"optex")
    --  or find(n,"luatex")
    	or find(n,"pdftex")
    )
end

instead.  

Also, forget about the curl --ssl or whatever you mentioned earlier.


> ___________________________________________________________________________________
> If your question is of interest to others as well, please add an entry to the Wiki!
> 
> maillist : ntg-context@ntg.nl / https://www.ntg.nl/mailman/listinfo/ntg-context
> webpage  : https://www.pragma-ade.nl / http://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> wiki     : https://contextgarden.net
> ___________________________________________________________________________________


-- 
	Brian Kernighan has an automobile which he helped design.
Unlike most automobiles, it has neither speedometer, nor gas gauge, nor
any of the numerous idiot lights which plague the modern driver.
Rather, if the driver makes any mistake, a giant "?" lights up in the
center of the dashboard.  "The experienced driver", he says, "will
usually know what's wrong."

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / https://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : https://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : https://contextgarden.net
___________________________________________________________________________________

  parent reply	other threads:[~2023-06-12 16:50 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <mailman.49.1686219733.1391.ntg-context@ntg.nl>
2023-06-08 18:37 ` Jigé via ntg-context
2023-06-09  3:57   ` Aditya Mahajan via ntg-context
2023-06-09  6:13     ` Hans Hagen via ntg-context
2023-06-09 16:43       ` Aditya Mahajan via ntg-context
2023-06-12 16:49     ` Carlos via ntg-context [this message]
2023-06-12 16:59       ` Hans Hagen via ntg-context
     [not found] <mailman.1332.1685970748.41142.ntg-context@ntg.nl>
2023-06-05 14:52 ` Jigé via ntg-context
     [not found] <mailman.1322.1685946193.41142.ntg-context@ntg.nl>
2023-06-05 10:33 ` Jigé via ntg-context
2023-06-05 11:02   ` Floris van Manen via ntg-context
2023-06-05 12:49     ` Carlos via ntg-context
2023-06-05 13:06       ` Floris van Manen via ntg-context
2023-06-05 13:40         ` Carlos via ntg-context
2023-06-05 19:43         ` Carlos via ntg-context
2023-06-05 20:16           ` Carlos via ntg-context
     [not found] <mailman.1302.1685898062.41142.ntg-context@ntg.nl>
2023-06-04 21:04 ` Jigé via ntg-context
     [not found] <1949632129.10002246.1685869873625.ref@mail.yahoo.com>
2023-06-04  9:11 ` Jigé via ntg-context
2023-06-04 14:44   ` Hans Hagen via ntg-context
2023-06-04 15:10     ` Floris van Manen via ntg-context
2023-06-04 16:18       ` Hans Hagen via ntg-context
2023-06-04 21:58         ` Floris van Manen via ntg-context
2023-06-05  5:43           ` Mikael Sundqvist via ntg-context
2023-06-05  8:35             ` vm via ntg-context
2023-06-05 17:40   ` Aditya Mahajan via ntg-context
2023-06-06  2:32     ` Aditya Mahajan via ntg-context

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=e45ldo2kmreiepiqn3higyniodmuxth33cot5bgrhhz77l75ts@dglnaspvnnhl \
    --to=ntg-context@ntg.nl \
    --cc=linguafalsa@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).