ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* How to use tex.print in ctxlua
@ 2017-03-19 15:30 Otared Kavian
  2017-03-19 15:39 ` josephcanedo
                   ` (3 more replies)
  0 siblings, 4 replies; 13+ messages in thread
From: Otared Kavian @ 2017-03-19 15:30 UTC (permalink / raw)
  To: mailing list for ConTeXt users

[-- Attachment #1: Type: text/plain, Size: 857 bytes --]

Hi,

I would like to print in a text the values of a array computed in a  \startluacode …. \stopluacode combination.
How can I do it properly? Please have a look at the example below and its output, which is not satisfactory because the right parenthesis is separated from the number by a space. How can I suppress this unwanted space? 
For instance I get (1, 103 ) instead of (1, 103).

Thanks in advance for any help,
Best regards: OK

%%% begin ctxlua-print.tex
\starttext
\startluacode
	n = 6 ;
	vecteurX = {} ;
	for i = 1,n do
		vecteurX[i] = i ;
	end
	vecteurY = {} ;
	for i = 1,n do
		vecteurY[i] = 3*vecteurX[i] + 100 ;
	end
	for i = 1,n do
		context("(") 
		tex.print(vecteurX[i]) 
		context(", ") 
		tex.print(vecteurY[i])
		tex.print(")")
		context.par()
	end
\stopluacode
\stoptext
%%% begin ctxlua-print.tex


[-- Attachment #2: ctxlua-print.pdf --]
[-- Type: application/pdf, Size: 5947 bytes --]

[-- Attachment #3: Type: text/plain, Size: 492 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] 13+ messages in thread

end of thread, other threads:[~2017-03-19 17:28 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-19 15:30 How to use tex.print in ctxlua Otared Kavian
2017-03-19 15:39 ` josephcanedo
2017-03-19 15:51 ` Thomas A. Schmitz
2017-03-19 16:39   ` Otared Kavian
2017-03-19 17:28   ` Hans Hagen
2017-03-19 15:56 ` Pablo Rodriguez
2017-03-19 16:42   ` Otared Kavian
2017-03-19 16:53   ` Thomas A. Schmitz
2017-03-19 16:37 ` Aditya Mahajan
2017-03-19 16:46   ` Otared Kavian
2017-03-19 16:56     ` Wolfgang Schuster
2017-03-19 17:17       ` Otared Kavian
2017-03-19 17:26       ` Hans Hagen

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).