Trying to use “~” to generate tilde symbol in math mode
$$ = sum_{e in A} w(e)
= sum_{e in A} w(e)+ sum_{e in {(r,v)| v in V(G)}} w(e)
= w( ~{A} ) $$
I get the following error message:
Error: Please use mathaccent for accents in math mode for the following code
I'm not sure what's wrong with it. I'm in math mode by using $$ $$
, am I not?
math-mode accents
add a comment |
$$ = sum_{e in A} w(e)
= sum_{e in A} w(e)+ sum_{e in {(r,v)| v in V(G)}} w(e)
= w( ~{A} ) $$
I get the following error message:
Error: Please use mathaccent for accents in math mode for the following code
I'm not sure what's wrong with it. I'm in math mode by using $$ $$
, am I not?
math-mode accents
Welcome to TeX.SE!
– Mico
Dec 7 '15 at 10:59
2
Are you using Plain TeX or LaTeX?
– egreg
Dec 7 '15 at 12:59
add a comment |
$$ = sum_{e in A} w(e)
= sum_{e in A} w(e)+ sum_{e in {(r,v)| v in V(G)}} w(e)
= w( ~{A} ) $$
I get the following error message:
Error: Please use mathaccent for accents in math mode for the following code
I'm not sure what's wrong with it. I'm in math mode by using $$ $$
, am I not?
math-mode accents
$$ = sum_{e in A} w(e)
= sum_{e in A} w(e)+ sum_{e in {(r,v)| v in V(G)}} w(e)
= w( ~{A} ) $$
I get the following error message:
Error: Please use mathaccent for accents in math mode for the following code
I'm not sure what's wrong with it. I'm in math mode by using $$ $$
, am I not?
math-mode accents
math-mode accents
edited Jan 23 '18 at 0:47
Mico
285k31388778
285k31388778
asked Dec 7 '15 at 4:32
ChristinChristin
78115
78115
Welcome to TeX.SE!
– Mico
Dec 7 '15 at 10:59
2
Are you using Plain TeX or LaTeX?
– egreg
Dec 7 '15 at 12:59
add a comment |
Welcome to TeX.SE!
– Mico
Dec 7 '15 at 10:59
2
Are you using Plain TeX or LaTeX?
– egreg
Dec 7 '15 at 12:59
Welcome to TeX.SE!
– Mico
Dec 7 '15 at 10:59
Welcome to TeX.SE!
– Mico
Dec 7 '15 at 10:59
2
2
Are you using Plain TeX or LaTeX?
– egreg
Dec 7 '15 at 12:59
Are you using Plain TeX or LaTeX?
– egreg
Dec 7 '15 at 12:59
add a comment |
4 Answers
4
active
oldest
votes
The immediate problem is solved by replacing the text-mode instruction ~{A}
with the math-mode directive tilde{A}
.
In addition, you may want to make the equation both more compact and more readable by (a) introducing a line break in the material set below the third sum
symbol (via a substack
instruction) and (b) eliminating the whitespace that's otherwise inserted to the left and right of that summation symbol (via a mathclap
instruction).
Addendum: For completeness/reference, here's a list of common accents and how they should be produced in text and math mode, respectively. Note that the positions and, in the case of text-upright versus text-italic font shapes, even the shapes of the accents can differ between text and math modes. In math mode, the shapes of the math-accent characters are the same regardless of whether mathrm
("math roman") or mathit
("math italics" -- the default) is in effect.
documentclass{article}
usepackage{mathtools} % for "mathclap" macro; loads "amsmath" package
begin{document}
[
= sum_{e in A} w(e)
= sum_{e in A} w(e) +
sum_{mathclap{substack{e in {(r,v)} \ text{s.t.}, v in V(G)}}} w(e)
= w(tilde{A})
]
end{document}
documentclass{article}
usepackage[T1]{fontenc}
usepackage{booktabs,array,lmodern}
newcolumntype{C}{>{$}c<{$}} % automatic-math version of "c" column type
begin{document}
noindent
begin{tabular}{@{} l cc>{itshape}c lCC @{}}
toprule
Accent name & multicolumn{3}{c}{Text mode}
& multicolumn{3}{c@{}}{Math mode} \
cmidrule(lr){2-4} cmidrule(l){5-7}
& how to & multicolumn{2}{c}{result}
& how to & multicolumn{2}{c@{}}{result} \
midrule
acute & verb|'| & 'A & 'A & verb|acute| & acute{mathrm{A}} & acute{A} \
grave & verb|`| & `A & `A & verb|grave| & grave{mathrm{A}} & grave{A} \
circumflex & verb|^| & ^A & ^A & verb|hat| & hat{mathrm{A}} & hat{A} \
squiggle, tilde & verb|~| & ~A & ~A & verb|tilde| & tilde{mathrm{A}} & tilde{A} \
macron, bar & verb|=| & =A & =A & verb|bar| & bar{mathrm{A}} & bar{A} \
dot accent & verb|.| & .A & .A & verb|dot| & dot{mathrm{A}} & dot{A} \
diereris (Umlaut) & verb|"| & "A & "A & verb|ddot| & ddot{mathrm{A}} & ddot{A} \
bottomrule
end{tabular}
end{document}
Thank you for the answer. It's very helpful. May I ask a separate question about Tex code you give for the table? What does @{} do? How do you align "Math Mode" with second "How to"?
– Christin
Sep 15 '16 at 23:07
@Christin - The@{}
directives serve to suppress the vertical whitespace (in the amount oftabcolsep
) that would otherwise be inserted at the left-hand and right-hand edges of thetabular
environment. To left-align the "Math mode" header with the right-hand "how to" header, changemulticolumn{2}{c@{}}{Math mode}
tomulticolumn{2}{l@{}}{Math mode}
.
– Mico
Sep 16 '16 at 0:33
add a comment |
Text accents and math accents have different syntax in LaTeX: to get Ã, you would use ~{A}
in textmode, but tilde A
or widetilde A
(the latter for a wider version) in mathmode.
Here is a table showing how to get different kinds of accents in textmode and mathmode.
Thus, your corrected code is
= sum_{e in A} w(e) = sum_{e in A} w(e)+ sum_{e in {(r,v)| v in V(G)}} w(e) = w( tilde A )
While you're at it, you should also replace|
withmid
. The spacing around the two symbols is quite different.
– Mico
Dec 7 '15 at 6:16
Or use a better construction for set syntax.mid
is not the proper symbol to use in general as it cannot be scaled (when needed). But useful as a one of.
– daleif
Dec 7 '15 at 6:26
@daleif: a bar in the middle is the way I generally denote set syntax in writing, and I try to keep that notation in LaTeX. What would I use to make it scale when needed?
– Arun Debray
Dec 7 '15 at 16:55
1
These days I tend to use this construction: tex.stackexchange.com/a/150516/3929, the idea behind it is (1) if I choose to use a bar syntax, I'd like it to be scalable along with the braces. (2) the spacing should be fully configurable from the preamble, not something that is manually inserted each time. (3) the input syntax should not be dependent on the choice for "given" symbol (here a bar), the syntax should make sense no matter the output symbol. (4) I want to get the scaller macros out of the way. In this construction "*" means autoscalling, and[big]
us manually scaled.
– daleif
Dec 7 '15 at 18:39
add a comment |
I solved the issue by replacing ~{A}
with tilde{A}
.
3
Your answer has already been provided by Mico, hasn't it?
– Stefan Pinnow
Jul 12 '16 at 10:13
add a comment |
Just use the package lmodern
.
documentclass{article}
usepackage{amsmath,amssymb}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{verbatim}
usepackage{lmodern}
begin{document}
$$ y = w( ~{A} ) $$
You can also disregard the use of verb=~{A}= and use à directly, like the example below:
$$ y = w( Ã ) $$
end{document}
New contributor
Welcome to TeX.SE! That is already mentioned in the answer of @mico, I guess?
– Kurt
14 hours ago
You getLaTeX Warning: Command ~ invalid in math mode
and moreover the A is not in math italic. Is it so difficult to usetilde{A}
, which is the proper markup?
– egreg
13 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%2f281881%2ftrying-to-use-to-generate-tilde-symbol-in-math-mode%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
The immediate problem is solved by replacing the text-mode instruction ~{A}
with the math-mode directive tilde{A}
.
In addition, you may want to make the equation both more compact and more readable by (a) introducing a line break in the material set below the third sum
symbol (via a substack
instruction) and (b) eliminating the whitespace that's otherwise inserted to the left and right of that summation symbol (via a mathclap
instruction).
Addendum: For completeness/reference, here's a list of common accents and how they should be produced in text and math mode, respectively. Note that the positions and, in the case of text-upright versus text-italic font shapes, even the shapes of the accents can differ between text and math modes. In math mode, the shapes of the math-accent characters are the same regardless of whether mathrm
("math roman") or mathit
("math italics" -- the default) is in effect.
documentclass{article}
usepackage{mathtools} % for "mathclap" macro; loads "amsmath" package
begin{document}
[
= sum_{e in A} w(e)
= sum_{e in A} w(e) +
sum_{mathclap{substack{e in {(r,v)} \ text{s.t.}, v in V(G)}}} w(e)
= w(tilde{A})
]
end{document}
documentclass{article}
usepackage[T1]{fontenc}
usepackage{booktabs,array,lmodern}
newcolumntype{C}{>{$}c<{$}} % automatic-math version of "c" column type
begin{document}
noindent
begin{tabular}{@{} l cc>{itshape}c lCC @{}}
toprule
Accent name & multicolumn{3}{c}{Text mode}
& multicolumn{3}{c@{}}{Math mode} \
cmidrule(lr){2-4} cmidrule(l){5-7}
& how to & multicolumn{2}{c}{result}
& how to & multicolumn{2}{c@{}}{result} \
midrule
acute & verb|'| & 'A & 'A & verb|acute| & acute{mathrm{A}} & acute{A} \
grave & verb|`| & `A & `A & verb|grave| & grave{mathrm{A}} & grave{A} \
circumflex & verb|^| & ^A & ^A & verb|hat| & hat{mathrm{A}} & hat{A} \
squiggle, tilde & verb|~| & ~A & ~A & verb|tilde| & tilde{mathrm{A}} & tilde{A} \
macron, bar & verb|=| & =A & =A & verb|bar| & bar{mathrm{A}} & bar{A} \
dot accent & verb|.| & .A & .A & verb|dot| & dot{mathrm{A}} & dot{A} \
diereris (Umlaut) & verb|"| & "A & "A & verb|ddot| & ddot{mathrm{A}} & ddot{A} \
bottomrule
end{tabular}
end{document}
Thank you for the answer. It's very helpful. May I ask a separate question about Tex code you give for the table? What does @{} do? How do you align "Math Mode" with second "How to"?
– Christin
Sep 15 '16 at 23:07
@Christin - The@{}
directives serve to suppress the vertical whitespace (in the amount oftabcolsep
) that would otherwise be inserted at the left-hand and right-hand edges of thetabular
environment. To left-align the "Math mode" header with the right-hand "how to" header, changemulticolumn{2}{c@{}}{Math mode}
tomulticolumn{2}{l@{}}{Math mode}
.
– Mico
Sep 16 '16 at 0:33
add a comment |
The immediate problem is solved by replacing the text-mode instruction ~{A}
with the math-mode directive tilde{A}
.
In addition, you may want to make the equation both more compact and more readable by (a) introducing a line break in the material set below the third sum
symbol (via a substack
instruction) and (b) eliminating the whitespace that's otherwise inserted to the left and right of that summation symbol (via a mathclap
instruction).
Addendum: For completeness/reference, here's a list of common accents and how they should be produced in text and math mode, respectively. Note that the positions and, in the case of text-upright versus text-italic font shapes, even the shapes of the accents can differ between text and math modes. In math mode, the shapes of the math-accent characters are the same regardless of whether mathrm
("math roman") or mathit
("math italics" -- the default) is in effect.
documentclass{article}
usepackage{mathtools} % for "mathclap" macro; loads "amsmath" package
begin{document}
[
= sum_{e in A} w(e)
= sum_{e in A} w(e) +
sum_{mathclap{substack{e in {(r,v)} \ text{s.t.}, v in V(G)}}} w(e)
= w(tilde{A})
]
end{document}
documentclass{article}
usepackage[T1]{fontenc}
usepackage{booktabs,array,lmodern}
newcolumntype{C}{>{$}c<{$}} % automatic-math version of "c" column type
begin{document}
noindent
begin{tabular}{@{} l cc>{itshape}c lCC @{}}
toprule
Accent name & multicolumn{3}{c}{Text mode}
& multicolumn{3}{c@{}}{Math mode} \
cmidrule(lr){2-4} cmidrule(l){5-7}
& how to & multicolumn{2}{c}{result}
& how to & multicolumn{2}{c@{}}{result} \
midrule
acute & verb|'| & 'A & 'A & verb|acute| & acute{mathrm{A}} & acute{A} \
grave & verb|`| & `A & `A & verb|grave| & grave{mathrm{A}} & grave{A} \
circumflex & verb|^| & ^A & ^A & verb|hat| & hat{mathrm{A}} & hat{A} \
squiggle, tilde & verb|~| & ~A & ~A & verb|tilde| & tilde{mathrm{A}} & tilde{A} \
macron, bar & verb|=| & =A & =A & verb|bar| & bar{mathrm{A}} & bar{A} \
dot accent & verb|.| & .A & .A & verb|dot| & dot{mathrm{A}} & dot{A} \
diereris (Umlaut) & verb|"| & "A & "A & verb|ddot| & ddot{mathrm{A}} & ddot{A} \
bottomrule
end{tabular}
end{document}
Thank you for the answer. It's very helpful. May I ask a separate question about Tex code you give for the table? What does @{} do? How do you align "Math Mode" with second "How to"?
– Christin
Sep 15 '16 at 23:07
@Christin - The@{}
directives serve to suppress the vertical whitespace (in the amount oftabcolsep
) that would otherwise be inserted at the left-hand and right-hand edges of thetabular
environment. To left-align the "Math mode" header with the right-hand "how to" header, changemulticolumn{2}{c@{}}{Math mode}
tomulticolumn{2}{l@{}}{Math mode}
.
– Mico
Sep 16 '16 at 0:33
add a comment |
The immediate problem is solved by replacing the text-mode instruction ~{A}
with the math-mode directive tilde{A}
.
In addition, you may want to make the equation both more compact and more readable by (a) introducing a line break in the material set below the third sum
symbol (via a substack
instruction) and (b) eliminating the whitespace that's otherwise inserted to the left and right of that summation symbol (via a mathclap
instruction).
Addendum: For completeness/reference, here's a list of common accents and how they should be produced in text and math mode, respectively. Note that the positions and, in the case of text-upright versus text-italic font shapes, even the shapes of the accents can differ between text and math modes. In math mode, the shapes of the math-accent characters are the same regardless of whether mathrm
("math roman") or mathit
("math italics" -- the default) is in effect.
documentclass{article}
usepackage{mathtools} % for "mathclap" macro; loads "amsmath" package
begin{document}
[
= sum_{e in A} w(e)
= sum_{e in A} w(e) +
sum_{mathclap{substack{e in {(r,v)} \ text{s.t.}, v in V(G)}}} w(e)
= w(tilde{A})
]
end{document}
documentclass{article}
usepackage[T1]{fontenc}
usepackage{booktabs,array,lmodern}
newcolumntype{C}{>{$}c<{$}} % automatic-math version of "c" column type
begin{document}
noindent
begin{tabular}{@{} l cc>{itshape}c lCC @{}}
toprule
Accent name & multicolumn{3}{c}{Text mode}
& multicolumn{3}{c@{}}{Math mode} \
cmidrule(lr){2-4} cmidrule(l){5-7}
& how to & multicolumn{2}{c}{result}
& how to & multicolumn{2}{c@{}}{result} \
midrule
acute & verb|'| & 'A & 'A & verb|acute| & acute{mathrm{A}} & acute{A} \
grave & verb|`| & `A & `A & verb|grave| & grave{mathrm{A}} & grave{A} \
circumflex & verb|^| & ^A & ^A & verb|hat| & hat{mathrm{A}} & hat{A} \
squiggle, tilde & verb|~| & ~A & ~A & verb|tilde| & tilde{mathrm{A}} & tilde{A} \
macron, bar & verb|=| & =A & =A & verb|bar| & bar{mathrm{A}} & bar{A} \
dot accent & verb|.| & .A & .A & verb|dot| & dot{mathrm{A}} & dot{A} \
diereris (Umlaut) & verb|"| & "A & "A & verb|ddot| & ddot{mathrm{A}} & ddot{A} \
bottomrule
end{tabular}
end{document}
The immediate problem is solved by replacing the text-mode instruction ~{A}
with the math-mode directive tilde{A}
.
In addition, you may want to make the equation both more compact and more readable by (a) introducing a line break in the material set below the third sum
symbol (via a substack
instruction) and (b) eliminating the whitespace that's otherwise inserted to the left and right of that summation symbol (via a mathclap
instruction).
Addendum: For completeness/reference, here's a list of common accents and how they should be produced in text and math mode, respectively. Note that the positions and, in the case of text-upright versus text-italic font shapes, even the shapes of the accents can differ between text and math modes. In math mode, the shapes of the math-accent characters are the same regardless of whether mathrm
("math roman") or mathit
("math italics" -- the default) is in effect.
documentclass{article}
usepackage{mathtools} % for "mathclap" macro; loads "amsmath" package
begin{document}
[
= sum_{e in A} w(e)
= sum_{e in A} w(e) +
sum_{mathclap{substack{e in {(r,v)} \ text{s.t.}, v in V(G)}}} w(e)
= w(tilde{A})
]
end{document}
documentclass{article}
usepackage[T1]{fontenc}
usepackage{booktabs,array,lmodern}
newcolumntype{C}{>{$}c<{$}} % automatic-math version of "c" column type
begin{document}
noindent
begin{tabular}{@{} l cc>{itshape}c lCC @{}}
toprule
Accent name & multicolumn{3}{c}{Text mode}
& multicolumn{3}{c@{}}{Math mode} \
cmidrule(lr){2-4} cmidrule(l){5-7}
& how to & multicolumn{2}{c}{result}
& how to & multicolumn{2}{c@{}}{result} \
midrule
acute & verb|'| & 'A & 'A & verb|acute| & acute{mathrm{A}} & acute{A} \
grave & verb|`| & `A & `A & verb|grave| & grave{mathrm{A}} & grave{A} \
circumflex & verb|^| & ^A & ^A & verb|hat| & hat{mathrm{A}} & hat{A} \
squiggle, tilde & verb|~| & ~A & ~A & verb|tilde| & tilde{mathrm{A}} & tilde{A} \
macron, bar & verb|=| & =A & =A & verb|bar| & bar{mathrm{A}} & bar{A} \
dot accent & verb|.| & .A & .A & verb|dot| & dot{mathrm{A}} & dot{A} \
diereris (Umlaut) & verb|"| & "A & "A & verb|ddot| & ddot{mathrm{A}} & ddot{A} \
bottomrule
end{tabular}
end{document}
edited Jan 23 '18 at 0:49
answered Dec 7 '15 at 6:29
MicoMico
285k31388778
285k31388778
Thank you for the answer. It's very helpful. May I ask a separate question about Tex code you give for the table? What does @{} do? How do you align "Math Mode" with second "How to"?
– Christin
Sep 15 '16 at 23:07
@Christin - The@{}
directives serve to suppress the vertical whitespace (in the amount oftabcolsep
) that would otherwise be inserted at the left-hand and right-hand edges of thetabular
environment. To left-align the "Math mode" header with the right-hand "how to" header, changemulticolumn{2}{c@{}}{Math mode}
tomulticolumn{2}{l@{}}{Math mode}
.
– Mico
Sep 16 '16 at 0:33
add a comment |
Thank you for the answer. It's very helpful. May I ask a separate question about Tex code you give for the table? What does @{} do? How do you align "Math Mode" with second "How to"?
– Christin
Sep 15 '16 at 23:07
@Christin - The@{}
directives serve to suppress the vertical whitespace (in the amount oftabcolsep
) that would otherwise be inserted at the left-hand and right-hand edges of thetabular
environment. To left-align the "Math mode" header with the right-hand "how to" header, changemulticolumn{2}{c@{}}{Math mode}
tomulticolumn{2}{l@{}}{Math mode}
.
– Mico
Sep 16 '16 at 0:33
Thank you for the answer. It's very helpful. May I ask a separate question about Tex code you give for the table? What does @{} do? How do you align "Math Mode" with second "How to"?
– Christin
Sep 15 '16 at 23:07
Thank you for the answer. It's very helpful. May I ask a separate question about Tex code you give for the table? What does @{} do? How do you align "Math Mode" with second "How to"?
– Christin
Sep 15 '16 at 23:07
@Christin - The
@{}
directives serve to suppress the vertical whitespace (in the amount of tabcolsep
) that would otherwise be inserted at the left-hand and right-hand edges of the tabular
environment. To left-align the "Math mode" header with the right-hand "how to" header, change multicolumn{2}{c@{}}{Math mode}
to multicolumn{2}{l@{}}{Math mode}
.– Mico
Sep 16 '16 at 0:33
@Christin - The
@{}
directives serve to suppress the vertical whitespace (in the amount of tabcolsep
) that would otherwise be inserted at the left-hand and right-hand edges of the tabular
environment. To left-align the "Math mode" header with the right-hand "how to" header, change multicolumn{2}{c@{}}{Math mode}
to multicolumn{2}{l@{}}{Math mode}
.– Mico
Sep 16 '16 at 0:33
add a comment |
Text accents and math accents have different syntax in LaTeX: to get Ã, you would use ~{A}
in textmode, but tilde A
or widetilde A
(the latter for a wider version) in mathmode.
Here is a table showing how to get different kinds of accents in textmode and mathmode.
Thus, your corrected code is
= sum_{e in A} w(e) = sum_{e in A} w(e)+ sum_{e in {(r,v)| v in V(G)}} w(e) = w( tilde A )
While you're at it, you should also replace|
withmid
. The spacing around the two symbols is quite different.
– Mico
Dec 7 '15 at 6:16
Or use a better construction for set syntax.mid
is not the proper symbol to use in general as it cannot be scaled (when needed). But useful as a one of.
– daleif
Dec 7 '15 at 6:26
@daleif: a bar in the middle is the way I generally denote set syntax in writing, and I try to keep that notation in LaTeX. What would I use to make it scale when needed?
– Arun Debray
Dec 7 '15 at 16:55
1
These days I tend to use this construction: tex.stackexchange.com/a/150516/3929, the idea behind it is (1) if I choose to use a bar syntax, I'd like it to be scalable along with the braces. (2) the spacing should be fully configurable from the preamble, not something that is manually inserted each time. (3) the input syntax should not be dependent on the choice for "given" symbol (here a bar), the syntax should make sense no matter the output symbol. (4) I want to get the scaller macros out of the way. In this construction "*" means autoscalling, and[big]
us manually scaled.
– daleif
Dec 7 '15 at 18:39
add a comment |
Text accents and math accents have different syntax in LaTeX: to get Ã, you would use ~{A}
in textmode, but tilde A
or widetilde A
(the latter for a wider version) in mathmode.
Here is a table showing how to get different kinds of accents in textmode and mathmode.
Thus, your corrected code is
= sum_{e in A} w(e) = sum_{e in A} w(e)+ sum_{e in {(r,v)| v in V(G)}} w(e) = w( tilde A )
While you're at it, you should also replace|
withmid
. The spacing around the two symbols is quite different.
– Mico
Dec 7 '15 at 6:16
Or use a better construction for set syntax.mid
is not the proper symbol to use in general as it cannot be scaled (when needed). But useful as a one of.
– daleif
Dec 7 '15 at 6:26
@daleif: a bar in the middle is the way I generally denote set syntax in writing, and I try to keep that notation in LaTeX. What would I use to make it scale when needed?
– Arun Debray
Dec 7 '15 at 16:55
1
These days I tend to use this construction: tex.stackexchange.com/a/150516/3929, the idea behind it is (1) if I choose to use a bar syntax, I'd like it to be scalable along with the braces. (2) the spacing should be fully configurable from the preamble, not something that is manually inserted each time. (3) the input syntax should not be dependent on the choice for "given" symbol (here a bar), the syntax should make sense no matter the output symbol. (4) I want to get the scaller macros out of the way. In this construction "*" means autoscalling, and[big]
us manually scaled.
– daleif
Dec 7 '15 at 18:39
add a comment |
Text accents and math accents have different syntax in LaTeX: to get Ã, you would use ~{A}
in textmode, but tilde A
or widetilde A
(the latter for a wider version) in mathmode.
Here is a table showing how to get different kinds of accents in textmode and mathmode.
Thus, your corrected code is
= sum_{e in A} w(e) = sum_{e in A} w(e)+ sum_{e in {(r,v)| v in V(G)}} w(e) = w( tilde A )
Text accents and math accents have different syntax in LaTeX: to get Ã, you would use ~{A}
in textmode, but tilde A
or widetilde A
(the latter for a wider version) in mathmode.
Here is a table showing how to get different kinds of accents in textmode and mathmode.
Thus, your corrected code is
= sum_{e in A} w(e) = sum_{e in A} w(e)+ sum_{e in {(r,v)| v in V(G)}} w(e) = w( tilde A )
answered Dec 7 '15 at 5:27
Arun DebrayArun Debray
5,54321945
5,54321945
While you're at it, you should also replace|
withmid
. The spacing around the two symbols is quite different.
– Mico
Dec 7 '15 at 6:16
Or use a better construction for set syntax.mid
is not the proper symbol to use in general as it cannot be scaled (when needed). But useful as a one of.
– daleif
Dec 7 '15 at 6:26
@daleif: a bar in the middle is the way I generally denote set syntax in writing, and I try to keep that notation in LaTeX. What would I use to make it scale when needed?
– Arun Debray
Dec 7 '15 at 16:55
1
These days I tend to use this construction: tex.stackexchange.com/a/150516/3929, the idea behind it is (1) if I choose to use a bar syntax, I'd like it to be scalable along with the braces. (2) the spacing should be fully configurable from the preamble, not something that is manually inserted each time. (3) the input syntax should not be dependent on the choice for "given" symbol (here a bar), the syntax should make sense no matter the output symbol. (4) I want to get the scaller macros out of the way. In this construction "*" means autoscalling, and[big]
us manually scaled.
– daleif
Dec 7 '15 at 18:39
add a comment |
While you're at it, you should also replace|
withmid
. The spacing around the two symbols is quite different.
– Mico
Dec 7 '15 at 6:16
Or use a better construction for set syntax.mid
is not the proper symbol to use in general as it cannot be scaled (when needed). But useful as a one of.
– daleif
Dec 7 '15 at 6:26
@daleif: a bar in the middle is the way I generally denote set syntax in writing, and I try to keep that notation in LaTeX. What would I use to make it scale when needed?
– Arun Debray
Dec 7 '15 at 16:55
1
These days I tend to use this construction: tex.stackexchange.com/a/150516/3929, the idea behind it is (1) if I choose to use a bar syntax, I'd like it to be scalable along with the braces. (2) the spacing should be fully configurable from the preamble, not something that is manually inserted each time. (3) the input syntax should not be dependent on the choice for "given" symbol (here a bar), the syntax should make sense no matter the output symbol. (4) I want to get the scaller macros out of the way. In this construction "*" means autoscalling, and[big]
us manually scaled.
– daleif
Dec 7 '15 at 18:39
While you're at it, you should also replace
|
with mid
. The spacing around the two symbols is quite different.– Mico
Dec 7 '15 at 6:16
While you're at it, you should also replace
|
with mid
. The spacing around the two symbols is quite different.– Mico
Dec 7 '15 at 6:16
Or use a better construction for set syntax.
mid
is not the proper symbol to use in general as it cannot be scaled (when needed). But useful as a one of.– daleif
Dec 7 '15 at 6:26
Or use a better construction for set syntax.
mid
is not the proper symbol to use in general as it cannot be scaled (when needed). But useful as a one of.– daleif
Dec 7 '15 at 6:26
@daleif: a bar in the middle is the way I generally denote set syntax in writing, and I try to keep that notation in LaTeX. What would I use to make it scale when needed?
– Arun Debray
Dec 7 '15 at 16:55
@daleif: a bar in the middle is the way I generally denote set syntax in writing, and I try to keep that notation in LaTeX. What would I use to make it scale when needed?
– Arun Debray
Dec 7 '15 at 16:55
1
1
These days I tend to use this construction: tex.stackexchange.com/a/150516/3929, the idea behind it is (1) if I choose to use a bar syntax, I'd like it to be scalable along with the braces. (2) the spacing should be fully configurable from the preamble, not something that is manually inserted each time. (3) the input syntax should not be dependent on the choice for "given" symbol (here a bar), the syntax should make sense no matter the output symbol. (4) I want to get the scaller macros out of the way. In this construction "*" means autoscalling, and
[big]
us manually scaled.– daleif
Dec 7 '15 at 18:39
These days I tend to use this construction: tex.stackexchange.com/a/150516/3929, the idea behind it is (1) if I choose to use a bar syntax, I'd like it to be scalable along with the braces. (2) the spacing should be fully configurable from the preamble, not something that is manually inserted each time. (3) the input syntax should not be dependent on the choice for "given" symbol (here a bar), the syntax should make sense no matter the output symbol. (4) I want to get the scaller macros out of the way. In this construction "*" means autoscalling, and
[big]
us manually scaled.– daleif
Dec 7 '15 at 18:39
add a comment |
I solved the issue by replacing ~{A}
with tilde{A}
.
3
Your answer has already been provided by Mico, hasn't it?
– Stefan Pinnow
Jul 12 '16 at 10:13
add a comment |
I solved the issue by replacing ~{A}
with tilde{A}
.
3
Your answer has already been provided by Mico, hasn't it?
– Stefan Pinnow
Jul 12 '16 at 10:13
add a comment |
I solved the issue by replacing ~{A}
with tilde{A}
.
I solved the issue by replacing ~{A}
with tilde{A}
.
edited Jul 12 '16 at 10:13
Stefan Pinnow
20.3k83578
20.3k83578
answered Jul 12 '16 at 8:45
marufmaruf
211
211
3
Your answer has already been provided by Mico, hasn't it?
– Stefan Pinnow
Jul 12 '16 at 10:13
add a comment |
3
Your answer has already been provided by Mico, hasn't it?
– Stefan Pinnow
Jul 12 '16 at 10:13
3
3
Your answer has already been provided by Mico, hasn't it?
– Stefan Pinnow
Jul 12 '16 at 10:13
Your answer has already been provided by Mico, hasn't it?
– Stefan Pinnow
Jul 12 '16 at 10:13
add a comment |
Just use the package lmodern
.
documentclass{article}
usepackage{amsmath,amssymb}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{verbatim}
usepackage{lmodern}
begin{document}
$$ y = w( ~{A} ) $$
You can also disregard the use of verb=~{A}= and use à directly, like the example below:
$$ y = w( Ã ) $$
end{document}
New contributor
Welcome to TeX.SE! That is already mentioned in the answer of @mico, I guess?
– Kurt
14 hours ago
You getLaTeX Warning: Command ~ invalid in math mode
and moreover the A is not in math italic. Is it so difficult to usetilde{A}
, which is the proper markup?
– egreg
13 hours ago
add a comment |
Just use the package lmodern
.
documentclass{article}
usepackage{amsmath,amssymb}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{verbatim}
usepackage{lmodern}
begin{document}
$$ y = w( ~{A} ) $$
You can also disregard the use of verb=~{A}= and use à directly, like the example below:
$$ y = w( Ã ) $$
end{document}
New contributor
Welcome to TeX.SE! That is already mentioned in the answer of @mico, I guess?
– Kurt
14 hours ago
You getLaTeX Warning: Command ~ invalid in math mode
and moreover the A is not in math italic. Is it so difficult to usetilde{A}
, which is the proper markup?
– egreg
13 hours ago
add a comment |
Just use the package lmodern
.
documentclass{article}
usepackage{amsmath,amssymb}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{verbatim}
usepackage{lmodern}
begin{document}
$$ y = w( ~{A} ) $$
You can also disregard the use of verb=~{A}= and use à directly, like the example below:
$$ y = w( Ã ) $$
end{document}
New contributor
Just use the package lmodern
.
documentclass{article}
usepackage{amsmath,amssymb}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{verbatim}
usepackage{lmodern}
begin{document}
$$ y = w( ~{A} ) $$
You can also disregard the use of verb=~{A}= and use à directly, like the example below:
$$ y = w( Ã ) $$
end{document}
New contributor
New contributor
answered 14 hours ago
Roberto de Freitas CabralRoberto de Freitas Cabral
1
1
New contributor
New contributor
Welcome to TeX.SE! That is already mentioned in the answer of @mico, I guess?
– Kurt
14 hours ago
You getLaTeX Warning: Command ~ invalid in math mode
and moreover the A is not in math italic. Is it so difficult to usetilde{A}
, which is the proper markup?
– egreg
13 hours ago
add a comment |
Welcome to TeX.SE! That is already mentioned in the answer of @mico, I guess?
– Kurt
14 hours ago
You getLaTeX Warning: Command ~ invalid in math mode
and moreover the A is not in math italic. Is it so difficult to usetilde{A}
, which is the proper markup?
– egreg
13 hours ago
Welcome to TeX.SE! That is already mentioned in the answer of @mico, I guess?
– Kurt
14 hours ago
Welcome to TeX.SE! That is already mentioned in the answer of @mico, I guess?
– Kurt
14 hours ago
You get
LaTeX Warning: Command ~ invalid in math mode
and moreover the A is not in math italic. Is it so difficult to use tilde{A}
, which is the proper markup?– egreg
13 hours ago
You get
LaTeX Warning: Command ~ invalid in math mode
and moreover the A is not in math italic. Is it so difficult to use tilde{A}
, which is the proper markup?– egreg
13 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%2f281881%2ftrying-to-use-to-generate-tilde-symbol-in-math-mode%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
Welcome to TeX.SE!
– Mico
Dec 7 '15 at 10:59
2
Are you using Plain TeX or LaTeX?
– egreg
Dec 7 '15 at 12:59