Use of bm package change symbols [duplicate]Using bm with eulervm gives inconsistent ‘<’ and ‘>’ charactersHow to specify theorem styles (amsthm) should use bold equations (bm)?y-label shows up twice in pgfplot when the bm package is used?Bold advanced math symbolsLualatex and bm packagebm package doesn't workChoosing a good math font to use with Georgia text fontCentering double accents in math with bold symbolsbm and siunitx transparent useMath symbols (bm) appear duplicate/on top of themselvesBold symbols in math mode, reliably
How to simplify this time periods definition interface?
Does someone need to be connected to my network to sniff HTTP requests?
How can I track script which gives me "command not found" right after the login?
My adviser wants to be the first author
Did Ender ever learn that he killed Stilson and/or Bonzo?
What approach do we need to follow for projects without a test environment?
Should we release the security issues we found in our product as CVE or we can just update those on weekly release notes?
Existence of subset with given Hausdorff dimension
What are substitutions for coconut in curry?
Instead of Universal Basic Income, why not Universal Basic NEEDS?
Sailing the cryptic seas
Why do Australian milk farmers need to protest supermarkets' milk price?
A sequence that has integer values for prime indexes only:
What options are left, if Britain cannot decide?
Why does Bach not break the rules here?
Gantt Chart like rectangles with log scale
In a future war, an old lady is trying to raise a boy but one of the weapons has made everyone deaf
What are the naunces between the use of 訊く instead of 聞く in the following sentence?
Why do passenger jet manufacturers design their planes with stall prevention systems?
My Graph Theory Students
How big is a MODIS 250m pixel in reality?
Life insurance that covers only simultaneous/dual deaths
Most cost effective thermostat setting: consistent temperature vs. lowest temperature possible
Could the Saturn V actually have launched astronauts around Venus?
Use of bm package change symbols [duplicate]
Using bm with eulervm gives inconsistent ‘<’ and ‘>’ charactersHow to specify theorem styles (amsthm) should use bold equations (bm)?y-label shows up twice in pgfplot when the bm package is used?Bold advanced math symbolsLualatex and bm packagebm package doesn't workChoosing a good math font to use with Georgia text fontCentering double accents in math with bold symbolsbm and siunitx transparent useMath symbols (bm) appear duplicate/on top of themselvesBold symbols in math mode, reliably
This question already has an answer here:
Using bm with eulervm gives inconsistent ‘<’ and ‘>’ characters
2 answers
The following code
documentclassamsart
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackageeulerpx,bm
begindocument
$a<bquadbma<b$
enddocument
Provides the following output:
The inequality symbol is not changed when I use, say, newpxmath
instead. The problem seems to be indeed with the eulerpx
package. How can this be solved?
bm
marked as duplicate by egreg, JouleV, Kurt, Sebastiano, samcarter 6 hours ago
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
Using bm with eulervm gives inconsistent ‘<’ and ‘>’ characters
2 answers
The following code
documentclassamsart
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackageeulerpx,bm
begindocument
$a<bquadbma<b$
enddocument
Provides the following output:
The inequality symbol is not changed when I use, say, newpxmath
instead. The problem seems to be indeed with the eulerpx
package. How can this be solved?
bm
marked as duplicate by egreg, JouleV, Kurt, Sebastiano, samcarter 6 hours ago
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
I’m pretty sure this is a duplicate
– egreg
8 hours ago
add a comment |
This question already has an answer here:
Using bm with eulervm gives inconsistent ‘<’ and ‘>’ characters
2 answers
The following code
documentclassamsart
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackageeulerpx,bm
begindocument
$a<bquadbma<b$
enddocument
Provides the following output:
The inequality symbol is not changed when I use, say, newpxmath
instead. The problem seems to be indeed with the eulerpx
package. How can this be solved?
bm
This question already has an answer here:
Using bm with eulervm gives inconsistent ‘<’ and ‘>’ characters
2 answers
The following code
documentclassamsart
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackageeulerpx,bm
begindocument
$a<bquadbma<b$
enddocument
Provides the following output:
The inequality symbol is not changed when I use, say, newpxmath
instead. The problem seems to be indeed with the eulerpx
package. How can this be solved?
This question already has an answer here:
Using bm with eulervm gives inconsistent ‘<’ and ‘>’ characters
2 answers
bm
bm
asked 9 hours ago
Matemáticos ChibchasMatemáticos Chibchas
1998
1998
marked as duplicate by egreg, JouleV, Kurt, Sebastiano, samcarter 6 hours ago
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by egreg, JouleV, Kurt, Sebastiano, samcarter 6 hours ago
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
I’m pretty sure this is a duplicate
– egreg
8 hours ago
add a comment |
I’m pretty sure this is a duplicate
– egreg
8 hours ago
I’m pretty sure this is a duplicate
– egreg
8 hours ago
I’m pretty sure this is a duplicate
– egreg
8 hours ago
add a comment |
1 Answer
1
active
oldest
votes
Not sure what all this breaks, but I redefined a symbol font and made <
active inside of bm
.
The begingroup...endgroup
isolates the catcode change, while still allowing binary operators inside the bm
to see what is outside of the bm
, shown in the MWE as ybm-y
.
documentclassamsart
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackageeulerpx,bm
SetSymbolFontlettersbold Uzeurmn
letsvbmbm
renewcommandbmbegingroupcatcode`<=active xbm
newcommandxbm[1]svbm#1endgroup
letsvlt<
catcode`<=active gdef<mathopmathrmsvlt
begindocument
$a<bquadbma<bquad ybm-y$
enddocument
To apply this approach to both <
and >
relations requires just a little extra:
documentclassamsart
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackageeulerpx,bm
SetSymbolFontlettersbold Uzeurmn
letsvbmbm
renewcommandbmbegingroup%
catcode`>=active %
catcode`<=active %
xbm
newcommandxbm[1]svbm#1endgroup
letsvlt<
letsvgt>
catcode`>=active
gdef>mathopmathrmsvgt
catcode`<=active
gdef<mathopmathrmsvlt
begindocument
$a<bquadbma<>bquad ybm-y$
enddocument
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Not sure what all this breaks, but I redefined a symbol font and made <
active inside of bm
.
The begingroup...endgroup
isolates the catcode change, while still allowing binary operators inside the bm
to see what is outside of the bm
, shown in the MWE as ybm-y
.
documentclassamsart
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackageeulerpx,bm
SetSymbolFontlettersbold Uzeurmn
letsvbmbm
renewcommandbmbegingroupcatcode`<=active xbm
newcommandxbm[1]svbm#1endgroup
letsvlt<
catcode`<=active gdef<mathopmathrmsvlt
begindocument
$a<bquadbma<bquad ybm-y$
enddocument
To apply this approach to both <
and >
relations requires just a little extra:
documentclassamsart
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackageeulerpx,bm
SetSymbolFontlettersbold Uzeurmn
letsvbmbm
renewcommandbmbegingroup%
catcode`>=active %
catcode`<=active %
xbm
newcommandxbm[1]svbm#1endgroup
letsvlt<
letsvgt>
catcode`>=active
gdef>mathopmathrmsvgt
catcode`<=active
gdef<mathopmathrmsvlt
begindocument
$a<bquadbma<>bquad ybm-y$
enddocument
add a comment |
Not sure what all this breaks, but I redefined a symbol font and made <
active inside of bm
.
The begingroup...endgroup
isolates the catcode change, while still allowing binary operators inside the bm
to see what is outside of the bm
, shown in the MWE as ybm-y
.
documentclassamsart
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackageeulerpx,bm
SetSymbolFontlettersbold Uzeurmn
letsvbmbm
renewcommandbmbegingroupcatcode`<=active xbm
newcommandxbm[1]svbm#1endgroup
letsvlt<
catcode`<=active gdef<mathopmathrmsvlt
begindocument
$a<bquadbma<bquad ybm-y$
enddocument
To apply this approach to both <
and >
relations requires just a little extra:
documentclassamsart
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackageeulerpx,bm
SetSymbolFontlettersbold Uzeurmn
letsvbmbm
renewcommandbmbegingroup%
catcode`>=active %
catcode`<=active %
xbm
newcommandxbm[1]svbm#1endgroup
letsvlt<
letsvgt>
catcode`>=active
gdef>mathopmathrmsvgt
catcode`<=active
gdef<mathopmathrmsvlt
begindocument
$a<bquadbma<>bquad ybm-y$
enddocument
add a comment |
Not sure what all this breaks, but I redefined a symbol font and made <
active inside of bm
.
The begingroup...endgroup
isolates the catcode change, while still allowing binary operators inside the bm
to see what is outside of the bm
, shown in the MWE as ybm-y
.
documentclassamsart
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackageeulerpx,bm
SetSymbolFontlettersbold Uzeurmn
letsvbmbm
renewcommandbmbegingroupcatcode`<=active xbm
newcommandxbm[1]svbm#1endgroup
letsvlt<
catcode`<=active gdef<mathopmathrmsvlt
begindocument
$a<bquadbma<bquad ybm-y$
enddocument
To apply this approach to both <
and >
relations requires just a little extra:
documentclassamsart
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackageeulerpx,bm
SetSymbolFontlettersbold Uzeurmn
letsvbmbm
renewcommandbmbegingroup%
catcode`>=active %
catcode`<=active %
xbm
newcommandxbm[1]svbm#1endgroup
letsvlt<
letsvgt>
catcode`>=active
gdef>mathopmathrmsvgt
catcode`<=active
gdef<mathopmathrmsvlt
begindocument
$a<bquadbma<>bquad ybm-y$
enddocument
Not sure what all this breaks, but I redefined a symbol font and made <
active inside of bm
.
The begingroup...endgroup
isolates the catcode change, while still allowing binary operators inside the bm
to see what is outside of the bm
, shown in the MWE as ybm-y
.
documentclassamsart
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackageeulerpx,bm
SetSymbolFontlettersbold Uzeurmn
letsvbmbm
renewcommandbmbegingroupcatcode`<=active xbm
newcommandxbm[1]svbm#1endgroup
letsvlt<
catcode`<=active gdef<mathopmathrmsvlt
begindocument
$a<bquadbma<bquad ybm-y$
enddocument
To apply this approach to both <
and >
relations requires just a little extra:
documentclassamsart
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackageeulerpx,bm
SetSymbolFontlettersbold Uzeurmn
letsvbmbm
renewcommandbmbegingroup%
catcode`>=active %
catcode`<=active %
xbm
newcommandxbm[1]svbm#1endgroup
letsvlt<
letsvgt>
catcode`>=active
gdef>mathopmathrmsvgt
catcode`<=active
gdef<mathopmathrmsvlt
begindocument
$a<bquadbma<>bquad ybm-y$
enddocument
edited 8 hours ago
answered 9 hours ago
Steven B. SegletesSteven B. Segletes
158k9204411
158k9204411
add a comment |
add a comment |
I’m pretty sure this is a duplicate
– egreg
8 hours ago