Re: [NTG-context] How to use ConTeXt extensions with VS Code

2019-09-01 Thread Jeong Dal
Dear Hans, > 2019. 8. 19. 오후 4:21, ntg-context-requ...@ntg.nl 작성: > > there is an vscode-context.cmd file > Where can I find a vscode-context.cmd file? I couldn’t locate it using google search. > this could also work: > >> mtxrun --script vscode --start > Thank you. Best regards,

Re: [NTG-context] tikz problem with fontsize

2019-09-01 Thread Martin Althoff
Thanks for all the replies. @Ulrike: You are right, this example you give works for me too. Me experiencing it not working must have come out of some strange constellation. @Aditya: Yes, it does. But {} are needed: \tikzstyle{label}=[font={\switchtobodyfont[20pt] \red}] @Hagen: Yes, most

Re: [NTG-context] Problem of installation of ConTeXt LMTX

2019-09-01 Thread Atsuhito Kohda
Dear Hans and all, I guess that the reason of failure is mtx-install | invalid database ' http://lmtx.pragma-ade.com/install-lmtx//tex/texmf-linux.tma' and it seems texmf-linux-32.tma is correct name. So I modified bin/mtx-install.lua, mtxrun.lua as follows: --- mtx-install.lua.orig

Re: [NTG-context] tikz problem with fontsize

2019-09-01 Thread Aditya Mahajan
On Sat, 31 Aug 2019, Martin Althoff wrote: What to do? Are there other ways to change font size in the Context TikZ? The equivalent of LaTeX's \selectfont{}{} in ConTeXt is \switchtobodyfont[...]. See https://wiki.contextgarden.net/Font_Switching Aditya

Re: [NTG-context] tikz problem with fontsize

2019-09-01 Thread Ulrike Fischer
Am Sun, 1 Sep 2019 13:05:10 +0200 schrieb Hans Hagen: > what is \coordinate supposed to do: it stores a coordinate under a name. And it works fine for me (I would have been quite surprised if not): \usemodule[tikz] \starttext \starttikzpicture \coordinate (a) at (1,1); \coordinate (b) at

Re: [NTG-context] tikz problem with fontsize

2019-09-01 Thread Hans Hagen
On 9/1/2019 9:21 AM, Martin Althoff wrote: Hi Hans, thanks for this. Yes, that works. Am I right to assume that Context does not have a full tikz engine in the background due to the module implementation? For example, the \coordinate command is unknown as well. tikz is kind of generic so it

[NTG-context] Border in xtable

2019-09-01 Thread Fabrice Couvreur
Hello, In the table below, why the border of the first line is not drawn ? Thank you Fabrice \definecolor[ColorA][0.8(white)] \definecolor[ColorB][0.9(white)] \starttext \startxtable [align={lohi,middle}, width=2cm,bodyfont=11pt]

Re: [NTG-context] hypertarget and hyperlink in ConTeXt?

2019-09-01 Thread Henning Hraban Ramm
> Am 2019-09-01 um 06:36 schrieb Jon Wong : > > Hi all, > > I’m having trouble getting \textreference to show up. See https://wiki.contextgarden.net/Command/textreference: "Creates an **invisible**, referencable anchor text on the page" Greetlings, Hraban --- https://www.fiee.net

Re: [NTG-context] tikz problem with fontsize

2019-09-01 Thread Martin Althoff
Hi Hans, thanks for this. Yes, that works. Am I right to assume that Context does not have a full tikz engine in the background due to the module implementation? For example, the \coordinate command is unknown as well. Is there any way to integrate a standalone tikz into context documents?