albertopessia / latex-book-template

Basic LaTeX2e book template
The Unlicense
9 stars 3 forks source link

i18n/l10n #1

Open Ledenel opened 3 years ago

Ledenel commented 3 years ago

Hi, I'm a latex noob and I'm planning to write a book with both English and Chinese versions. I found this template maybe useful to get start with. Does the template support maintaining language translation? If not, do you have any suggestions about doing i18n/l10n?

albertopessia commented 3 years ago

I never worked with multilingual TeX documents and I cannot help directly with your problem. However, I found two possible approaches you might try:

\newif\ifenglish

\englishtrue % Show English text only % uncomment the following statement to show Chinese text only %\englishfalse

\begin{document} \ifenglish English text \else 中文文字 \fi \end{document}