Math equation in non italic fontblackboard italic fontNon italic text in theorems, definitions, examplesIs there a way to set math mode font non-italic?Is there a bold italic sigma and a sans serif bold italic sigma?How to make a vector bold and italic inside an equationNon italic math mode symbols?Upright math in italic lemmaMath modes non-italic and arial fontlatin modern math italic fontNon italic text in equations
Creating points with attributes from coordinates in ArcPy
Output visual diagram of picture
Print last inputted byte
Why is this tree refusing to shed its dead leaves?
Why doesn't Gödel's incompleteness theorem apply to false statements?
Magento 2: Make category field required in product form in backend
Animal R'aim of the midrash
Is it okay for a cleric of life to use spells like Animate Dead and/or Contagion?
Can other pieces capture a threatening piece and prevent a checkmate?
What is the tangent at a sharp point on a curve?
Exposing a company lying about themselves in a tightly knit industry (videogames) : Is my career at risk on the long run?
Single word to change groups
Determine voltage drop over 10G resistors with cheap multimeter
When did hardware antialiasing start being available?
Do native speakers use "ultima" and "proxima" frequently in spoken English?
The multiplication of list of matrices
Why is the intercept typed in as a 1 in stats packages (R, python)
What kind of footwear is suitable for walking in micro gravity environment?
Is there any common country to visit for persons holding UK resp. Schengen visas?
Box half filled color
Can "few" be used as a subject? If so, what is the rule?
Does fire aspect on a sword destroy mob drops?
The English Debate
Friend wants my recommendation but I don't want to give it to him
Math equation in non italic font
blackboard italic fontNon italic text in theorems, definitions, examplesIs there a way to set math mode font non-italic?Is there a bold italic sigma and a sans serif bold italic sigma?How to make a vector bold and italic inside an equationNon italic math mode symbols?Upright math in italic lemmaMath modes non-italic and arial fontlatin modern math italic fontNon italic text in equations
I am trying to write the following $T_E$
but it appears in italic font. I tried also $textT_E$
but LaTeX gives me error.
math-mode italic
New contributor
add a comment |
I am trying to write the following $T_E$
but it appears in italic font. I tried also $textT_E$
but LaTeX gives me error.
math-mode italic
New contributor
1
Do you want all math in upright font or only this specific expression?
– samcarter
2 days ago
add a comment |
I am trying to write the following $T_E$
but it appears in italic font. I tried also $textT_E$
but LaTeX gives me error.
math-mode italic
New contributor
I am trying to write the following $T_E$
but it appears in italic font. I tried also $textT_E$
but LaTeX gives me error.
math-mode italic
math-mode italic
New contributor
New contributor
edited 2 days ago
Kurt
39.6k850164
39.6k850164
New contributor
asked 2 days ago
GinaGina
111
111
New contributor
New contributor
1
Do you want all math in upright font or only this specific expression?
– samcarter
2 days ago
add a comment |
1
Do you want all math in upright font or only this specific expression?
– samcarter
2 days ago
1
1
Do you want all math in upright font or only this specific expression?
– samcarter
2 days ago
Do you want all math in upright font or only this specific expression?
– samcarter
2 days ago
add a comment |
3 Answers
3
active
oldest
votes
Depending of if you are actually writing math or text:
documentclassarticle
begindocument
$mathrmT_mathrmE$ or TtextsubscriptE
enddocument
add a comment |
The following examples illustrates several possible solutions.
documentclassscrartcl
usepackageamsmath
newcommandtestlineText $mathrmT_mathrmE$ or $textT_textE$ or $textupT_textupE$ or Ttextsubscript E
begindocument
testline
itshapetestline
sffamilyupshapetestline
itshapetestline
rmfamilyupshapebfseries%as before but bold
testline
itshapetestline
sffamilyupshapetestline
itshapetestline
enddocument
Observe that some of them adopt the style and font of the text.
I'd rather usemathrm
– Bernard
2 days ago
1
It works!! Thanks a lot :)
– Gina
2 days ago
@Gina: Just out of curiosity: must all your capital letters in formulæ be in uprightshape?
– Bernard
2 days ago
1
@Gina You are welcome. Please consider to upvote one or both answers and accept one of the two.
– CampanIgnis
2 days ago
add a comment |
With the Modern Toolchain
With the unicode-math
package (which I personally recommend, although not everyone agrees), mathrm
is still supported for backwards compatibility, but so is the synonym mathup
, and the closely-related symup
.
If you use symup
, you can specify a different upright font from the regular text font, and from operator names like log
, sin
and lim
. My go-to example is setting Euler’s identity in ISO style, that is, with symbolic constants set in an upright font, with the constants e, π and i in Euler and everything else in Palatino. It’s a good example of why you might want a different upright font for math variables.
documentclass[varwidth, preview]standalone
usepackagemathtools
usepackage[math-style=ISO]unicode-math
setmainfontTeX Gyre Pagella
defaultfontfeaturesScale=MatchLowercase
setmathfontAsana Math
setmathfont[range=up/Latin,latin,Greek,greek,
bfup/Latin,latin,Greek,greek,
script-features=, sscript-features=
]Neo Euler
newcommandupesymupe
newcommandupisymupi
begindocument
beginalign*
upe^upi x &= cosx + upi sinx \
upe^upi uppi + 1 &= 0
endalign*
enddocument
(If you want to do something like this with the default font, you can try either Latin Modern Roman Unslanted or CMU Serif Upright Italic. Here’s a sample of the latter:
documentclass[varwidth, preview]standalone
usepackageamsmath
usepackage[math-style=ISO]unicode-math
setmathfontLatin Modern Math
setmathfont[range=up/Latin,latin,Greek,greek]CMU Serif Upright Italic
begindocument
beginalign*
symupe^symupi x &= cosx + symupi sinx \
symupe^symupi pi + 1 &= 0
endalign*
enddocument
The symup
command is intended to be used this way. The mathrm
and mathup
commands are more for words in equations, like naming variables TIME and ENERGY. Another good alternative for whole words is to use operatorname
from amsmath
. This formats the text like log
or sin
, that is, inserts spacing like 2 log x rather than 2logx.
There are similarly mathtt
and mathsfup
for monospaced and sans-serif letters.
You could also, for example, do newcommandTIMEmathopmboxscshape time
to get TIME in small caps, with the spacing of an operator.
You can make upright math variables the default by loading the package with usepackage[math-style=upright]unicode-math
.
With the Legacy Toolchain
The eulerpx
package implements the popular combination of Euler math variables and Palatino text, along with symbols from newpxmath
. If you want upright letters in PDFLaTeX, this in my opinion is the most attractive package for them.
The cfr-lm
package makes upright italics easily available; with this package, you could write DeclareRobusTCommandmathui[1]mboxuishape #1
to get upright italics. The example I gave earlier with scshape
for small-caps would work as well.
To format a variable name in the default font, operatorname
from amsmath
is a good option.
For a more complicated use case, there are DeclareMathAlphabet
and DeclareMathSymbol
.
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
);
);
Gina is a new contributor. Be nice, and check out our Code of Conduct.
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%2f479833%2fmath-equation-in-non-italic-font%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Depending of if you are actually writing math or text:
documentclassarticle
begindocument
$mathrmT_mathrmE$ or TtextsubscriptE
enddocument
add a comment |
Depending of if you are actually writing math or text:
documentclassarticle
begindocument
$mathrmT_mathrmE$ or TtextsubscriptE
enddocument
add a comment |
Depending of if you are actually writing math or text:
documentclassarticle
begindocument
$mathrmT_mathrmE$ or TtextsubscriptE
enddocument
Depending of if you are actually writing math or text:
documentclassarticle
begindocument
$mathrmT_mathrmE$ or TtextsubscriptE
enddocument
answered 2 days ago
Ulrike FischerUlrike Fischer
196k8302689
196k8302689
add a comment |
add a comment |
The following examples illustrates several possible solutions.
documentclassscrartcl
usepackageamsmath
newcommandtestlineText $mathrmT_mathrmE$ or $textT_textE$ or $textupT_textupE$ or Ttextsubscript E
begindocument
testline
itshapetestline
sffamilyupshapetestline
itshapetestline
rmfamilyupshapebfseries%as before but bold
testline
itshapetestline
sffamilyupshapetestline
itshapetestline
enddocument
Observe that some of them adopt the style and font of the text.
I'd rather usemathrm
– Bernard
2 days ago
1
It works!! Thanks a lot :)
– Gina
2 days ago
@Gina: Just out of curiosity: must all your capital letters in formulæ be in uprightshape?
– Bernard
2 days ago
1
@Gina You are welcome. Please consider to upvote one or both answers and accept one of the two.
– CampanIgnis
2 days ago
add a comment |
The following examples illustrates several possible solutions.
documentclassscrartcl
usepackageamsmath
newcommandtestlineText $mathrmT_mathrmE$ or $textT_textE$ or $textupT_textupE$ or Ttextsubscript E
begindocument
testline
itshapetestline
sffamilyupshapetestline
itshapetestline
rmfamilyupshapebfseries%as before but bold
testline
itshapetestline
sffamilyupshapetestline
itshapetestline
enddocument
Observe that some of them adopt the style and font of the text.
I'd rather usemathrm
– Bernard
2 days ago
1
It works!! Thanks a lot :)
– Gina
2 days ago
@Gina: Just out of curiosity: must all your capital letters in formulæ be in uprightshape?
– Bernard
2 days ago
1
@Gina You are welcome. Please consider to upvote one or both answers and accept one of the two.
– CampanIgnis
2 days ago
add a comment |
The following examples illustrates several possible solutions.
documentclassscrartcl
usepackageamsmath
newcommandtestlineText $mathrmT_mathrmE$ or $textT_textE$ or $textupT_textupE$ or Ttextsubscript E
begindocument
testline
itshapetestline
sffamilyupshapetestline
itshapetestline
rmfamilyupshapebfseries%as before but bold
testline
itshapetestline
sffamilyupshapetestline
itshapetestline
enddocument
Observe that some of them adopt the style and font of the text.
The following examples illustrates several possible solutions.
documentclassscrartcl
usepackageamsmath
newcommandtestlineText $mathrmT_mathrmE$ or $textT_textE$ or $textupT_textupE$ or Ttextsubscript E
begindocument
testline
itshapetestline
sffamilyupshapetestline
itshapetestline
rmfamilyupshapebfseries%as before but bold
testline
itshapetestline
sffamilyupshapetestline
itshapetestline
enddocument
Observe that some of them adopt the style and font of the text.
edited 2 days ago
answered 2 days ago
CampanIgnisCampanIgnis
2,9542932
2,9542932
I'd rather usemathrm
– Bernard
2 days ago
1
It works!! Thanks a lot :)
– Gina
2 days ago
@Gina: Just out of curiosity: must all your capital letters in formulæ be in uprightshape?
– Bernard
2 days ago
1
@Gina You are welcome. Please consider to upvote one or both answers and accept one of the two.
– CampanIgnis
2 days ago
add a comment |
I'd rather usemathrm
– Bernard
2 days ago
1
It works!! Thanks a lot :)
– Gina
2 days ago
@Gina: Just out of curiosity: must all your capital letters in formulæ be in uprightshape?
– Bernard
2 days ago
1
@Gina You are welcome. Please consider to upvote one or both answers and accept one of the two.
– CampanIgnis
2 days ago
I'd rather use
mathrm
– Bernard
2 days ago
I'd rather use
mathrm
– Bernard
2 days ago
1
1
It works!! Thanks a lot :)
– Gina
2 days ago
It works!! Thanks a lot :)
– Gina
2 days ago
@Gina: Just out of curiosity: must all your capital letters in formulæ be in uprightshape?
– Bernard
2 days ago
@Gina: Just out of curiosity: must all your capital letters in formulæ be in uprightshape?
– Bernard
2 days ago
1
1
@Gina You are welcome. Please consider to upvote one or both answers and accept one of the two.
– CampanIgnis
2 days ago
@Gina You are welcome. Please consider to upvote one or both answers and accept one of the two.
– CampanIgnis
2 days ago
add a comment |
With the Modern Toolchain
With the unicode-math
package (which I personally recommend, although not everyone agrees), mathrm
is still supported for backwards compatibility, but so is the synonym mathup
, and the closely-related symup
.
If you use symup
, you can specify a different upright font from the regular text font, and from operator names like log
, sin
and lim
. My go-to example is setting Euler’s identity in ISO style, that is, with symbolic constants set in an upright font, with the constants e, π and i in Euler and everything else in Palatino. It’s a good example of why you might want a different upright font for math variables.
documentclass[varwidth, preview]standalone
usepackagemathtools
usepackage[math-style=ISO]unicode-math
setmainfontTeX Gyre Pagella
defaultfontfeaturesScale=MatchLowercase
setmathfontAsana Math
setmathfont[range=up/Latin,latin,Greek,greek,
bfup/Latin,latin,Greek,greek,
script-features=, sscript-features=
]Neo Euler
newcommandupesymupe
newcommandupisymupi
begindocument
beginalign*
upe^upi x &= cosx + upi sinx \
upe^upi uppi + 1 &= 0
endalign*
enddocument
(If you want to do something like this with the default font, you can try either Latin Modern Roman Unslanted or CMU Serif Upright Italic. Here’s a sample of the latter:
documentclass[varwidth, preview]standalone
usepackageamsmath
usepackage[math-style=ISO]unicode-math
setmathfontLatin Modern Math
setmathfont[range=up/Latin,latin,Greek,greek]CMU Serif Upright Italic
begindocument
beginalign*
symupe^symupi x &= cosx + symupi sinx \
symupe^symupi pi + 1 &= 0
endalign*
enddocument
The symup
command is intended to be used this way. The mathrm
and mathup
commands are more for words in equations, like naming variables TIME and ENERGY. Another good alternative for whole words is to use operatorname
from amsmath
. This formats the text like log
or sin
, that is, inserts spacing like 2 log x rather than 2logx.
There are similarly mathtt
and mathsfup
for monospaced and sans-serif letters.
You could also, for example, do newcommandTIMEmathopmboxscshape time
to get TIME in small caps, with the spacing of an operator.
You can make upright math variables the default by loading the package with usepackage[math-style=upright]unicode-math
.
With the Legacy Toolchain
The eulerpx
package implements the popular combination of Euler math variables and Palatino text, along with symbols from newpxmath
. If you want upright letters in PDFLaTeX, this in my opinion is the most attractive package for them.
The cfr-lm
package makes upright italics easily available; with this package, you could write DeclareRobusTCommandmathui[1]mboxuishape #1
to get upright italics. The example I gave earlier with scshape
for small-caps would work as well.
To format a variable name in the default font, operatorname
from amsmath
is a good option.
For a more complicated use case, there are DeclareMathAlphabet
and DeclareMathSymbol
.
add a comment |
With the Modern Toolchain
With the unicode-math
package (which I personally recommend, although not everyone agrees), mathrm
is still supported for backwards compatibility, but so is the synonym mathup
, and the closely-related symup
.
If you use symup
, you can specify a different upright font from the regular text font, and from operator names like log
, sin
and lim
. My go-to example is setting Euler’s identity in ISO style, that is, with symbolic constants set in an upright font, with the constants e, π and i in Euler and everything else in Palatino. It’s a good example of why you might want a different upright font for math variables.
documentclass[varwidth, preview]standalone
usepackagemathtools
usepackage[math-style=ISO]unicode-math
setmainfontTeX Gyre Pagella
defaultfontfeaturesScale=MatchLowercase
setmathfontAsana Math
setmathfont[range=up/Latin,latin,Greek,greek,
bfup/Latin,latin,Greek,greek,
script-features=, sscript-features=
]Neo Euler
newcommandupesymupe
newcommandupisymupi
begindocument
beginalign*
upe^upi x &= cosx + upi sinx \
upe^upi uppi + 1 &= 0
endalign*
enddocument
(If you want to do something like this with the default font, you can try either Latin Modern Roman Unslanted or CMU Serif Upright Italic. Here’s a sample of the latter:
documentclass[varwidth, preview]standalone
usepackageamsmath
usepackage[math-style=ISO]unicode-math
setmathfontLatin Modern Math
setmathfont[range=up/Latin,latin,Greek,greek]CMU Serif Upright Italic
begindocument
beginalign*
symupe^symupi x &= cosx + symupi sinx \
symupe^symupi pi + 1 &= 0
endalign*
enddocument
The symup
command is intended to be used this way. The mathrm
and mathup
commands are more for words in equations, like naming variables TIME and ENERGY. Another good alternative for whole words is to use operatorname
from amsmath
. This formats the text like log
or sin
, that is, inserts spacing like 2 log x rather than 2logx.
There are similarly mathtt
and mathsfup
for monospaced and sans-serif letters.
You could also, for example, do newcommandTIMEmathopmboxscshape time
to get TIME in small caps, with the spacing of an operator.
You can make upright math variables the default by loading the package with usepackage[math-style=upright]unicode-math
.
With the Legacy Toolchain
The eulerpx
package implements the popular combination of Euler math variables and Palatino text, along with symbols from newpxmath
. If you want upright letters in PDFLaTeX, this in my opinion is the most attractive package for them.
The cfr-lm
package makes upright italics easily available; with this package, you could write DeclareRobusTCommandmathui[1]mboxuishape #1
to get upright italics. The example I gave earlier with scshape
for small-caps would work as well.
To format a variable name in the default font, operatorname
from amsmath
is a good option.
For a more complicated use case, there are DeclareMathAlphabet
and DeclareMathSymbol
.
add a comment |
With the Modern Toolchain
With the unicode-math
package (which I personally recommend, although not everyone agrees), mathrm
is still supported for backwards compatibility, but so is the synonym mathup
, and the closely-related symup
.
If you use symup
, you can specify a different upright font from the regular text font, and from operator names like log
, sin
and lim
. My go-to example is setting Euler’s identity in ISO style, that is, with symbolic constants set in an upright font, with the constants e, π and i in Euler and everything else in Palatino. It’s a good example of why you might want a different upright font for math variables.
documentclass[varwidth, preview]standalone
usepackagemathtools
usepackage[math-style=ISO]unicode-math
setmainfontTeX Gyre Pagella
defaultfontfeaturesScale=MatchLowercase
setmathfontAsana Math
setmathfont[range=up/Latin,latin,Greek,greek,
bfup/Latin,latin,Greek,greek,
script-features=, sscript-features=
]Neo Euler
newcommandupesymupe
newcommandupisymupi
begindocument
beginalign*
upe^upi x &= cosx + upi sinx \
upe^upi uppi + 1 &= 0
endalign*
enddocument
(If you want to do something like this with the default font, you can try either Latin Modern Roman Unslanted or CMU Serif Upright Italic. Here’s a sample of the latter:
documentclass[varwidth, preview]standalone
usepackageamsmath
usepackage[math-style=ISO]unicode-math
setmathfontLatin Modern Math
setmathfont[range=up/Latin,latin,Greek,greek]CMU Serif Upright Italic
begindocument
beginalign*
symupe^symupi x &= cosx + symupi sinx \
symupe^symupi pi + 1 &= 0
endalign*
enddocument
The symup
command is intended to be used this way. The mathrm
and mathup
commands are more for words in equations, like naming variables TIME and ENERGY. Another good alternative for whole words is to use operatorname
from amsmath
. This formats the text like log
or sin
, that is, inserts spacing like 2 log x rather than 2logx.
There are similarly mathtt
and mathsfup
for monospaced and sans-serif letters.
You could also, for example, do newcommandTIMEmathopmboxscshape time
to get TIME in small caps, with the spacing of an operator.
You can make upright math variables the default by loading the package with usepackage[math-style=upright]unicode-math
.
With the Legacy Toolchain
The eulerpx
package implements the popular combination of Euler math variables and Palatino text, along with symbols from newpxmath
. If you want upright letters in PDFLaTeX, this in my opinion is the most attractive package for them.
The cfr-lm
package makes upright italics easily available; with this package, you could write DeclareRobusTCommandmathui[1]mboxuishape #1
to get upright italics. The example I gave earlier with scshape
for small-caps would work as well.
To format a variable name in the default font, operatorname
from amsmath
is a good option.
For a more complicated use case, there are DeclareMathAlphabet
and DeclareMathSymbol
.
With the Modern Toolchain
With the unicode-math
package (which I personally recommend, although not everyone agrees), mathrm
is still supported for backwards compatibility, but so is the synonym mathup
, and the closely-related symup
.
If you use symup
, you can specify a different upright font from the regular text font, and from operator names like log
, sin
and lim
. My go-to example is setting Euler’s identity in ISO style, that is, with symbolic constants set in an upright font, with the constants e, π and i in Euler and everything else in Palatino. It’s a good example of why you might want a different upright font for math variables.
documentclass[varwidth, preview]standalone
usepackagemathtools
usepackage[math-style=ISO]unicode-math
setmainfontTeX Gyre Pagella
defaultfontfeaturesScale=MatchLowercase
setmathfontAsana Math
setmathfont[range=up/Latin,latin,Greek,greek,
bfup/Latin,latin,Greek,greek,
script-features=, sscript-features=
]Neo Euler
newcommandupesymupe
newcommandupisymupi
begindocument
beginalign*
upe^upi x &= cosx + upi sinx \
upe^upi uppi + 1 &= 0
endalign*
enddocument
(If you want to do something like this with the default font, you can try either Latin Modern Roman Unslanted or CMU Serif Upright Italic. Here’s a sample of the latter:
documentclass[varwidth, preview]standalone
usepackageamsmath
usepackage[math-style=ISO]unicode-math
setmathfontLatin Modern Math
setmathfont[range=up/Latin,latin,Greek,greek]CMU Serif Upright Italic
begindocument
beginalign*
symupe^symupi x &= cosx + symupi sinx \
symupe^symupi pi + 1 &= 0
endalign*
enddocument
The symup
command is intended to be used this way. The mathrm
and mathup
commands are more for words in equations, like naming variables TIME and ENERGY. Another good alternative for whole words is to use operatorname
from amsmath
. This formats the text like log
or sin
, that is, inserts spacing like 2 log x rather than 2logx.
There are similarly mathtt
and mathsfup
for monospaced and sans-serif letters.
You could also, for example, do newcommandTIMEmathopmboxscshape time
to get TIME in small caps, with the spacing of an operator.
You can make upright math variables the default by loading the package with usepackage[math-style=upright]unicode-math
.
With the Legacy Toolchain
The eulerpx
package implements the popular combination of Euler math variables and Palatino text, along with symbols from newpxmath
. If you want upright letters in PDFLaTeX, this in my opinion is the most attractive package for them.
The cfr-lm
package makes upright italics easily available; with this package, you could write DeclareRobusTCommandmathui[1]mboxuishape #1
to get upright italics. The example I gave earlier with scshape
for small-caps would work as well.
To format a variable name in the default font, operatorname
from amsmath
is a good option.
For a more complicated use case, there are DeclareMathAlphabet
and DeclareMathSymbol
.
edited 2 days ago
answered 2 days ago
DavislorDavislor
6,7271429
6,7271429
add a comment |
add a comment |
Gina is a new contributor. Be nice, and check out our Code of Conduct.
Gina is a new contributor. Be nice, and check out our Code of Conduct.
Gina is a new contributor. Be nice, and check out our Code of Conduct.
Gina is a new contributor. Be nice, and check out our Code of Conduct.
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%2f479833%2fmath-equation-in-non-italic-font%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
1
Do you want all math in upright font or only this specific expression?
– samcarter
2 days ago