ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* escaping quotes in \ctxlua
@ 2015-09-30 15:07 Pablo Rodriguez
  2015-09-30 15:20 ` Wolfgang Schuster
  2015-09-30 15:26 ` Tomas Hala
  0 siblings, 2 replies; 4+ messages in thread
From: Pablo Rodriguez @ 2015-09-30 15:07 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Dear list,

I have the following sample:

    \starttext
    \startluacode
    tex.print(os.getenv("USER")
    \stopluacode

    \ctxlua{tex.print(os.getenv("USER")}
    \stoptext

How can I escape the quotes in the \ctxlua command?

Many thanks for your help,


Pablo
-- 
http://www.ousia.tk
___________________________________________________________________________________
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: escaping quotes in \ctxlua
  2015-09-30 15:07 escaping quotes in \ctxlua Pablo Rodriguez
@ 2015-09-30 15:20 ` Wolfgang Schuster
  2015-09-30 16:58   ` Pablo Rodriguez
  2015-09-30 15:26 ` Tomas Hala
  1 sibling, 1 reply; 4+ messages in thread
From: Wolfgang Schuster @ 2015-09-30 15:20 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 449 bytes --]

> Pablo Rodriguez <mailto:oinos@gmx.es>
> 30. September 2015 um 17:07
> Dear list,
>
> I have the following sample:
>
> \starttext
> \startluacode
> tex.print(os.getenv("USER")
> \stopluacode
>
> \ctxlua{tex.print(os.getenv("USER")}
> \stoptext
>
> How can I escape the quotes in the \ctxlua command?
You have to add a  closing ) for tex.print in both Lua calls but you can 
replace the second version with \cldcontext{os.getenv("USER")}.

Wolfgang

[-- Attachment #1.2: Type: text/html, Size: 1476 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: escaping quotes in \ctxlua
  2015-09-30 15:07 escaping quotes in \ctxlua Pablo Rodriguez
  2015-09-30 15:20 ` Wolfgang Schuster
@ 2015-09-30 15:26 ` Tomas Hala
  1 sibling, 0 replies; 4+ messages in thread
From: Tomas Hala @ 2015-09-30 15:26 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hello Pablo,
print commands are not balanced, second right parenthesis is missing.
Then it will work.

Tomas

Wed, Sep 30, 2015 ve 05:07:49PM +0200 Pablo Rodriguez napsal(a):
# Dear list,
# 
# I have the following sample:
# 
#     \starttext
#     \startluacode
#     tex.print(os.getenv("USER")
#     \stopluacode
# 
#     \ctxlua{tex.print(os.getenv("USER")}
#     \stoptext
# 
# How can I escape the quotes in the \ctxlua command?
# 
# Many thanks for your help,
# 
# 
# Pablo
# -- 
# http://www.ousia.tk
# ___________________________________________________________________________________
# 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://tex.aanhet.net
# archive  : http://foundry.supelec.fr/projects/contextrev/
# wiki     : http://contextgarden.net
# ___________________________________________________________________________________

                                         Tomáš Hála
--------------------------------------------------------------------
Mendelova univerzita, Provozně ekonomická fakulta, ústav informatiky
Zemědělská 1, CZ-613 00 Brno,  tel. +420 545 13 22 28
--------------------------------------------------------------------
http://akela.mendelu.cz/~thala
___________________________________________________________________________________
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: escaping quotes in \ctxlua
  2015-09-30 15:20 ` Wolfgang Schuster
@ 2015-09-30 16:58   ` Pablo Rodriguez
  0 siblings, 0 replies; 4+ messages in thread
From: Pablo Rodriguez @ 2015-09-30 16:58 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On 09/30/2015 05:20 PM, Wolfgang Schuster wrote:
>> Pablo Rodriguez 30. September 2015 um 17:07
>> Dear list,
>>
>> I have the following sample:
>>
>> \starttext
>> \startluacode
>> tex.print(os.getenv("USER")
>> \stopluacode
>>
>> \ctxlua{tex.print(os.getenv("USER")}
>> \stoptext
>>
>> How can I escape the quotes in the \ctxlua command?
> You have to add a  closing ) for tex.print in both Lua calls but you can
> replace the second version with \cldcontext{os.getenv("USER")}.

Many thanks for your replies, Wolfgang and Thomas.

I knew that parentheses need to be closed, but I totally overlooked it
in both tex.print commands.

Many thanks for your help and sorry for the noise,


Pablo
-- 
http://www.ousia.tk
___________________________________________________________________________________
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-09-30 16:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-30 15:07 escaping quotes in \ctxlua Pablo Rodriguez
2015-09-30 15:20 ` Wolfgang Schuster
2015-09-30 16:58   ` Pablo Rodriguez
2015-09-30 15:26 ` Tomas Hala

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