Quotations in math mode using enquote command from csquotes package
I'm using the enquote
command from the csquotes
package for setting quotes.
When I invoke quotations inside math mode,
either by hand
``<some math>''
or by enquote
enquote{<some math>}
it renders differently than in text mode.
Here's an example:
Can someone explain why this behavior occurs?
For adjusting the quotation marks by hand, I found this workaround by egreg.
How can I adjust the quotation marks invoked by enquote in math mode?
Here's a MWE, the one from above:
documentclass[preview]{standalone}
usepackage{csquotes}
begin{document}
In text mode:\
Quote by hand: ``Blub''\
Quote by enquote: enquote{Blub}
In math mode:\
Quote by hand: $``a^2+b^2=c^2''$\
Quote by enquote: $enquote{a^2+b^2=c^2}$
end{document}
math-mode quoting csquotes
add a comment |
I'm using the enquote
command from the csquotes
package for setting quotes.
When I invoke quotations inside math mode,
either by hand
``<some math>''
or by enquote
enquote{<some math>}
it renders differently than in text mode.
Here's an example:
Can someone explain why this behavior occurs?
For adjusting the quotation marks by hand, I found this workaround by egreg.
How can I adjust the quotation marks invoked by enquote in math mode?
Here's a MWE, the one from above:
documentclass[preview]{standalone}
usepackage{csquotes}
begin{document}
In text mode:\
Quote by hand: ``Blub''\
Quote by enquote: enquote{Blub}
In math mode:\
Quote by hand: $``a^2+b^2=c^2''$\
Quote by enquote: $enquote{a^2+b^2=c^2}$
end{document}
math-mode quoting csquotes
enquote{$formula$}
rather than$enquote{formula}$
, unless your quotes are part of the math. Are they?
– egreg
Dec 12 '18 at 17:29
Problem is I have it as something like$ldots enquote{ldots} ldots$
. Do you have an idea what to do?
– C-Star-Puppy
Dec 12 '18 at 17:30
add a comment |
I'm using the enquote
command from the csquotes
package for setting quotes.
When I invoke quotations inside math mode,
either by hand
``<some math>''
or by enquote
enquote{<some math>}
it renders differently than in text mode.
Here's an example:
Can someone explain why this behavior occurs?
For adjusting the quotation marks by hand, I found this workaround by egreg.
How can I adjust the quotation marks invoked by enquote in math mode?
Here's a MWE, the one from above:
documentclass[preview]{standalone}
usepackage{csquotes}
begin{document}
In text mode:\
Quote by hand: ``Blub''\
Quote by enquote: enquote{Blub}
In math mode:\
Quote by hand: $``a^2+b^2=c^2''$\
Quote by enquote: $enquote{a^2+b^2=c^2}$
end{document}
math-mode quoting csquotes
I'm using the enquote
command from the csquotes
package for setting quotes.
When I invoke quotations inside math mode,
either by hand
``<some math>''
or by enquote
enquote{<some math>}
it renders differently than in text mode.
Here's an example:
Can someone explain why this behavior occurs?
For adjusting the quotation marks by hand, I found this workaround by egreg.
How can I adjust the quotation marks invoked by enquote in math mode?
Here's a MWE, the one from above:
documentclass[preview]{standalone}
usepackage{csquotes}
begin{document}
In text mode:\
Quote by hand: ``Blub''\
Quote by enquote: enquote{Blub}
In math mode:\
Quote by hand: $``a^2+b^2=c^2''$\
Quote by enquote: $enquote{a^2+b^2=c^2}$
end{document}
math-mode quoting csquotes
math-mode quoting csquotes
asked Dec 12 '18 at 17:25
C-Star-Puppy
28219
28219
enquote{$formula$}
rather than$enquote{formula}$
, unless your quotes are part of the math. Are they?
– egreg
Dec 12 '18 at 17:29
Problem is I have it as something like$ldots enquote{ldots} ldots$
. Do you have an idea what to do?
– C-Star-Puppy
Dec 12 '18 at 17:30
add a comment |
enquote{$formula$}
rather than$enquote{formula}$
, unless your quotes are part of the math. Are they?
– egreg
Dec 12 '18 at 17:29
Problem is I have it as something like$ldots enquote{ldots} ldots$
. Do you have an idea what to do?
– C-Star-Puppy
Dec 12 '18 at 17:30
enquote{$formula$}
rather than $enquote{formula}$
, unless your quotes are part of the math. Are they?– egreg
Dec 12 '18 at 17:29
enquote{$formula$}
rather than $enquote{formula}$
, unless your quotes are part of the math. Are they?– egreg
Dec 12 '18 at 17:29
Problem is I have it as something like
$ldots enquote{ldots} ldots$
. Do you have an idea what to do?– C-Star-Puppy
Dec 12 '18 at 17:30
Problem is I have it as something like
$ldots enquote{ldots} ldots$
. Do you have an idea what to do?– C-Star-Puppy
Dec 12 '18 at 17:30
add a comment |
2 Answers
2
active
oldest
votes
LaTeX issues one error and two warnings:
! Double superscript.
<recently read> ^
l.13 Quote by hand: $``a^2+b^2=c^2'
'$
?
LaTeX Warning: Command textquotedblleft invalid in math mode on input line 15.
LaTeX Warning: Command textquotedblright invalid in math mode on input line 15
Such errors and warnings should not be disregarded; it's a perhaps sad truth that textquotedblleft
in math mode produces a backslash, whereas textquotedblright
actually produces a closing double quote.
The error is because '
in math mode is interpreted as ^{prime}
, so c^2'
indeed has a double superscript (the converse c'^2
is instead legal, as is c''^2
).
If you want to quote something in math mode, you should use math symbols.
documentclass{article}
DeclareMathSymbol{mlq}{mathord}{operators}{'134}
DeclareMathSymbol{mrq}{mathord}{operators}{'42}
begin{document}
$dotsmlqdotsmrqdots$
end{document}
Wow, true that, it issues those warnings, completely didn't notice them, thanks! (Have it running in command prompt as-interaction=batchmode
with-file-line-error
only and checking for warnings only on an ad-hoc basis.)
– C-Star-Puppy
Dec 12 '18 at 17:48
Thanks, the integration worked perfectly with your solution and definingnewcommand{mathenquote}[1]{mlq #1mrq}
. Thanks a lot!!
– C-Star-Puppy
Dec 12 '18 at 17:57
add a comment |
You have answered yourself: the quotes should be in the text mode:
documentclass[preview]{standalone}
usepackage{csquotes}
begin{document}
In text mode:\
Quote by hand: ``Blub''\
Quote by enquote: enquote{Blub}
In math mode:\
%Quote by hand: $``a^2+b^2=c^2''$\
Quote by hand: ``$a^2+b^2=c^2$''\
%Quote by enquote: $enquote{a^2+b^2=c^2}$
Quote by enquote: enquote{$a^2+b^2=c^2$}
end{document}
Problem is that I need it as something like$ldots enquote{ldots} ldots$
. Do you have an idea what to do?
– C-Star-Puppy
Dec 12 '18 at 17:33
ldots
work(s) also in the text mode. Soldots enquote{ldots} ldots
will work.
– Przemysław Scherwentke
Dec 12 '18 at 17:34
Sorry, should have written$<some formulas> enquote{<formula>} <more formulas>$
and under different circumstances like labels intikzcd
and other situations.
– C-Star-Puppy
Dec 12 '18 at 17:37
If you useamsmath
, you have a simple constructiontextenquote{$...$}}
.
– Przemysław Scherwentke
Dec 12 '18 at 17:40
Do you think i can/is it good idea for me to redefine simply then enquote as something like ensuretextmodeenquote?
– C-Star-Puppy
Dec 12 '18 at 17:41
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%2f464563%2fquotations-in-math-mode-using-enquote-command-from-csquotes-package%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
LaTeX issues one error and two warnings:
! Double superscript.
<recently read> ^
l.13 Quote by hand: $``a^2+b^2=c^2'
'$
?
LaTeX Warning: Command textquotedblleft invalid in math mode on input line 15.
LaTeX Warning: Command textquotedblright invalid in math mode on input line 15
Such errors and warnings should not be disregarded; it's a perhaps sad truth that textquotedblleft
in math mode produces a backslash, whereas textquotedblright
actually produces a closing double quote.
The error is because '
in math mode is interpreted as ^{prime}
, so c^2'
indeed has a double superscript (the converse c'^2
is instead legal, as is c''^2
).
If you want to quote something in math mode, you should use math symbols.
documentclass{article}
DeclareMathSymbol{mlq}{mathord}{operators}{'134}
DeclareMathSymbol{mrq}{mathord}{operators}{'42}
begin{document}
$dotsmlqdotsmrqdots$
end{document}
Wow, true that, it issues those warnings, completely didn't notice them, thanks! (Have it running in command prompt as-interaction=batchmode
with-file-line-error
only and checking for warnings only on an ad-hoc basis.)
– C-Star-Puppy
Dec 12 '18 at 17:48
Thanks, the integration worked perfectly with your solution and definingnewcommand{mathenquote}[1]{mlq #1mrq}
. Thanks a lot!!
– C-Star-Puppy
Dec 12 '18 at 17:57
add a comment |
LaTeX issues one error and two warnings:
! Double superscript.
<recently read> ^
l.13 Quote by hand: $``a^2+b^2=c^2'
'$
?
LaTeX Warning: Command textquotedblleft invalid in math mode on input line 15.
LaTeX Warning: Command textquotedblright invalid in math mode on input line 15
Such errors and warnings should not be disregarded; it's a perhaps sad truth that textquotedblleft
in math mode produces a backslash, whereas textquotedblright
actually produces a closing double quote.
The error is because '
in math mode is interpreted as ^{prime}
, so c^2'
indeed has a double superscript (the converse c'^2
is instead legal, as is c''^2
).
If you want to quote something in math mode, you should use math symbols.
documentclass{article}
DeclareMathSymbol{mlq}{mathord}{operators}{'134}
DeclareMathSymbol{mrq}{mathord}{operators}{'42}
begin{document}
$dotsmlqdotsmrqdots$
end{document}
Wow, true that, it issues those warnings, completely didn't notice them, thanks! (Have it running in command prompt as-interaction=batchmode
with-file-line-error
only and checking for warnings only on an ad-hoc basis.)
– C-Star-Puppy
Dec 12 '18 at 17:48
Thanks, the integration worked perfectly with your solution and definingnewcommand{mathenquote}[1]{mlq #1mrq}
. Thanks a lot!!
– C-Star-Puppy
Dec 12 '18 at 17:57
add a comment |
LaTeX issues one error and two warnings:
! Double superscript.
<recently read> ^
l.13 Quote by hand: $``a^2+b^2=c^2'
'$
?
LaTeX Warning: Command textquotedblleft invalid in math mode on input line 15.
LaTeX Warning: Command textquotedblright invalid in math mode on input line 15
Such errors and warnings should not be disregarded; it's a perhaps sad truth that textquotedblleft
in math mode produces a backslash, whereas textquotedblright
actually produces a closing double quote.
The error is because '
in math mode is interpreted as ^{prime}
, so c^2'
indeed has a double superscript (the converse c'^2
is instead legal, as is c''^2
).
If you want to quote something in math mode, you should use math symbols.
documentclass{article}
DeclareMathSymbol{mlq}{mathord}{operators}{'134}
DeclareMathSymbol{mrq}{mathord}{operators}{'42}
begin{document}
$dotsmlqdotsmrqdots$
end{document}
LaTeX issues one error and two warnings:
! Double superscript.
<recently read> ^
l.13 Quote by hand: $``a^2+b^2=c^2'
'$
?
LaTeX Warning: Command textquotedblleft invalid in math mode on input line 15.
LaTeX Warning: Command textquotedblright invalid in math mode on input line 15
Such errors and warnings should not be disregarded; it's a perhaps sad truth that textquotedblleft
in math mode produces a backslash, whereas textquotedblright
actually produces a closing double quote.
The error is because '
in math mode is interpreted as ^{prime}
, so c^2'
indeed has a double superscript (the converse c'^2
is instead legal, as is c''^2
).
If you want to quote something in math mode, you should use math symbols.
documentclass{article}
DeclareMathSymbol{mlq}{mathord}{operators}{'134}
DeclareMathSymbol{mrq}{mathord}{operators}{'42}
begin{document}
$dotsmlqdotsmrqdots$
end{document}
answered Dec 12 '18 at 17:41
egreg
709k8618823165
709k8618823165
Wow, true that, it issues those warnings, completely didn't notice them, thanks! (Have it running in command prompt as-interaction=batchmode
with-file-line-error
only and checking for warnings only on an ad-hoc basis.)
– C-Star-Puppy
Dec 12 '18 at 17:48
Thanks, the integration worked perfectly with your solution and definingnewcommand{mathenquote}[1]{mlq #1mrq}
. Thanks a lot!!
– C-Star-Puppy
Dec 12 '18 at 17:57
add a comment |
Wow, true that, it issues those warnings, completely didn't notice them, thanks! (Have it running in command prompt as-interaction=batchmode
with-file-line-error
only and checking for warnings only on an ad-hoc basis.)
– C-Star-Puppy
Dec 12 '18 at 17:48
Thanks, the integration worked perfectly with your solution and definingnewcommand{mathenquote}[1]{mlq #1mrq}
. Thanks a lot!!
– C-Star-Puppy
Dec 12 '18 at 17:57
Wow, true that, it issues those warnings, completely didn't notice them, thanks! (Have it running in command prompt as
-interaction=batchmode
with -file-line-error
only and checking for warnings only on an ad-hoc basis.)– C-Star-Puppy
Dec 12 '18 at 17:48
Wow, true that, it issues those warnings, completely didn't notice them, thanks! (Have it running in command prompt as
-interaction=batchmode
with -file-line-error
only and checking for warnings only on an ad-hoc basis.)– C-Star-Puppy
Dec 12 '18 at 17:48
Thanks, the integration worked perfectly with your solution and defining
newcommand{mathenquote}[1]{mlq #1mrq}
. Thanks a lot!!– C-Star-Puppy
Dec 12 '18 at 17:57
Thanks, the integration worked perfectly with your solution and defining
newcommand{mathenquote}[1]{mlq #1mrq}
. Thanks a lot!!– C-Star-Puppy
Dec 12 '18 at 17:57
add a comment |
You have answered yourself: the quotes should be in the text mode:
documentclass[preview]{standalone}
usepackage{csquotes}
begin{document}
In text mode:\
Quote by hand: ``Blub''\
Quote by enquote: enquote{Blub}
In math mode:\
%Quote by hand: $``a^2+b^2=c^2''$\
Quote by hand: ``$a^2+b^2=c^2$''\
%Quote by enquote: $enquote{a^2+b^2=c^2}$
Quote by enquote: enquote{$a^2+b^2=c^2$}
end{document}
Problem is that I need it as something like$ldots enquote{ldots} ldots$
. Do you have an idea what to do?
– C-Star-Puppy
Dec 12 '18 at 17:33
ldots
work(s) also in the text mode. Soldots enquote{ldots} ldots
will work.
– Przemysław Scherwentke
Dec 12 '18 at 17:34
Sorry, should have written$<some formulas> enquote{<formula>} <more formulas>$
and under different circumstances like labels intikzcd
and other situations.
– C-Star-Puppy
Dec 12 '18 at 17:37
If you useamsmath
, you have a simple constructiontextenquote{$...$}}
.
– Przemysław Scherwentke
Dec 12 '18 at 17:40
Do you think i can/is it good idea for me to redefine simply then enquote as something like ensuretextmodeenquote?
– C-Star-Puppy
Dec 12 '18 at 17:41
add a comment |
You have answered yourself: the quotes should be in the text mode:
documentclass[preview]{standalone}
usepackage{csquotes}
begin{document}
In text mode:\
Quote by hand: ``Blub''\
Quote by enquote: enquote{Blub}
In math mode:\
%Quote by hand: $``a^2+b^2=c^2''$\
Quote by hand: ``$a^2+b^2=c^2$''\
%Quote by enquote: $enquote{a^2+b^2=c^2}$
Quote by enquote: enquote{$a^2+b^2=c^2$}
end{document}
Problem is that I need it as something like$ldots enquote{ldots} ldots$
. Do you have an idea what to do?
– C-Star-Puppy
Dec 12 '18 at 17:33
ldots
work(s) also in the text mode. Soldots enquote{ldots} ldots
will work.
– Przemysław Scherwentke
Dec 12 '18 at 17:34
Sorry, should have written$<some formulas> enquote{<formula>} <more formulas>$
and under different circumstances like labels intikzcd
and other situations.
– C-Star-Puppy
Dec 12 '18 at 17:37
If you useamsmath
, you have a simple constructiontextenquote{$...$}}
.
– Przemysław Scherwentke
Dec 12 '18 at 17:40
Do you think i can/is it good idea for me to redefine simply then enquote as something like ensuretextmodeenquote?
– C-Star-Puppy
Dec 12 '18 at 17:41
add a comment |
You have answered yourself: the quotes should be in the text mode:
documentclass[preview]{standalone}
usepackage{csquotes}
begin{document}
In text mode:\
Quote by hand: ``Blub''\
Quote by enquote: enquote{Blub}
In math mode:\
%Quote by hand: $``a^2+b^2=c^2''$\
Quote by hand: ``$a^2+b^2=c^2$''\
%Quote by enquote: $enquote{a^2+b^2=c^2}$
Quote by enquote: enquote{$a^2+b^2=c^2$}
end{document}
You have answered yourself: the quotes should be in the text mode:
documentclass[preview]{standalone}
usepackage{csquotes}
begin{document}
In text mode:\
Quote by hand: ``Blub''\
Quote by enquote: enquote{Blub}
In math mode:\
%Quote by hand: $``a^2+b^2=c^2''$\
Quote by hand: ``$a^2+b^2=c^2$''\
%Quote by enquote: $enquote{a^2+b^2=c^2}$
Quote by enquote: enquote{$a^2+b^2=c^2$}
end{document}
edited Dec 12 '18 at 17:35
answered Dec 12 '18 at 17:31
Przemysław Scherwentke
29.6k54594
29.6k54594
Problem is that I need it as something like$ldots enquote{ldots} ldots$
. Do you have an idea what to do?
– C-Star-Puppy
Dec 12 '18 at 17:33
ldots
work(s) also in the text mode. Soldots enquote{ldots} ldots
will work.
– Przemysław Scherwentke
Dec 12 '18 at 17:34
Sorry, should have written$<some formulas> enquote{<formula>} <more formulas>$
and under different circumstances like labels intikzcd
and other situations.
– C-Star-Puppy
Dec 12 '18 at 17:37
If you useamsmath
, you have a simple constructiontextenquote{$...$}}
.
– Przemysław Scherwentke
Dec 12 '18 at 17:40
Do you think i can/is it good idea for me to redefine simply then enquote as something like ensuretextmodeenquote?
– C-Star-Puppy
Dec 12 '18 at 17:41
add a comment |
Problem is that I need it as something like$ldots enquote{ldots} ldots$
. Do you have an idea what to do?
– C-Star-Puppy
Dec 12 '18 at 17:33
ldots
work(s) also in the text mode. Soldots enquote{ldots} ldots
will work.
– Przemysław Scherwentke
Dec 12 '18 at 17:34
Sorry, should have written$<some formulas> enquote{<formula>} <more formulas>$
and under different circumstances like labels intikzcd
and other situations.
– C-Star-Puppy
Dec 12 '18 at 17:37
If you useamsmath
, you have a simple constructiontextenquote{$...$}}
.
– Przemysław Scherwentke
Dec 12 '18 at 17:40
Do you think i can/is it good idea for me to redefine simply then enquote as something like ensuretextmodeenquote?
– C-Star-Puppy
Dec 12 '18 at 17:41
Problem is that I need it as something like
$ldots enquote{ldots} ldots$
. Do you have an idea what to do?– C-Star-Puppy
Dec 12 '18 at 17:33
Problem is that I need it as something like
$ldots enquote{ldots} ldots$
. Do you have an idea what to do?– C-Star-Puppy
Dec 12 '18 at 17:33
ldots
work(s) also in the text mode. So ldots enquote{ldots} ldots
will work.– Przemysław Scherwentke
Dec 12 '18 at 17:34
ldots
work(s) also in the text mode. So ldots enquote{ldots} ldots
will work.– Przemysław Scherwentke
Dec 12 '18 at 17:34
Sorry, should have written
$<some formulas> enquote{<formula>} <more formulas>$
and under different circumstances like labels in tikzcd
and other situations.– C-Star-Puppy
Dec 12 '18 at 17:37
Sorry, should have written
$<some formulas> enquote{<formula>} <more formulas>$
and under different circumstances like labels in tikzcd
and other situations.– C-Star-Puppy
Dec 12 '18 at 17:37
If you use
amsmath
, you have a simple construction textenquote{$...$}}
.– Przemysław Scherwentke
Dec 12 '18 at 17:40
If you use
amsmath
, you have a simple construction textenquote{$...$}}
.– Przemysław Scherwentke
Dec 12 '18 at 17:40
Do you think i can/is it good idea for me to redefine simply then enquote as something like ensuretextmodeenquote?
– C-Star-Puppy
Dec 12 '18 at 17:41
Do you think i can/is it good idea for me to redefine simply then enquote as something like ensuretextmodeenquote?
– C-Star-Puppy
Dec 12 '18 at 17:41
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f464563%2fquotations-in-math-mode-using-enquote-command-from-csquotes-package%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
enquote{$formula$}
rather than$enquote{formula}$
, unless your quotes are part of the math. Are they?– egreg
Dec 12 '18 at 17:29
Problem is I have it as something like
$ldots enquote{ldots} ldots$
. Do you have an idea what to do?– C-Star-Puppy
Dec 12 '18 at 17:30