ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Testing for LMTX
@ 2020-11-26 19:06 Jean-Philippe Rey
  2020-11-26 19:18 ` Jairo A. del Rio
  2020-11-26 20:01 ` Pablo Rodriguez
  0 siblings, 2 replies; 4+ messages in thread
From: Jean-Philippe Rey @ 2020-11-26 19:06 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Dear list,

I would like to determine if LMTX is being used. Mimicking system modes I tried

  \startmode[*lmtx] . . . \stopmode

however, LMTX doesn't define this mode but apparently defines *mkiv.

Do you know a way to distinguish between LMTX and MkIV ?

Thank you,

-- 
Jean-Philippe Rey
jean-philippe.rey@centralesupelec.fr
91192 Gif-sur-Yvette Cedex - France
Empreinte PGP : 807A 5B2C 69E4 D4B5 783A 428A 1B5E E83E 261B BF51

___________________________________________________________________________________
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] 4+ messages in thread

* Re: Testing for LMTX
  2020-11-26 19:06 Testing for LMTX Jean-Philippe Rey
@ 2020-11-26 19:18 ` Jairo A. del Rio
  2020-11-26 20:01 ` Pablo Rodriguez
  1 sibling, 0 replies; 4+ messages in thread
From: Jairo A. del Rio @ 2020-11-26 19:18 UTC (permalink / raw)
  To: mailing list for ConTeXt users, jean-philippe.rey


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

Hi

I'm not sure whether or not there's a better way, but a bit of grepping
allows you to find the following conditional:

\starttext
\ifcase\contextlmtxmode
MKIV %Whatever you want in MkIV
\else
LMTX %Whatever you want in LMTX
\fi
\stoptext

Best regards,

Jairo

El jue, 26 de nov. de 2020 a la(s) 14:06, Jean-Philippe Rey (
jean-philippe.rey@centralesupelec.fr) escribió:

> Dear list,
>
> I would like to determine if LMTX is being used. Mimicking system modes I
> tried
>
>   \startmode[*lmtx] . . . \stopmode
>
> however, LMTX doesn't define this mode but apparently defines *mkiv.
>
> Do you know a way to distinguish between LMTX and MkIV ?
>
> Thank you,
>
> --
> Jean-Philippe Rey
> jean-philippe.rey@centralesupelec.fr
> 91192 Gif-sur-Yvette Cedex - France
> Empreinte PGP : 807A 5B2C 69E4 D4B5 783A 428A 1B5E E83E 261B BF51
>
>
> ___________________________________________________________________________________
> 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
>
> ___________________________________________________________________________________
>

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

[-- Attachment #2: Type: text/plain, Size: 493 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] 4+ messages in thread

* Re: Testing for LMTX
  2020-11-26 19:06 Testing for LMTX Jean-Philippe Rey
  2020-11-26 19:18 ` Jairo A. del Rio
@ 2020-11-26 20:01 ` Pablo Rodriguez
  2020-11-27  9:06   ` Jean-Philippe Rey
  1 sibling, 1 reply; 4+ messages in thread
From: Pablo Rodriguez @ 2020-11-26 20:01 UTC (permalink / raw)
  To: ntg-context

On 11/26/20 8:06 PM, Jean-Philippe Rey wrote:
> [...]
> Do you know a way to distinguish between LMTX and MkIV ?

Hi Jean-Philippe,

I guess this is what you are looking for:

  \starttext
  \startTEXpage[offset=1em]
  \startlmtxmode LMTX\stoplmtxmode
  \startmkivmode MkIV\stopmkivmode
  \stopTEXpage
  \stoptext

Just in case it helps,

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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: Testing for LMTX
  2020-11-26 20:01 ` Pablo Rodriguez
@ 2020-11-27  9:06   ` Jean-Philippe Rey
  0 siblings, 0 replies; 4+ messages in thread
From: Jean-Philippe Rey @ 2020-11-27  9:06 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

Pablo, Jairo,

Thank you very much.

> Le 26 nov. 2020 à 21:01, Pablo Rodriguez <oinos@gmx.es> a écrit :
> 
> On 11/26/20 8:06 PM, Jean-Philippe Rey wrote:
>> [...]
>> Do you know a way to distinguish between LMTX and MkIV ?
> 
> Hi Jean-Philippe,
> 
> I guess this is what you are looking for:
> 
>  \starttext
>  \startTEXpage[offset=1em]
>  \startlmtxmode LMTX\stoplmtxmode
>  \startmkivmode MkIV\stopmkivmode
>  \stopTEXpage
>  \stoptext
> 
> Just in case it helps,
> 
> Pablo


-- 
Jean-Philippe Rey
jean-philippe.rey@centralesupelec.fr <mailto:jean-philippe.rey@centralesupelec.fr>
91192 Gif-sur-Yvette Cedex - France
Empreinte PGP : 807A 5B2C 69E4 D4B5 783A 428A 1B5E E83E 261B BF51


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

[-- Attachment #2: Type: text/plain, Size: 493 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] 4+ messages in thread

end of thread, other threads:[~2020-11-27  9:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-26 19:06 Testing for LMTX Jean-Philippe Rey
2020-11-26 19:18 ` Jairo A. del Rio
2020-11-26 20:01 ` Pablo Rodriguez
2020-11-27  9:06   ` Jean-Philippe Rey

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