ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Can I use language as a mode (set on the command line) and simplify this?
@ 2022-05-10 20:41 Gerben Wierda via ntg-context
  2022-05-10 21:40 ` Gerben Wierda via ntg-context
  0 siblings, 1 reply; 7+ messages in thread
From: Gerben Wierda via ntg-context @ 2022-05-10 20:41 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Gerben Wierda


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

I currently have:

\startnotallmodes[FR,RU]% english is the default
\enablemode[EN]
\stopmode
\startmode[EN]
\setuplanguage[en][patterns={en}]
\setupexternalfigure[directory=../LMTX-Output/without-ids/en/ArchiMate 3.1 Metamodel ESv4]
\stopmode
\startmode[FR]
\setuplanguage[fr][patterns={en,fr}]
\setupexternalfigure[directory=../LMTX-Output/without-ids/fr/ArchiMate 3.1 Metamodel ESv4]
\stopmode
\startmode[RU]
\setuplanguage[ru][patterns={en,ru}]
\setupexternalfigure[directory=../LMTX-Output/without-ids/ru/ArchiMate 3.1 Metamodel ESv4]
\stopmode

I was wondering if this can be simplified, e.g. by setting language on the command line instead, enable a mode derived from a language set on the command line, and if I would have a single command \setupexternalfigure[directory= that reacts to the language by using the name of the language as part of the directory?

Gerben Wierda (LinkedIn <https://www.linkedin.com/in/gerbenwierda>)
R&A IT Strategy <https://ea.rna.nl/> (main site)
Book: Chess and the Art of Enterprise Architecture <https://ea.rna.nl/the-book/>
Book: Mastering ArchiMate <https://ea.rna.nl/the-book-edition-iii/>


[-- Attachment #1.2: Type: text/html, Size: 4408 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] 7+ messages in thread

* Re: Can I use language as a mode (set on the command line) and simplify this?
  2022-05-10 20:41 Can I use language as a mode (set on the command line) and simplify this? Gerben Wierda via ntg-context
@ 2022-05-10 21:40 ` Gerben Wierda via ntg-context
  2022-05-11  6:59   ` Taco Hoekwater via ntg-context
  0 siblings, 1 reply; 7+ messages in thread
From: Gerben Wierda via ntg-context @ 2022-05-10 21:40 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Gerben Wierda


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

Fix

> On 10 May 2022, at 22:41, Gerben Wierda via ntg-context <ntg-context@ntg.nl> wrote:
> 
> I currently have:
> 
> \startnotallmodes[FR,RU]% english is the default
> \enablemode[EN]
> \stopnotallmodes
> \startmode[EN]
> \setuplanguage[en][patterns={en}]
> \setupexternalfigure[directory=../LMTX-Output/without-ids/en/ArchiMate 3.1 Metamodel ESv4]
> \stopmode
> \startmode[FR]
> \setuplanguage[fr][patterns={en,fr}]
> \setupexternalfigure[directory=../LMTX-Output/without-ids/fr/ArchiMate 3.1 Metamodel ESv4]
> \stopmode
> \startmode[RU]
> \setuplanguage[ru][patterns={en,ru}]
> \setupexternalfigure[directory=../LMTX-Output/without-ids/ru/ArchiMate 3.1 Metamodel ESv4]
> \stopmode
> 
> I was wondering if this can be simplified, e.g. by setting language on the command line instead, enable a mode derived from a language set on the command line, and if I would have a single command \setupexternalfigure[directory= that reacts to the language by using the name of the language as part of the directory?
> 
> Gerben Wierda (LinkedIn <https://www.linkedin.com/in/gerbenwierda>)
> R&A IT Strategy <https://ea.rna.nl/> (main site)
> Book: Chess and the Art of Enterprise Architecture <https://ea.rna.nl/the-book/>
> Book: Mastering ArchiMate <https://ea.rna.nl/the-book-edition-iii/>
> 
> ___________________________________________________________________________________
> 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: 5742 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] 7+ messages in thread

* Re: Can I use language as a mode (set on the command line) and simplify this?
  2022-05-10 21:40 ` Gerben Wierda via ntg-context
@ 2022-05-11  6:59   ` Taco Hoekwater via ntg-context
  2022-05-11  7:40     ` Gerben Wierda via ntg-context
  0 siblings, 1 reply; 7+ messages in thread
From: Taco Hoekwater via ntg-context @ 2022-05-11  6:59 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Taco Hoekwater



> On 10 May 2022, at 23:40, Gerben Wierda via ntg-context <ntg-context@ntg.nl> wrote:
> 
> Fix

>> I was wondering if this can be simplified, e.g. by setting language on the command line instead, enable a mode derived from a language set on the command line, 

The language settings trigger a system mode, see

https://wiki.contextgarden.net/Modes#System_modes

Best wishes,
Taco

— 
Taco Hoekwater              E: taco@bittext.nl
genderfluid (all pronouns)



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

