General ⇒ Bilingual documents
Bilingual documents
I am not sure about the forum posting the question but here goes...
I am writing an English document and I would like to keep a translation at one other language say Greek. I have never done something like this before so I'm clueless on how to achieve it. The final result is to have two different documents one in English and one in Greek.
Is that possible? Or do I have to rewrite the second document from scratch?
I am writing an English document and I would like to keep a translation at one other language say Greek. I have never done something like this before so I'm clueless on how to achieve it. The final result is to have two different documents one in English and one in Greek.
Is that possible? Or do I have to rewrite the second document from scratch?
NEW: TikZ book now 40% off at Amazon.com for a short time.
Bilingual documents
That is not what I am asking. I do not want a two column bilingual document. I want two separate documents one with English and the other with Greek. That is what I am asking if is possible. 

- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Bilingual documents
Yes, this is possible.
You are asking for two different documents, it doesn't matter whst is inside. Both documents can share the se preamble.
You could also write one master document and split the output using conditionals.
You are asking for two different documents, it doesn't matter whst is inside. Both documents can share the se preamble.
You could also write one master document and split the output using conditionals.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
- Stefan Kottwitz
- Site Admin
- Posts: 10320
- Joined: Mon Mar 10, 2008 9:44 pm
Bilingual documents
I would put the part of the document preamble, that shall be the same in both documents, into a file like preamble.tex. Then use
Just specific settings, such as greek or english option for babel, need to go to the specific document.
Stefan
\input{preamble}
at the beginning of each document. So changes in the preamble appy to both documents.Just specific settings, such as greek or english option for babel, need to go to the specific document.
Stefan
LaTeX.org admin
Bilingual documents
Interesting. Care to expand a bit?Johannes_B wrote:You could also write one master document and split the output using conditionals.
Bilingual documents
Thanks Stefan. But this requires me to work with two documents. I was wondering if it was possible to only work with one document and interchange the languages in that only one file. Then compile twice so (La) TeX produces both documents.Stefan Kottwitz wrote:I would put the part of the document preamble, that shall be the same in both documents, into a file like preamble.tex. Then use\input{preamble}
at the beginning of each document. So changes in the preamble appy to both documents.
Just specific settings, such as greek or english option for babel, need to go to the specific document.
Stefan
Bilingual documents
With theTolaso wrote:Interesting. Care to expand a bit?Johannes_B wrote:You could also write one master document and split the output using conditionals.
etoolbox
package : http://latex.org/forum/viewtopic.php?f=44&t=30024- Stefan Kottwitz
- Site Admin
- Posts: 10320
- Joined: Mon Mar 10, 2008 9:44 pm
Bilingual documents
Here is a solution, in a nearly 10 years old thread of LaTeX.org. 
http://latex.org/forum/viewtopic.php?f=5&t=5286&start=0
Another way, using the
comment package:
Stefan

http://latex.org/forum/viewtopic.php?f=5&t=5286&start=0
Another way, using the

Code: Select all
\documentclass{...}
\usepackage{comment}
\includecomment{English}
\excludecomment{Greek}% or the other way round, last 2 commands
\begin{document}
\begin{English}
...
\end{English}
\begin{Greek}
...
\end{Greek}
\end{document}
LaTeX.org admin
Bilingual documents
Hi Stefan,
this produces two files or a single one? Just checking before giving it a try live on my documents!
this produces two files or a single one? Just checking before giving it a try live on my documents!
