Redefine S - problem with indices
Clash Royale CLAN TAG#URR8PPP
up vote
6
down vote
favorite
Why are the subscripts placed under the letters and not in the right bottom corner like usual?
documentclass[a4paper,12pt,twoside]article
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackage[ngerman,english]babel
usepackagecsquotes
usepackageamssymb
usepackageamsmath
usepackageamsthm
letorigSSrenewcommandSifmmodemathopmathsfSelseorigSfi
begindocument
beginequationlabeleqn:decS
S=S_0 oplusS_1 .
endequation
enddocument
math-mode indexing
add a comment |Â
up vote
6
down vote
favorite
Why are the subscripts placed under the letters and not in the right bottom corner like usual?
documentclass[a4paper,12pt,twoside]article
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackage[ngerman,english]babel
usepackagecsquotes
usepackageamssymb
usepackageamsmath
usepackageamsthm
letorigSSrenewcommandSifmmodemathopmathsfSelseorigSfi
begindocument
beginequationlabeleqn:decS
S=S_0 oplusS_1 .
endequation
enddocument
math-mode indexing
3
Because themathop
turns the "S" into an operator likelim
andsum
.
â moewe
Aug 18 at 19:29
1
What are you trying to do in the first place? What mathematical object isS
suppose to be.
â daleif
Aug 18 at 19:34
add a comment |Â
up vote
6
down vote
favorite
up vote
6
down vote
favorite
Why are the subscripts placed under the letters and not in the right bottom corner like usual?
documentclass[a4paper,12pt,twoside]article
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackage[ngerman,english]babel
usepackagecsquotes
usepackageamssymb
usepackageamsmath
usepackageamsthm
letorigSSrenewcommandSifmmodemathopmathsfSelseorigSfi
begindocument
beginequationlabeleqn:decS
S=S_0 oplusS_1 .
endequation
enddocument
math-mode indexing
Why are the subscripts placed under the letters and not in the right bottom corner like usual?
documentclass[a4paper,12pt,twoside]article
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackage[ngerman,english]babel
usepackagecsquotes
usepackageamssymb
usepackageamsmath
usepackageamsthm
letorigSSrenewcommandSifmmodemathopmathsfSelseorigSfi
begindocument
beginequationlabeleqn:decS
S=S_0 oplusS_1 .
endequation
enddocument
math-mode indexing
edited Aug 18 at 19:36
Steven B. Segletes
146k9185387
146k9185387
asked Aug 18 at 19:27
user372565
27016
27016
3
Because themathop
turns the "S" into an operator likelim
andsum
.
â moewe
Aug 18 at 19:29
1
What are you trying to do in the first place? What mathematical object isS
suppose to be.
â daleif
Aug 18 at 19:34
add a comment |Â
3
Because themathop
turns the "S" into an operator likelim
andsum
.
â moewe
Aug 18 at 19:29
1
What are you trying to do in the first place? What mathematical object isS
suppose to be.
â daleif
Aug 18 at 19:34
3
3
Because the
mathop
turns the "S" into an operator like lim
and sum
.â moewe
Aug 18 at 19:29
Because the
mathop
turns the "S" into an operator like lim
and sum
.â moewe
Aug 18 at 19:29
1
1
What are you trying to do in the first place? What mathematical object is
S
suppose to be.â daleif
Aug 18 at 19:34
What are you trying to do in the first place? What mathematical object is
S
suppose to be.â daleif
Aug 18 at 19:34
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
7
down vote
accepted
You need nolimits
to force mathop
not to treat the operator like, for example, sum
.
documentclass[a4paper,12pt,twoside]article
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackage[ngerman,english]babel
usepackagecsquotes
usepackageamssymb
usepackageamsmath
usepackageamsthm
letorigSSrenewcommandS%
relaxifmmodemathopmathsfSnolimitselseorigSfi
begindocument
beginequationlabeleqn:decS
S=S_0 oplusS_1 .
endequation
[
beginpmatrixSendpmatrix
]
enddocument
2
Of course the question arises whether we are talking about an operator (in TeX speak, not necessarily mathematically) here in the first place. MaybeletorigSSrenewcommandSifmmodemathsfSelseorigSfi
would be more sensible.
â moewe
Aug 18 at 19:38
You should trybeginpmatrixSendpmatrix
.
â egreg
Aug 18 at 20:19
@egreg Interesting, though given my logo, you can understand that I am not as shocked as I should be.
â Steven B. Segletes
Aug 18 at 20:36
add a comment |Â
up vote
6
down vote
Assuming your command should be a mathop
, the correct redefinition would be
renewcommandmathsection{operatornamemathsfS
Redefining S
that way is bound to problems, as S
is a âÂÂrobustâ command.
If it is not an operator, renewcommandmathsectionmathsfS
would suffice.
You can see the difference in the two examples below (twocolumn
used just for making a smaller picture). In (1) the symbol behaves like an operator, in (2) it's an ordinary symbol.
documentclass[a4paper,12pt,twocolumn]article
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackage[ngerman,english]babel
usepackagecsquotes
usepackageamssymb
usepackageamsmath
usepackageamsthm
renewcommandmathsectionoperatornamemathsfS
begindocument
beginequationlabeleqn:decS
S=S_0 oplusS_1 x.
endequation
renewcommandmathsectionmathsfS
beginequation
S=S_0 oplusS_1 x.
endequation
enddocument
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
7
down vote
accepted
You need nolimits
to force mathop
not to treat the operator like, for example, sum
.
documentclass[a4paper,12pt,twoside]article
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackage[ngerman,english]babel
usepackagecsquotes
usepackageamssymb
usepackageamsmath
usepackageamsthm
letorigSSrenewcommandS%
relaxifmmodemathopmathsfSnolimitselseorigSfi
begindocument
beginequationlabeleqn:decS
S=S_0 oplusS_1 .
endequation
[
beginpmatrixSendpmatrix
]
enddocument
2
Of course the question arises whether we are talking about an operator (in TeX speak, not necessarily mathematically) here in the first place. MaybeletorigSSrenewcommandSifmmodemathsfSelseorigSfi
would be more sensible.
â moewe
Aug 18 at 19:38
You should trybeginpmatrixSendpmatrix
.
â egreg
Aug 18 at 20:19
@egreg Interesting, though given my logo, you can understand that I am not as shocked as I should be.
â Steven B. Segletes
Aug 18 at 20:36
add a comment |Â
up vote
7
down vote
accepted
You need nolimits
to force mathop
not to treat the operator like, for example, sum
.
documentclass[a4paper,12pt,twoside]article
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackage[ngerman,english]babel
usepackagecsquotes
usepackageamssymb
usepackageamsmath
usepackageamsthm
letorigSSrenewcommandS%
relaxifmmodemathopmathsfSnolimitselseorigSfi
begindocument
beginequationlabeleqn:decS
S=S_0 oplusS_1 .
endequation
[
beginpmatrixSendpmatrix
]
enddocument
2
Of course the question arises whether we are talking about an operator (in TeX speak, not necessarily mathematically) here in the first place. MaybeletorigSSrenewcommandSifmmodemathsfSelseorigSfi
would be more sensible.
â moewe
Aug 18 at 19:38
You should trybeginpmatrixSendpmatrix
.
â egreg
Aug 18 at 20:19
@egreg Interesting, though given my logo, you can understand that I am not as shocked as I should be.
â Steven B. Segletes
Aug 18 at 20:36
add a comment |Â
up vote
7
down vote
accepted
up vote
7
down vote
accepted
You need nolimits
to force mathop
not to treat the operator like, for example, sum
.
documentclass[a4paper,12pt,twoside]article
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackage[ngerman,english]babel
usepackagecsquotes
usepackageamssymb
usepackageamsmath
usepackageamsthm
letorigSSrenewcommandS%
relaxifmmodemathopmathsfSnolimitselseorigSfi
begindocument
beginequationlabeleqn:decS
S=S_0 oplusS_1 .
endequation
[
beginpmatrixSendpmatrix
]
enddocument
You need nolimits
to force mathop
not to treat the operator like, for example, sum
.
documentclass[a4paper,12pt,twoside]article
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackage[ngerman,english]babel
usepackagecsquotes
usepackageamssymb
usepackageamsmath
usepackageamsthm
letorigSSrenewcommandS%
relaxifmmodemathopmathsfSnolimitselseorigSfi
begindocument
beginequationlabeleqn:decS
S=S_0 oplusS_1 .
endequation
[
beginpmatrixSendpmatrix
]
enddocument
edited Aug 18 at 22:20
answered Aug 18 at 19:34
Steven B. Segletes
146k9185387
146k9185387
2
Of course the question arises whether we are talking about an operator (in TeX speak, not necessarily mathematically) here in the first place. MaybeletorigSSrenewcommandSifmmodemathsfSelseorigSfi
would be more sensible.
â moewe
Aug 18 at 19:38
You should trybeginpmatrixSendpmatrix
.
â egreg
Aug 18 at 20:19
@egreg Interesting, though given my logo, you can understand that I am not as shocked as I should be.
â Steven B. Segletes
Aug 18 at 20:36
add a comment |Â
2
Of course the question arises whether we are talking about an operator (in TeX speak, not necessarily mathematically) here in the first place. MaybeletorigSSrenewcommandSifmmodemathsfSelseorigSfi
would be more sensible.
â moewe
Aug 18 at 19:38
You should trybeginpmatrixSendpmatrix
.
â egreg
Aug 18 at 20:19
@egreg Interesting, though given my logo, you can understand that I am not as shocked as I should be.
â Steven B. Segletes
Aug 18 at 20:36
2
2
Of course the question arises whether we are talking about an operator (in TeX speak, not necessarily mathematically) here in the first place. Maybe
letorigSSrenewcommandSifmmodemathsfSelseorigSfi
would be more sensible.â moewe
Aug 18 at 19:38
Of course the question arises whether we are talking about an operator (in TeX speak, not necessarily mathematically) here in the first place. Maybe
letorigSSrenewcommandSifmmodemathsfSelseorigSfi
would be more sensible.â moewe
Aug 18 at 19:38
You should try
beginpmatrixSendpmatrix
.â egreg
Aug 18 at 20:19
You should try
beginpmatrixSendpmatrix
.â egreg
Aug 18 at 20:19
@egreg Interesting, though given my logo, you can understand that I am not as shocked as I should be.
â Steven B. Segletes
Aug 18 at 20:36
@egreg Interesting, though given my logo, you can understand that I am not as shocked as I should be.
â Steven B. Segletes
Aug 18 at 20:36
add a comment |Â
up vote
6
down vote
Assuming your command should be a mathop
, the correct redefinition would be
renewcommandmathsection{operatornamemathsfS
Redefining S
that way is bound to problems, as S
is a âÂÂrobustâ command.
If it is not an operator, renewcommandmathsectionmathsfS
would suffice.
You can see the difference in the two examples below (twocolumn
used just for making a smaller picture). In (1) the symbol behaves like an operator, in (2) it's an ordinary symbol.
documentclass[a4paper,12pt,twocolumn]article
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackage[ngerman,english]babel
usepackagecsquotes
usepackageamssymb
usepackageamsmath
usepackageamsthm
renewcommandmathsectionoperatornamemathsfS
begindocument
beginequationlabeleqn:decS
S=S_0 oplusS_1 x.
endequation
renewcommandmathsectionmathsfS
beginequation
S=S_0 oplusS_1 x.
endequation
enddocument
add a comment |Â
up vote
6
down vote
Assuming your command should be a mathop
, the correct redefinition would be
renewcommandmathsection{operatornamemathsfS
Redefining S
that way is bound to problems, as S
is a âÂÂrobustâ command.
If it is not an operator, renewcommandmathsectionmathsfS
would suffice.
You can see the difference in the two examples below (twocolumn
used just for making a smaller picture). In (1) the symbol behaves like an operator, in (2) it's an ordinary symbol.
documentclass[a4paper,12pt,twocolumn]article
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackage[ngerman,english]babel
usepackagecsquotes
usepackageamssymb
usepackageamsmath
usepackageamsthm
renewcommandmathsectionoperatornamemathsfS
begindocument
beginequationlabeleqn:decS
S=S_0 oplusS_1 x.
endequation
renewcommandmathsectionmathsfS
beginequation
S=S_0 oplusS_1 x.
endequation
enddocument
add a comment |Â
up vote
6
down vote
up vote
6
down vote
Assuming your command should be a mathop
, the correct redefinition would be
renewcommandmathsection{operatornamemathsfS
Redefining S
that way is bound to problems, as S
is a âÂÂrobustâ command.
If it is not an operator, renewcommandmathsectionmathsfS
would suffice.
You can see the difference in the two examples below (twocolumn
used just for making a smaller picture). In (1) the symbol behaves like an operator, in (2) it's an ordinary symbol.
documentclass[a4paper,12pt,twocolumn]article
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackage[ngerman,english]babel
usepackagecsquotes
usepackageamssymb
usepackageamsmath
usepackageamsthm
renewcommandmathsectionoperatornamemathsfS
begindocument
beginequationlabeleqn:decS
S=S_0 oplusS_1 x.
endequation
renewcommandmathsectionmathsfS
beginequation
S=S_0 oplusS_1 x.
endequation
enddocument
Assuming your command should be a mathop
, the correct redefinition would be
renewcommandmathsection{operatornamemathsfS
Redefining S
that way is bound to problems, as S
is a âÂÂrobustâ command.
If it is not an operator, renewcommandmathsectionmathsfS
would suffice.
You can see the difference in the two examples below (twocolumn
used just for making a smaller picture). In (1) the symbol behaves like an operator, in (2) it's an ordinary symbol.
documentclass[a4paper,12pt,twocolumn]article
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackage[ngerman,english]babel
usepackagecsquotes
usepackageamssymb
usepackageamsmath
usepackageamsthm
renewcommandmathsectionoperatornamemathsfS
begindocument
beginequationlabeleqn:decS
S=S_0 oplusS_1 x.
endequation
renewcommandmathsectionmathsfS
beginequation
S=S_0 oplusS_1 x.
endequation
enddocument
answered Aug 18 at 19:48
egreg
680k8318073051
680k8318073051
add a comment |Â
add a comment |Â
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f446600%2fredefine-s-problem-with-indices%23new-answer', 'question_page');
);
Post as a guest
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
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
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
3
Because the
mathop
turns the "S" into an operator likelim
andsum
.â moewe
Aug 18 at 19:29
1
What are you trying to do in the first place? What mathematical object is
S
suppose to be.â daleif
Aug 18 at 19:34