Rik Kabel schrieb am 30.05.2024 um 19:21:
From my basic environment file, a useful reminder:
%% \mainlanguage sets language used for labels (TOC, chapters, ...) %% \language sets language to use for hyphenation, quote rules, ...
\mainlanguage includes all settings of \language. As you can see in the following example \mainlanguage change the float label and the quotation marks but \language changes only the quotation marks and uses the label of the main language. %%%% begin example \starttext \startplacefigure[title=\quotation{English quotes}] \midaligned{\blackrule[width=6cm,height=2cm,color=red]} \stopplacefigure \start \mainlanguage[nl] \startplacefigure[title=\quotation{Dutch quotes}] \midaligned{\blackrule[width=6cm,height=2cm,color=green]} \stopplacefigure \stop \start \language[fr] \startplacefigure[title=\quotation{French quotes}] \midaligned{\blackrule[width=6cm,height=2cm,color=blue]} \stopplacefigure \stop \stoptext %%%% end example Wolfgang