Creating a document with mixed languagesHyphenation for mixed language documentBabel + Hebrew + aeguill...
Japan - Plan around max visa duration
declaring a variable twice in IIFE
A function which translates a sentence to title-case
How long does it take to type this?
Why are 150k or 200k jobs considered good when there are 300k+ births a month?
Continuity at a point in terms of closure
A Journey Through Space and Time
Is it possible to make sharp wind that can cut stuff from afar?
Should I join office cleaning event for free?
What is the offset in a seaplane's hull?
Download, install and reboot computer at night if needed
How to get the available space of $HOME as a variable in shell scripting?
Compute hash value according to multiplication method
Why is "Reports" in sentence down without "The"
What do you call something that goes against the spirit of the law, but is legal when interpreting the law to the letter?
If Manufacturer spice model and Datasheet give different values which should I use?
Email Account under attack (really) - anything I can do?
Is it tax fraud for an individual to declare non-taxable revenue as taxable income? (US tax laws)
Why CLRS example on residual networks does not follows its formula?
DOS, create pipe for stdin/stdout of command.com(or 4dos.com) in C or Batch?
N.B. ligature in Latex
Why can't I see bouncing of a switch on an oscilloscope?
Today is the Center
Shell script can be run only with sh command
Creating a document with mixed languages
Hyphenation for mixed language documentBabel + Hebrew + aeguill incompatiblilityWrite a class with language dependent stringsProblem with multiple languages in BibTeXProblem with title languages from thesis templateAdvice for multilingual document with many languagesusepackage[english,ngerman,hebrew]{babel}: No file HE8pplx.fd. on input line <number> (with custom .cls)Creating multi-language documentWrite with two different languagesDifferent Font for different Languages (mixed in glossaries)
I am typing a document in both Chinese and Hebrew. When I use the following codes for Chinese, everything works fine:
documentclass[UTF8]{ctexart}
begin{document}
tableofcontents
begin{abstract}
这是简介及摘要。
end{abstract}
section{ 前言 }
section{关于数学部分}
数学、中英文皆可以混排。You can intersperse math, Chinese and English (Latin script) without adding extra environments.
這是繁體中文。
end{document}
But when I tried to add Hebrew by adding
usepackage[utf8x]{inputenc}
usepackage[hebrew,english]{babel}
It does not compile properly. The error message was
Font LHE/cmr/m/n/10=jerus10 at 10.0pt not loadable: Metric (TFM) file not found. select@language{hebrew}
Anyone knows how to fix the problem?
babel languages
add a comment |
I am typing a document in both Chinese and Hebrew. When I use the following codes for Chinese, everything works fine:
documentclass[UTF8]{ctexart}
begin{document}
tableofcontents
begin{abstract}
这是简介及摘要。
end{abstract}
section{ 前言 }
section{关于数学部分}
数学、中英文皆可以混排。You can intersperse math, Chinese and English (Latin script) without adding extra environments.
這是繁體中文。
end{document}
But when I tried to add Hebrew by adding
usepackage[utf8x]{inputenc}
usepackage[hebrew,english]{babel}
It does not compile properly. The error message was
Font LHE/cmr/m/n/10=jerus10 at 10.0pt not loadable: Metric (TFM) file not found. select@language{hebrew}
Anyone knows how to fix the problem?
babel languages
The problem is that, by default, babel is trying to load a legacy 8-bit font you don’t have installed. The fix is to switch to Unicode and usebabelprovide[import=he]{hebrew}
, thenbabelfont[hebrew]{rm}{David CLM}
(or another font).
– Davislor
17 hours ago
I'll post a working example later.
– Davislor
17 hours ago
add a comment |
I am typing a document in both Chinese and Hebrew. When I use the following codes for Chinese, everything works fine:
documentclass[UTF8]{ctexart}
begin{document}
tableofcontents
begin{abstract}
这是简介及摘要。
end{abstract}
section{ 前言 }
section{关于数学部分}
数学、中英文皆可以混排。You can intersperse math, Chinese and English (Latin script) without adding extra environments.
這是繁體中文。
end{document}
But when I tried to add Hebrew by adding
usepackage[utf8x]{inputenc}
usepackage[hebrew,english]{babel}
It does not compile properly. The error message was
Font LHE/cmr/m/n/10=jerus10 at 10.0pt not loadable: Metric (TFM) file not found. select@language{hebrew}
Anyone knows how to fix the problem?
babel languages
I am typing a document in both Chinese and Hebrew. When I use the following codes for Chinese, everything works fine:
documentclass[UTF8]{ctexart}
begin{document}
tableofcontents
begin{abstract}
这是简介及摘要。
end{abstract}
section{ 前言 }
section{关于数学部分}
数学、中英文皆可以混排。You can intersperse math, Chinese and English (Latin script) without adding extra environments.
這是繁體中文。
end{document}
But when I tried to add Hebrew by adding
usepackage[utf8x]{inputenc}
usepackage[hebrew,english]{babel}
It does not compile properly. The error message was
Font LHE/cmr/m/n/10=jerus10 at 10.0pt not loadable: Metric (TFM) file not found. select@language{hebrew}
Anyone knows how to fix the problem?
babel languages
babel languages
edited 10 hours ago
Zuriel
asked 19 hours ago
ZurielZuriel
264129
264129
The problem is that, by default, babel is trying to load a legacy 8-bit font you don’t have installed. The fix is to switch to Unicode and usebabelprovide[import=he]{hebrew}
, thenbabelfont[hebrew]{rm}{David CLM}
(or another font).
– Davislor
17 hours ago
I'll post a working example later.
– Davislor
17 hours ago
add a comment |
The problem is that, by default, babel is trying to load a legacy 8-bit font you don’t have installed. The fix is to switch to Unicode and usebabelprovide[import=he]{hebrew}
, thenbabelfont[hebrew]{rm}{David CLM}
(or another font).
– Davislor
17 hours ago
I'll post a working example later.
– Davislor
17 hours ago
The problem is that, by default, babel is trying to load a legacy 8-bit font you don’t have installed. The fix is to switch to Unicode and use
babelprovide[import=he]{hebrew}
, then babelfont[hebrew]{rm}{David CLM}
(or another font).– Davislor
17 hours ago
The problem is that, by default, babel is trying to load a legacy 8-bit font you don’t have installed. The fix is to switch to Unicode and use
babelprovide[import=he]{hebrew}
, then babelfont[hebrew]{rm}{David CLM}
(or another font).– Davislor
17 hours ago
I'll post a working example later.
– Davislor
17 hours ago
I'll post a working example later.
– Davislor
17 hours ago
add a comment |
1 Answer
1
active
oldest
votes
The [hebrew]
package option of babel
does not really work any more. It tries to load a set of legacy fonts in the 8-bit LHE encoding. (In this case, it is not even looking for a Type 1 font, but the Metafont source for a bitmap font.) In theory, there’s a package called ivritex floating out there that’s supposed to provide backwards compatibility for this; in practice, the maintainer says that it’s a lot simpler to switch to Unicode. Using the new toolchain also obviates all the hacks needed to make UTF-8 and Unicode fonts mostly work with an inherently 8-bit TeX engine.
The workaround is to load Hebrew with babelprovide[import=he]{hebrew}
instead. You must then pass the [bidi=default]
package option to babel
for bidirectional text to work. To change the output encoding to Unicode, you need to define a set of fonts with babelfont
.
Here’s an example. I changed the ctexart
document class to article
with babel
, and set all the fonts with babelfont
, mainly because ctex
has no English documentation. I couldn’t tell you how compatible it is with either babel
or polyglossia
. If it’s important to write in multiple languages without special markup, you could try ucharclasses
, but you might run into problems with right-to-left languages such as Hebrew or Arabic.
documentclass{article}
usepackage[paperwidth=10cm]{geometry}
usepackage[bidi=default]{babel}
usepackage{fontspec}
babelprovide[main, import=en, language=Default]{english}
babelprovide[import=he]{hebrew}
babelprovide[import]{chinese-simplified}
babelprovide[import]{chinese-traditional}
babelfont{rm}
[Scale=1.0, Ligatures={Common, TeX}]{Latin Modern Roman}
babelfont{sf}
[Scale=MatchLowercase, Ligatures={Common, TeX}]{Latin Modern Sans}
babelfont[hebrew]{rm}
[Scale=MatchLowercase, Language=Default]{David CLM}
babelfont[hebrew]{sf}
[Scale=MatchLowercase, Language=Default]{Miriam CLM}
babelfont[chinese-simplified]{rm}
[Scale=MatchLowercase]{Noto Serif CJK SC}
babelfont[chinese-simplified]{sf}
[Scale=MatchLowercase]{Noto Sans CJK SC}
babelfont[chinese-traditional]{rm}
[Scale=MatchLowercase]{Noto Serif CJK TC}
babelfont[chinese-traditional]{sf}
[Scale=MatchLowercase]{Noto Sans CJK TC}
begin{document}
tableofcontents
begin{abstract}
begin{otherlanguage}{chinese-simplified}
这是简介及摘要。
end{otherlanguage}
end{abstract}
section{foreignlanguage{chinese-simplified}{前言}}
section{foreignlanguage{chinese-simplified}{关于数学部分}}
foreignlanguage{chinese-simplified}{数学、中英文皆可以混排。} You can intersperse
math, Chinese and English (Latin script) foreignlanguage{hebrew}{או עברית}
without adding extra environments.
foreignlanguage{chinese-traditional}{這是繁體中文。}
end{document}
“Without adding extra environments” is now a blatant lie. You can make Chinese the main
language instead of English, but then you will have to localize certain strings such as the Table of Contents. The call to geometry
is solely to make the output fit within the allowed image size here.
If you’re writing documents in Chinese and Hebrew, you presumably have fonts for these languages installed on your system already, and can replace the ones I picked with them. You do not need any special TeX fonts with fontspec
; any modern system font will work. If you want to install the fonts I used in this example, you should do so from one of the following sources, in order. A: an operating-system package, such as fonts-noto-cjk
and culmus
on Ubuntu; B: a CTAN package, such as notoCJKsc
; C: from the Culmus project and the Noto CJK homepage.
This compiles with XeLaTeX, requires Babel 3.27 or later, and is written to work around the bug that babelfont
in 3.27 ignores default font features. There’s already a patch to fix this.
Thanks for your answer! My problem is, Package babel Error: You haven't specified a language option. ...ry to proceed from here, type x to quit.} Do you happen to know any fix to this?
– Zuriel
10 hours ago
@Zuriel Upgrade tobabel
3.27.
– Davislor
9 hours ago
@Zuriel If you absolutely can’t, you could try, as a workaround,usepackage[bidi, english]{babel}
and commenting out the line%babelprovides[main, import=en]{english}
. But you want to run an recent TeX engine, or you’ll get a lot of problems we can’t help you with.
– Davislor
9 hours ago
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f483605%2fcreating-a-document-with-mixed-languages%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The [hebrew]
package option of babel
does not really work any more. It tries to load a set of legacy fonts in the 8-bit LHE encoding. (In this case, it is not even looking for a Type 1 font, but the Metafont source for a bitmap font.) In theory, there’s a package called ivritex floating out there that’s supposed to provide backwards compatibility for this; in practice, the maintainer says that it’s a lot simpler to switch to Unicode. Using the new toolchain also obviates all the hacks needed to make UTF-8 and Unicode fonts mostly work with an inherently 8-bit TeX engine.
The workaround is to load Hebrew with babelprovide[import=he]{hebrew}
instead. You must then pass the [bidi=default]
package option to babel
for bidirectional text to work. To change the output encoding to Unicode, you need to define a set of fonts with babelfont
.
Here’s an example. I changed the ctexart
document class to article
with babel
, and set all the fonts with babelfont
, mainly because ctex
has no English documentation. I couldn’t tell you how compatible it is with either babel
or polyglossia
. If it’s important to write in multiple languages without special markup, you could try ucharclasses
, but you might run into problems with right-to-left languages such as Hebrew or Arabic.
documentclass{article}
usepackage[paperwidth=10cm]{geometry}
usepackage[bidi=default]{babel}
usepackage{fontspec}
babelprovide[main, import=en, language=Default]{english}
babelprovide[import=he]{hebrew}
babelprovide[import]{chinese-simplified}
babelprovide[import]{chinese-traditional}
babelfont{rm}
[Scale=1.0, Ligatures={Common, TeX}]{Latin Modern Roman}
babelfont{sf}
[Scale=MatchLowercase, Ligatures={Common, TeX}]{Latin Modern Sans}
babelfont[hebrew]{rm}
[Scale=MatchLowercase, Language=Default]{David CLM}
babelfont[hebrew]{sf}
[Scale=MatchLowercase, Language=Default]{Miriam CLM}
babelfont[chinese-simplified]{rm}
[Scale=MatchLowercase]{Noto Serif CJK SC}
babelfont[chinese-simplified]{sf}
[Scale=MatchLowercase]{Noto Sans CJK SC}
babelfont[chinese-traditional]{rm}
[Scale=MatchLowercase]{Noto Serif CJK TC}
babelfont[chinese-traditional]{sf}
[Scale=MatchLowercase]{Noto Sans CJK TC}
begin{document}
tableofcontents
begin{abstract}
begin{otherlanguage}{chinese-simplified}
这是简介及摘要。
end{otherlanguage}
end{abstract}
section{foreignlanguage{chinese-simplified}{前言}}
section{foreignlanguage{chinese-simplified}{关于数学部分}}
foreignlanguage{chinese-simplified}{数学、中英文皆可以混排。} You can intersperse
math, Chinese and English (Latin script) foreignlanguage{hebrew}{או עברית}
without adding extra environments.
foreignlanguage{chinese-traditional}{這是繁體中文。}
end{document}
“Without adding extra environments” is now a blatant lie. You can make Chinese the main
language instead of English, but then you will have to localize certain strings such as the Table of Contents. The call to geometry
is solely to make the output fit within the allowed image size here.
If you’re writing documents in Chinese and Hebrew, you presumably have fonts for these languages installed on your system already, and can replace the ones I picked with them. You do not need any special TeX fonts with fontspec
; any modern system font will work. If you want to install the fonts I used in this example, you should do so from one of the following sources, in order. A: an operating-system package, such as fonts-noto-cjk
and culmus
on Ubuntu; B: a CTAN package, such as notoCJKsc
; C: from the Culmus project and the Noto CJK homepage.
This compiles with XeLaTeX, requires Babel 3.27 or later, and is written to work around the bug that babelfont
in 3.27 ignores default font features. There’s already a patch to fix this.
Thanks for your answer! My problem is, Package babel Error: You haven't specified a language option. ...ry to proceed from here, type x to quit.} Do you happen to know any fix to this?
– Zuriel
10 hours ago
@Zuriel Upgrade tobabel
3.27.
– Davislor
9 hours ago
@Zuriel If you absolutely can’t, you could try, as a workaround,usepackage[bidi, english]{babel}
and commenting out the line%babelprovides[main, import=en]{english}
. But you want to run an recent TeX engine, or you’ll get a lot of problems we can’t help you with.
– Davislor
9 hours ago
add a comment |
The [hebrew]
package option of babel
does not really work any more. It tries to load a set of legacy fonts in the 8-bit LHE encoding. (In this case, it is not even looking for a Type 1 font, but the Metafont source for a bitmap font.) In theory, there’s a package called ivritex floating out there that’s supposed to provide backwards compatibility for this; in practice, the maintainer says that it’s a lot simpler to switch to Unicode. Using the new toolchain also obviates all the hacks needed to make UTF-8 and Unicode fonts mostly work with an inherently 8-bit TeX engine.
The workaround is to load Hebrew with babelprovide[import=he]{hebrew}
instead. You must then pass the [bidi=default]
package option to babel
for bidirectional text to work. To change the output encoding to Unicode, you need to define a set of fonts with babelfont
.
Here’s an example. I changed the ctexart
document class to article
with babel
, and set all the fonts with babelfont
, mainly because ctex
has no English documentation. I couldn’t tell you how compatible it is with either babel
or polyglossia
. If it’s important to write in multiple languages without special markup, you could try ucharclasses
, but you might run into problems with right-to-left languages such as Hebrew or Arabic.
documentclass{article}
usepackage[paperwidth=10cm]{geometry}
usepackage[bidi=default]{babel}
usepackage{fontspec}
babelprovide[main, import=en, language=Default]{english}
babelprovide[import=he]{hebrew}
babelprovide[import]{chinese-simplified}
babelprovide[import]{chinese-traditional}
babelfont{rm}
[Scale=1.0, Ligatures={Common, TeX}]{Latin Modern Roman}
babelfont{sf}
[Scale=MatchLowercase, Ligatures={Common, TeX}]{Latin Modern Sans}
babelfont[hebrew]{rm}
[Scale=MatchLowercase, Language=Default]{David CLM}
babelfont[hebrew]{sf}
[Scale=MatchLowercase, Language=Default]{Miriam CLM}
babelfont[chinese-simplified]{rm}
[Scale=MatchLowercase]{Noto Serif CJK SC}
babelfont[chinese-simplified]{sf}
[Scale=MatchLowercase]{Noto Sans CJK SC}
babelfont[chinese-traditional]{rm}
[Scale=MatchLowercase]{Noto Serif CJK TC}
babelfont[chinese-traditional]{sf}
[Scale=MatchLowercase]{Noto Sans CJK TC}
begin{document}
tableofcontents
begin{abstract}
begin{otherlanguage}{chinese-simplified}
这是简介及摘要。
end{otherlanguage}
end{abstract}
section{foreignlanguage{chinese-simplified}{前言}}
section{foreignlanguage{chinese-simplified}{关于数学部分}}
foreignlanguage{chinese-simplified}{数学、中英文皆可以混排。} You can intersperse
math, Chinese and English (Latin script) foreignlanguage{hebrew}{או עברית}
without adding extra environments.
foreignlanguage{chinese-traditional}{這是繁體中文。}
end{document}
“Without adding extra environments” is now a blatant lie. You can make Chinese the main
language instead of English, but then you will have to localize certain strings such as the Table of Contents. The call to geometry
is solely to make the output fit within the allowed image size here.
If you’re writing documents in Chinese and Hebrew, you presumably have fonts for these languages installed on your system already, and can replace the ones I picked with them. You do not need any special TeX fonts with fontspec
; any modern system font will work. If you want to install the fonts I used in this example, you should do so from one of the following sources, in order. A: an operating-system package, such as fonts-noto-cjk
and culmus
on Ubuntu; B: a CTAN package, such as notoCJKsc
; C: from the Culmus project and the Noto CJK homepage.
This compiles with XeLaTeX, requires Babel 3.27 or later, and is written to work around the bug that babelfont
in 3.27 ignores default font features. There’s already a patch to fix this.
Thanks for your answer! My problem is, Package babel Error: You haven't specified a language option. ...ry to proceed from here, type x to quit.} Do you happen to know any fix to this?
– Zuriel
10 hours ago
@Zuriel Upgrade tobabel
3.27.
– Davislor
9 hours ago
@Zuriel If you absolutely can’t, you could try, as a workaround,usepackage[bidi, english]{babel}
and commenting out the line%babelprovides[main, import=en]{english}
. But you want to run an recent TeX engine, or you’ll get a lot of problems we can’t help you with.
– Davislor
9 hours ago
add a comment |
The [hebrew]
package option of babel
does not really work any more. It tries to load a set of legacy fonts in the 8-bit LHE encoding. (In this case, it is not even looking for a Type 1 font, but the Metafont source for a bitmap font.) In theory, there’s a package called ivritex floating out there that’s supposed to provide backwards compatibility for this; in practice, the maintainer says that it’s a lot simpler to switch to Unicode. Using the new toolchain also obviates all the hacks needed to make UTF-8 and Unicode fonts mostly work with an inherently 8-bit TeX engine.
The workaround is to load Hebrew with babelprovide[import=he]{hebrew}
instead. You must then pass the [bidi=default]
package option to babel
for bidirectional text to work. To change the output encoding to Unicode, you need to define a set of fonts with babelfont
.
Here’s an example. I changed the ctexart
document class to article
with babel
, and set all the fonts with babelfont
, mainly because ctex
has no English documentation. I couldn’t tell you how compatible it is with either babel
or polyglossia
. If it’s important to write in multiple languages without special markup, you could try ucharclasses
, but you might run into problems with right-to-left languages such as Hebrew or Arabic.
documentclass{article}
usepackage[paperwidth=10cm]{geometry}
usepackage[bidi=default]{babel}
usepackage{fontspec}
babelprovide[main, import=en, language=Default]{english}
babelprovide[import=he]{hebrew}
babelprovide[import]{chinese-simplified}
babelprovide[import]{chinese-traditional}
babelfont{rm}
[Scale=1.0, Ligatures={Common, TeX}]{Latin Modern Roman}
babelfont{sf}
[Scale=MatchLowercase, Ligatures={Common, TeX}]{Latin Modern Sans}
babelfont[hebrew]{rm}
[Scale=MatchLowercase, Language=Default]{David CLM}
babelfont[hebrew]{sf}
[Scale=MatchLowercase, Language=Default]{Miriam CLM}
babelfont[chinese-simplified]{rm}
[Scale=MatchLowercase]{Noto Serif CJK SC}
babelfont[chinese-simplified]{sf}
[Scale=MatchLowercase]{Noto Sans CJK SC}
babelfont[chinese-traditional]{rm}
[Scale=MatchLowercase]{Noto Serif CJK TC}
babelfont[chinese-traditional]{sf}
[Scale=MatchLowercase]{Noto Sans CJK TC}
begin{document}
tableofcontents
begin{abstract}
begin{otherlanguage}{chinese-simplified}
这是简介及摘要。
end{otherlanguage}
end{abstract}
section{foreignlanguage{chinese-simplified}{前言}}
section{foreignlanguage{chinese-simplified}{关于数学部分}}
foreignlanguage{chinese-simplified}{数学、中英文皆可以混排。} You can intersperse
math, Chinese and English (Latin script) foreignlanguage{hebrew}{או עברית}
without adding extra environments.
foreignlanguage{chinese-traditional}{這是繁體中文。}
end{document}
“Without adding extra environments” is now a blatant lie. You can make Chinese the main
language instead of English, but then you will have to localize certain strings such as the Table of Contents. The call to geometry
is solely to make the output fit within the allowed image size here.
If you’re writing documents in Chinese and Hebrew, you presumably have fonts for these languages installed on your system already, and can replace the ones I picked with them. You do not need any special TeX fonts with fontspec
; any modern system font will work. If you want to install the fonts I used in this example, you should do so from one of the following sources, in order. A: an operating-system package, such as fonts-noto-cjk
and culmus
on Ubuntu; B: a CTAN package, such as notoCJKsc
; C: from the Culmus project and the Noto CJK homepage.
This compiles with XeLaTeX, requires Babel 3.27 or later, and is written to work around the bug that babelfont
in 3.27 ignores default font features. There’s already a patch to fix this.
The [hebrew]
package option of babel
does not really work any more. It tries to load a set of legacy fonts in the 8-bit LHE encoding. (In this case, it is not even looking for a Type 1 font, but the Metafont source for a bitmap font.) In theory, there’s a package called ivritex floating out there that’s supposed to provide backwards compatibility for this; in practice, the maintainer says that it’s a lot simpler to switch to Unicode. Using the new toolchain also obviates all the hacks needed to make UTF-8 and Unicode fonts mostly work with an inherently 8-bit TeX engine.
The workaround is to load Hebrew with babelprovide[import=he]{hebrew}
instead. You must then pass the [bidi=default]
package option to babel
for bidirectional text to work. To change the output encoding to Unicode, you need to define a set of fonts with babelfont
.
Here’s an example. I changed the ctexart
document class to article
with babel
, and set all the fonts with babelfont
, mainly because ctex
has no English documentation. I couldn’t tell you how compatible it is with either babel
or polyglossia
. If it’s important to write in multiple languages without special markup, you could try ucharclasses
, but you might run into problems with right-to-left languages such as Hebrew or Arabic.
documentclass{article}
usepackage[paperwidth=10cm]{geometry}
usepackage[bidi=default]{babel}
usepackage{fontspec}
babelprovide[main, import=en, language=Default]{english}
babelprovide[import=he]{hebrew}
babelprovide[import]{chinese-simplified}
babelprovide[import]{chinese-traditional}
babelfont{rm}
[Scale=1.0, Ligatures={Common, TeX}]{Latin Modern Roman}
babelfont{sf}
[Scale=MatchLowercase, Ligatures={Common, TeX}]{Latin Modern Sans}
babelfont[hebrew]{rm}
[Scale=MatchLowercase, Language=Default]{David CLM}
babelfont[hebrew]{sf}
[Scale=MatchLowercase, Language=Default]{Miriam CLM}
babelfont[chinese-simplified]{rm}
[Scale=MatchLowercase]{Noto Serif CJK SC}
babelfont[chinese-simplified]{sf}
[Scale=MatchLowercase]{Noto Sans CJK SC}
babelfont[chinese-traditional]{rm}
[Scale=MatchLowercase]{Noto Serif CJK TC}
babelfont[chinese-traditional]{sf}
[Scale=MatchLowercase]{Noto Sans CJK TC}
begin{document}
tableofcontents
begin{abstract}
begin{otherlanguage}{chinese-simplified}
这是简介及摘要。
end{otherlanguage}
end{abstract}
section{foreignlanguage{chinese-simplified}{前言}}
section{foreignlanguage{chinese-simplified}{关于数学部分}}
foreignlanguage{chinese-simplified}{数学、中英文皆可以混排。} You can intersperse
math, Chinese and English (Latin script) foreignlanguage{hebrew}{או עברית}
without adding extra environments.
foreignlanguage{chinese-traditional}{這是繁體中文。}
end{document}
“Without adding extra environments” is now a blatant lie. You can make Chinese the main
language instead of English, but then you will have to localize certain strings such as the Table of Contents. The call to geometry
is solely to make the output fit within the allowed image size here.
If you’re writing documents in Chinese and Hebrew, you presumably have fonts for these languages installed on your system already, and can replace the ones I picked with them. You do not need any special TeX fonts with fontspec
; any modern system font will work. If you want to install the fonts I used in this example, you should do so from one of the following sources, in order. A: an operating-system package, such as fonts-noto-cjk
and culmus
on Ubuntu; B: a CTAN package, such as notoCJKsc
; C: from the Culmus project and the Noto CJK homepage.
This compiles with XeLaTeX, requires Babel 3.27 or later, and is written to work around the bug that babelfont
in 3.27 ignores default font features. There’s already a patch to fix this.
edited 9 hours ago
answered 16 hours ago
DavislorDavislor
7,2491432
7,2491432
Thanks for your answer! My problem is, Package babel Error: You haven't specified a language option. ...ry to proceed from here, type x to quit.} Do you happen to know any fix to this?
– Zuriel
10 hours ago
@Zuriel Upgrade tobabel
3.27.
– Davislor
9 hours ago
@Zuriel If you absolutely can’t, you could try, as a workaround,usepackage[bidi, english]{babel}
and commenting out the line%babelprovides[main, import=en]{english}
. But you want to run an recent TeX engine, or you’ll get a lot of problems we can’t help you with.
– Davislor
9 hours ago
add a comment |
Thanks for your answer! My problem is, Package babel Error: You haven't specified a language option. ...ry to proceed from here, type x to quit.} Do you happen to know any fix to this?
– Zuriel
10 hours ago
@Zuriel Upgrade tobabel
3.27.
– Davislor
9 hours ago
@Zuriel If you absolutely can’t, you could try, as a workaround,usepackage[bidi, english]{babel}
and commenting out the line%babelprovides[main, import=en]{english}
. But you want to run an recent TeX engine, or you’ll get a lot of problems we can’t help you with.
– Davislor
9 hours ago
Thanks for your answer! My problem is, Package babel Error: You haven't specified a language option. ...ry to proceed from here, type x to quit.} Do you happen to know any fix to this?
– Zuriel
10 hours ago
Thanks for your answer! My problem is, Package babel Error: You haven't specified a language option. ...ry to proceed from here, type x to quit.} Do you happen to know any fix to this?
– Zuriel
10 hours ago
@Zuriel Upgrade to
babel
3.27.– Davislor
9 hours ago
@Zuriel Upgrade to
babel
3.27.– Davislor
9 hours ago
@Zuriel If you absolutely can’t, you could try, as a workaround,
usepackage[bidi, english]{babel}
and commenting out the line %babelprovides[main, import=en]{english}
. But you want to run an recent TeX engine, or you’ll get a lot of problems we can’t help you with.– Davislor
9 hours ago
@Zuriel If you absolutely can’t, you could try, as a workaround,
usepackage[bidi, english]{babel}
and commenting out the line %babelprovides[main, import=en]{english}
. But you want to run an recent TeX engine, or you’ll get a lot of problems we can’t help you with.– Davislor
9 hours ago
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f483605%2fcreating-a-document-with-mixed-languages%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
The problem is that, by default, babel is trying to load a legacy 8-bit font you don’t have installed. The fix is to switch to Unicode and use
babelprovide[import=he]{hebrew}
, thenbabelfont[hebrew]{rm}{David CLM}
(or another font).– Davislor
17 hours ago
I'll post a working example later.
– Davislor
17 hours ago