%% This is part of OpTeX project, see http://petr.olsak.net/optex \_codedecl \_mtext {Languages <2020-03-15>} % preloaded in format \_doc ----------------------------- Only four words are generated by \OpTeX/ macros: \"Chapter", \"Table", \"Figure" and \"Subject". These phrases can be generated depending on the current value of `\language` register, if you use \`\_mtext``{}`, specially `\_mtext{chap}`, `\_mtext{t}`, `\_mtext{f}` or `\_mtext{subj}`. If your macros generate more words then you can define such words by `\sdef{_mt::}` where `` is a label for declared word and `` is language shortcut (iso code). \_cod ----------------------------- \def\_mtext#1{\_trycs{_mt:#1:\_trycs{_lan:\_the\_language}{en}} {\_csname _mt:#1:en\_endcsname}} \sdef{_mt:chap:en}{Chapter} \sdef{_mt:chap:cs}{Kapitola} \sdef{_mt:chap:sk}{Kapitola} \sdef{_mt:t:en}{Table} \sdef{_mt:t:cs}{Tabulka} \sdef{_mt:t:sk}{Tabuľka} \sdef{_mt:f:en}{Figure} \sdef{_mt:f:cs}{Obrázek} \sdef{_mt:f:sk}{Obrázok} \sdef{_mt:subj:en}{Subject} \sdef{_mt:subj:cs}{Věc} \sdef{_mt:subj:sk}{Vec} \_doc ----------------------------- Using \`\_langw` `
` you can declare these words more effectively: \maxlines=13 \_cod ----------------------------- \_def \_langw #1 #2 #3 #4 #5 {% \_sdef{_mt:chap:#1}{#2}\_sdef{_mt:t:#1}{#3}\_sdef{_mt:f:#1}{#4}% \_sdef{_mt:subj:#1}{#5}% } \_langw en Chapter Table Figure Subject %-------------------------------------------------------------- \_langw cs Kapitola Tabulka Obrázek Věc \_langw de Kapitel Tabelle Obrázek Subjekt \_langw es Capítulo Tabla Figura Sujeto \_langw fr Chaptire Tableau Figure Matière \_langw it Capitolo Tabella Fig. Soggetto \_langw pl Rozdział Tabela Ilustracja Temat \_langw gr Κεφάλαιο Πίνακας Σχήμα θέμα \_langw ru Глава Таблица Рисунок Предмет \_langw sk Kapitola Tabuľka Obrázok Vec \_doc ----------------------------- You can add more words as you wish. For example \`\today` macro: \_cod ----------------------------- \_def \_monthw #1 #2 #3 #4 #5 #6 #7 {% \_sdef{_mt:m1:#1}{#2}\_sdef{_mt:m2:#1}{#3}\_sdef{_mt:m3:#1}{#4}% \_sdef{_mt:m4:#1}{#5}\_sdef{_mt:m5:#1}{#5}\_sdef{_mt:m6:#1}{#5}% \_monthwB #1 } \_def \_monthwB #1 #2 #3 #4 #5 #6 #7 {% \_sdef{_mt:m7:#1}{#2}\_sdef{_mt:m8:#1}{#3}\_sdef{_mt:m9:#1}{#4}% \_sdef{_mt:m10:#1}{#5}\_sdef{_mt:m11:#1}{#5}\_sdef{_mt:m12:#1}{#5}% } \_monthw en January February March April May June July August September October November December \_monthw cs ledna února března dubna května června července srpna září října listopadu prosince \_monthw sk januára februára marca apríla mája júna júla augusta septembra októbra novembra decembra \_sdef{_mt:today:en}{\_mtext{m\the\month} \the\day, \the\year} \_sdef{_mt:today:cs}{\the\day.~\_mtext{m\the\month} \the\year} \_slet{_mt:today:sk}{_mt:today:cs} \_def\_today{\_mtext{today}} \_public \today ; \_doc ----------------------------- Quotes should be tagged by `\""` and `\''` if `\quotes` is declared at beginning of the document (for example `\enquotes`). If not, then the control sequences `\"` and `\'` are undefined. Remember, that they are used in another meaning when `\oldaccents` command is used. The macros `\"` and `\'` are not defined as `\protected` because we need their expansion when `\outlines` are created. User can declare quotes by \`\quoteschars```, where `...` are normal quotes and `...` are alternative quotes. or use \`\altquotes` to swap between meaning of these two types of quotes. \nl \`\enquotes`, \`\csquotes`, \`\dequotes`, \`\frquotes` etc. are defined here. \_cod ----------------------------- \_def \_enquotes {\_quoteschars “”‘’} \_def \_csquotes {\_quoteschars „“‚‘} \_def \_frquotes {\_quoteschars “”«»} \_let \_plquotes = \_frquotes \_let \_esquotes = \_frquotes \_let \_grquotes = \_frquotes \_let \_ruquotes = \_frquotes \_let \_itquotes = \_frquotes \_let \_skquotes = \_csquotes \_let \_dequotes = \_csquotes \_def \_quoteschars #1#2#3#4{\_def\_altquotes{\_quoteschars#3#4#1#2}\_public\altquotes;% \_def \"##1"{#1##1#2}\_def \'##1'{#3##1#4}} \_doc ----------------------------- Sometimes should be usable to leave the markup `"such"` or `'such'` i.e.~without the first backslash. Then you can make the characters `"` and `'` active by the \`\activequotes` macro and leave quotes without first backslash. First, declare `\quotes`, then \^`\altquotes` (if needed) and finally \^`\activequotes`. \_cod ----------------------------- \def\_activequotes{\_ea\_activequotesA\"""\_ea\_activequotesA\'''} \def\_activequotesA#1#2#3{\_bgroup\_lccode`\~=`#3\_lowercase{\_egroup\_adef#3##1~{#1##1#2}}} \_public \quoteschars \activequotes \enquotes \csquotes \skquotes \frquotes \plquotes \esquotes \grquotes \ruquotes \itquotes \dequotes ; \_endcode % -------------------------------------