Document Classes ⇒ Write different languages on the same page
Write different languages on the same page
How can I write in different languages (Arabic and french) on the same page ?
thanks
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Write different languages on the same page
welcome to the forum!
Sure, simply write it on the same page. Or was there any issue? If yes, let us know, with a code example.
Regarding language and hyphenation, you can
Code: Select all
\documentclass{article}
\usepackage[french,arabic]{babel}
\begin{document}
\begin{otherlanguage}{french}
french text
\end{otherlanguage}
arabic text
\end{document}
Stefan
different languages on the same page!
to write in arabic we must change the language
when I compile to pdf i have this error message
" \documentclass{
article}
The document may only declare one class."
thanks.
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Write different languages on the same page
\documentclass
only one time. That's the very basic setup of a document, only done one time. If you use a template (that uses \documentclass
) you cannot change it later. You may post your document code here, to check, if you like.Stefan