Creating a document with mixed 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}
usepackage[utf8]{inputenc}
usepackage[english, hebrew]{babel}
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}
usepackage[utf8]{inputenc}
usepackage[english, hebrew]{babel}
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
1 hour ago
I'll post a working example later.
– Davislor
1 hour 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}
usepackage[utf8]{inputenc}
usepackage[english, hebrew]{babel}
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}
usepackage[utf8]{inputenc}
usepackage[english, hebrew]{babel}
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
asked 3 hours ago
ZurielZuriel
239129
239129
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
1 hour ago
I'll post a working example later.
– Davislor
1 hour 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
1 hour ago
I'll post a working example later.
– Davislor
1 hour 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
1 hour 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
1 hour ago
I'll post a working example later.
– Davislor
1 hour ago
I'll post a working example later.
– Davislor
1 hour 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 Type 1 fonts in the 8-bit LHE encoding. 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.
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.
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.
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 Type 1 fonts in the 8-bit LHE encoding. 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.
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.
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.
add a comment |
The [hebrew]
package option of babel
does not really work any more. It tries to load a set of legacy Type 1 fonts in the 8-bit LHE encoding. 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.
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.
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.
add a comment |
The [hebrew]
package option of babel
does not really work any more. It tries to load a set of legacy Type 1 fonts in the 8-bit LHE encoding. 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.
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.
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 Type 1 fonts in the 8-bit LHE encoding. 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.
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.
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 17 mins ago
answered 27 mins ago
DavislorDavislor
7,1791432
7,1791432
add a comment |
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
1 hour ago
I'll post a working example later.
– Davislor
1 hour ago