* Re: Can I use language as a mode (set on the command line) and simplify this?
  2022-05-11  6:59   ` Taco Hoekwater via ntg-context
@ 2022-05-11  7:40     ` Gerben Wierda via ntg-context
  2022-05-11 15:57       ` Pablo Rodriguez via ntg-context
  0 siblings, 1 reply; 7+ messages in thread
From: Gerben Wierda via ntg-context @ 2022-05-11  7:40 UTC (permalink / raw)
  To: Taco Hoekwater; +Cc: Gerben Wierda, mailing list for ConTeXt users


> On 11 May 2022, at 08:59, Taco Hoekwater <taco@bittext.nl> wrote:
> 
> 
> 
>> On 10 May 2022, at 23:40, Gerben Wierda via ntg-context <ntg-context@ntg.nl> wrote:
>> 
>> Fix
> 
>>> I was wondering if this can be simplified, e.g. by setting language on the command line instead, enable a mode derived from a language set on the command line, 
> 
> The language settings trigger a system mode, see
> 
> https://wiki.contextgarden.net/Modes#System_modes

Thanks, but how do I influence this from the command line? Does it work the other way around, so with “—mode=en”?

Yours,

G

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

* Re: Can I use language as a mode (set on the command line) and simplify this?
  2022-05-11  7:40     ` Gerben Wierda via ntg-context
@ 2022-05-11 15:57       ` Pablo Rodriguez via ntg-context
  2022-05-11 16:09         ` Wolfgang Schuster via ntg-context
  0 siblings, 1 reply; 7+ messages in thread
From: Pablo Rodriguez via ntg-context @ 2022-05-11 15:57 UTC (permalink / raw)
  To: Gerben Wierda via ntg-context; +Cc: Pablo Rodriguez

On 5/11/22 09:40, Gerben Wierda via ntg-context wrote:
>> On 11 May 2022, at 08:59, Taco Hoekwater <taco@bittext.nl> wrote:
>> [...]
>> The language settings trigger a system mode, see
>>
>> https://wiki.contextgarden.net/Modes#System_modes
>
> Thanks, but how do I influence this from the command line? Does it
> work the other way around, so with “—mode=en”?
Hi Gerben,

I think this may do the trick:

  \doiftext{\env{ml}}
    {\mainlanguage[\env{ml}]}
  \starttext
   Document main language:
    \startmodeset
        [**en] {English}
        [**es] {Spanish}
        [**de] {German}
        [**nl] {Dutch}
        [**ru] {Russian}
    \stopmodeset%
   .
  \stoptext

Of course, "--arguments=ml=nl" would be the right option to pass the
language from the command line.

AfaIk, there is not "--language" option from the command line. (This
also makes sense to me.)

Just in case it might help,

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

* Re: Can I use language as a mode (set on the command line) and simplify this?
  2022-05-11 15:57       ` Pablo Rodriguez via ntg-context
@ 2022-05-11 16:09         ` Wolfgang Schuster via ntg-context
  2022-05-11 16:24           ` Pablo Rodriguez via ntg-context
  0 siblings, 1 reply; 7+ messages in thread
From: Wolfgang Schuster via ntg-context @ 2022-05-11 16:09 UTC (permalink / raw)
  To: mailing list for ConTeXt users, Pablo Rodriguez via ntg-context
  Cc: Wolfgang Schuster, Pablo Rodriguez

Pablo Rodriguez via ntg-context schrieb am 11.05.2022 um 17:57:
> AfaIk, there is not "--language" option from the command line. (This
> also makes sense to me.)

\doifdocumentargument {language}
   {\mainlanguage[\getdocumentargument{language}]}

\starttext
\currentmainlanguage
\stoptext

Wolfgang

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

* Re: Can I use language as a mode (set on the command line) and simplify this?
  2022-05-11 16:09         ` Wolfgang Schuster via ntg-context
@ 2022-05-11 16:24           ` Pablo Rodriguez via ntg-context
  0 siblings, 0 replies; 7+ messages in thread
From: Pablo Rodriguez via ntg-context @ 2022-05-11 16:24 UTC (permalink / raw)
  To: Wolfgang Schuster via ntg-context; +Cc: Pablo Rodriguez

On 5/11/22 18:09, Wolfgang Schuster via ntg-context wrote:
> Pablo Rodriguez via ntg-context schrieb am 11.05.2022 um 17:57:
>> AfaIk, there is not "--language" option from the command line. (This
>> also makes sense to me.)
>
> \doifdocumentargument {language}
>    {\mainlanguage[\getdocumentargument{language}]}

Many thanks for the info, Wolfgang.

I see that literally anything goes:

  \doifdocumentargument{anything}
    {\mainlanguage[\getdocumentargument{anything}]}

Many thanks for your help,

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

end of thread, other threads:[~2022-05-11 16:24 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-10 20:41 Can I use language as a mode (set on the command line) and simplify this? Gerben Wierda via ntg-context
2022-05-10 21:40 ` Gerben Wierda via ntg-context
2022-05-11  6:59   ` Taco Hoekwater via ntg-context
2022-05-11  7:40     ` Gerben Wierda via ntg-context
2022-05-11 15:57       ` Pablo Rodriguez via ntg-context
2022-05-11 16:09         ` Wolfgang Schuster via ntg-context
2022-05-11 16:24           ` Pablo Rodriguez via ntg-context

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