Typing Amharic inside a math equation?Write a class with language dependent stringsLeft aligning equations...
Explain the objections to these measures against human trafficking
Is there any differences between "Gucken" and "Schauen"?
How to prevent users from executing commands through browser URL
Can a person refuse a presidential pardon?
Can I become debt free or should I file for bankruptcy? How do I manage my debt and finances?
Why do neural networks need so many training examples to perform?
Why isn't there a non-conducting core wire for high-frequency coil applications
Is it a fallacy if someone claims they need an explanation for every word of your argument to the point where they don't understand common terms?
Error in a formula field
Strange Sign on Lab Door
Using only 1s, make 29 with the minimum number of digits
Is there any other number that has similar properties as 21?
Why do no American passenger airlines still operate dedicated cargo flights?
Why is working on the same position for more than 15 years not a red flag?
Word or phrase for showing great skill at something without formal training in it
Magento 2 : Call Helper Without Using __construct in Own Module
Eww, those bytes are gross
Pandas: How to group by a value in column when there is list in one of the columns
Is every normal subgroup the kernel of some self-homomorphism?
Injecting creativity into a cookbook
Do authors have to be politically correct in article-writing?
What is this metal M-shaped device for?
Why did the villain in the first Men in Black movie care about Earth's Cockroaches?
Can making a creature unable to attack, after it has been assigned as an attacker, remove it from combat?
Typing Amharic inside a math equation?
Write a class with language dependent stringsLeft aligning equations without align characterline break in math mode within longtable environmentTyping Chinese in /title TagAlgorithmic package in two different languages in same documentDo I only have english-Babel-package?How to use amsmath environment Bmatrix inside a glossary?How continue a equation next linemulti-line equation in equation environmentHow to make temporarily center-aligned math equation, when using option [fleqn] for amsmath
I want to type the following
Here is my MWE:
documentclass{article}
usepackage{ethiop,amsmath}
begin{document}
[
int_{mbox{'alamenahe}}^{mbox{'abAs}} mbox{'abAs}=mbox{'abAs}
]
end{document}
amsmath babel languages
add a comment |
I want to type the following
Here is my MWE:
documentclass{article}
usepackage{ethiop,amsmath}
begin{document}
[
int_{mbox{'alamenahe}}^{mbox{'abAs}} mbox{'abAs}=mbox{'abAs}
]
end{document}
amsmath babel languages
Very nice your answer and it is very original :-) I like it.
– Sebastiano
39 mins ago
add a comment |
I want to type the following
Here is my MWE:
documentclass{article}
usepackage{ethiop,amsmath}
begin{document}
[
int_{mbox{'alamenahe}}^{mbox{'abAs}} mbox{'abAs}=mbox{'abAs}
]
end{document}
amsmath babel languages
I want to type the following
Here is my MWE:
documentclass{article}
usepackage{ethiop,amsmath}
begin{document}
[
int_{mbox{'alamenahe}}^{mbox{'abAs}} mbox{'abAs}=mbox{'abAs}
]
end{document}
amsmath babel languages
amsmath babel languages
asked 2 hours ago
maryamarya
1,35121024
1,35121024
Very nice your answer and it is very original :-) I like it.
– Sebastiano
39 mins ago
add a comment |
Very nice your answer and it is very original :-) I like it.
– Sebastiano
39 mins ago
Very nice your answer and it is very original :-) I like it.
– Sebastiano
39 mins ago
Very nice your answer and it is very original :-) I like it.
– Sebastiano
39 mins ago
add a comment |
1 Answer
1
active
oldest
votes
The main problem is that ethiop
makes _
active. Use sb
instead in math. While ^
works, I used sp
for symmetry.
documentclass{article}
usepackage{ethiop,amsmath}
begin{document}
[
intsb{textup{'alamenahe}}sp{textup{'abAs}} textup{'abAs}=text{'abAs}
]
end{document}
Better using textup
instead of mbox
, so that the font size is reduced in subscripts and superscripts.
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%2f477271%2ftyping-amharic-inside-a-math-equation%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 main problem is that ethiop
makes _
active. Use sb
instead in math. While ^
works, I used sp
for symmetry.
documentclass{article}
usepackage{ethiop,amsmath}
begin{document}
[
intsb{textup{'alamenahe}}sp{textup{'abAs}} textup{'abAs}=text{'abAs}
]
end{document}
Better using textup
instead of mbox
, so that the font size is reduced in subscripts and superscripts.
add a comment |
The main problem is that ethiop
makes _
active. Use sb
instead in math. While ^
works, I used sp
for symmetry.
documentclass{article}
usepackage{ethiop,amsmath}
begin{document}
[
intsb{textup{'alamenahe}}sp{textup{'abAs}} textup{'abAs}=text{'abAs}
]
end{document}
Better using textup
instead of mbox
, so that the font size is reduced in subscripts and superscripts.
add a comment |
The main problem is that ethiop
makes _
active. Use sb
instead in math. While ^
works, I used sp
for symmetry.
documentclass{article}
usepackage{ethiop,amsmath}
begin{document}
[
intsb{textup{'alamenahe}}sp{textup{'abAs}} textup{'abAs}=text{'abAs}
]
end{document}
Better using textup
instead of mbox
, so that the font size is reduced in subscripts and superscripts.
The main problem is that ethiop
makes _
active. Use sb
instead in math. While ^
works, I used sp
for symmetry.
documentclass{article}
usepackage{ethiop,amsmath}
begin{document}
[
intsb{textup{'alamenahe}}sp{textup{'abAs}} textup{'abAs}=text{'abAs}
]
end{document}
Better using textup
instead of mbox
, so that the font size is reduced in subscripts and superscripts.
answered 1 hour ago
egregegreg
723k8819163219
723k8819163219
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%2f477271%2ftyping-amharic-inside-a-math-equation%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
Very nice your answer and it is very original :-) I like it.
– Sebastiano
39 mins ago