Why the various definitions of the thin space ,?Why is there a , space at the beginning of the “aligned” environment?Styling definitionsWhy is `strut` working in these scenarios?Necessity of nested text within math mode for proper mathchoice-based scalingHow can I insert a thin space (,) in a listing?Turn * into thin space for clearer math spacingAlways safe to use empty braces `` to guard space?unbreakable (thin) space inside « », for tex4htThin space between minus sign and numberHow to reduce the space between two definitions?
Anime with legendary swords made from talismans and a man who could change them with a shattered body
Language involving irrational number is not a CFL
Is there a RAID 0 Equivalent for RAM?
When and why was runway 07/25 at Kai Tak removed?
Isometric embedding of a genus g surface
Mimic lecturing on blackboard, facing audience
Does the Crossbow Expert feat's extra crossbow attack work with the reaction attack from a Hunter ranger's Giant Killer feature?
Is it feasible to let a newcomer play the "Gandalf"-like figure I created for my campaign?
Giving feedback to someone without sounding prejudiced
How to make money from a browser who sees 5 seconds into the future of any web page?
Pre-Employment Background Check With Consent For Future Checks
Can you identify this lizard-like creature I observed in the UK?
If Captain Marvel (MCU) were to have a child with a human male, would the child be human or Kree?
Sound waves in different octaves
Can I cause damage to electrical appliances by unplugging them when they are turned on?
How can I, as DM, avoid the Conga Line of Death occurring when implementing some form of flanking rule?
Can I say "fingers" when referring to toes?
What is the meaning of "You've never met a graph you didn't like?"
When is "ei" a diphthong?
Echo with obfuscation
Would a primitive species be able to learn English from reading books alone?
How to leave product feedback on macOS?
Would this string work as string?
How to make a list of partial sums using forEach
Why the various definitions of the thin space ,?
Why is there a , space at the beginning of the “aligned” environment?Styling definitionsWhy is `strut` working in these scenarios?Necessity of nested text within math mode for proper mathchoice-based scalingHow can I insert a thin space (,) in a listing?Turn * into thin space for clearer math spacingAlways safe to use empty braces `` to guard space?unbreakable (thin) space inside « », for tex4htThin space between minus sign and numberHow to reduce the space between two definitions?
Knuths definition of ,
is mskipthinmuskip
.
LaTeX changes this definition to
DeclareRobustCommand,%
relaxifmmodemskipthinmuskipelsethinspacefi
defthinspacekern .16667em
amsmath.sty
says it's
DeclareRobustCommandtmspace[3]%
ifmmodemskip#1#2elsekern#1#3firelax
renewcommand,tmspace+thinmuskip.1667em
I might understand LaTeX's point to make a command usable also in text mode. But what's the point of the redefinition by amsmath?
spacing amsmath
add a comment |
Knuths definition of ,
is mskipthinmuskip
.
LaTeX changes this definition to
DeclareRobustCommand,%
relaxifmmodemskipthinmuskipelsethinspacefi
defthinspacekern .16667em
amsmath.sty
says it's
DeclareRobustCommandtmspace[3]%
ifmmodemskip#1#2elsekern#1#3firelax
renewcommand,tmspace+thinmuskip.1667em
I might understand LaTeX's point to make a command usable also in text mode. But what's the point of the redefinition by amsmath?
spacing amsmath
add a comment |
Knuths definition of ,
is mskipthinmuskip
.
LaTeX changes this definition to
DeclareRobustCommand,%
relaxifmmodemskipthinmuskipelsethinspacefi
defthinspacekern .16667em
amsmath.sty
says it's
DeclareRobustCommandtmspace[3]%
ifmmodemskip#1#2elsekern#1#3firelax
renewcommand,tmspace+thinmuskip.1667em
I might understand LaTeX's point to make a command usable also in text mode. But what's the point of the redefinition by amsmath?
spacing amsmath
Knuths definition of ,
is mskipthinmuskip
.
LaTeX changes this definition to
DeclareRobustCommand,%
relaxifmmodemskipthinmuskipelsethinspacefi
defthinspacekern .16667em
amsmath.sty
says it's
DeclareRobustCommandtmspace[3]%
ifmmodemskip#1#2elsekern#1#3firelax
renewcommand,tmspace+thinmuskip.1667em
I might understand LaTeX's point to make a command usable also in text mode. But what's the point of the redefinition by amsmath?
spacing amsmath
spacing amsmath
edited 7 hours ago
Sebastiano
11.1k42164
11.1k42164
asked 7 hours ago
user49915user49915
617121
617121
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You should look at the full picture:
152 │ ifxleavevmode@ifvmode@undefined
153 │ DeclareRobustCommandtmspace[3]%
154 │ ifmmodemskip#1#2elsekern#1#3firelax
155 │ else
156 │ DeclareRobustCommandtmspace[3]%
157 │ ifmmodemskip#1#2elseleavevmode@ifvmodekern#1#3firelax
158 │ fi
159 │ renewcommand,tmspace+thinmuskip.1667em
160 │ letthinspace,
161 │ renewcommand!tmspace-thinmuskip.1667em
162 │ letnegthinspace!
163 │ renewcommand:tmspace+medmuskip.2222em
164 │ letmedspace:
165 │ newcommandnegmedspacetmspace-medmuskip.2222em
166 │ renewcommand;tmspace+thickmuskip.2777em
167 │ letthickspace;
168 │ newcommandnegthickspacetmspace-thickmuskip.2777em
The two definitions of tmspace
are due to recent decisions to make such commands start paragraph mode anyway. With a recent LaTeX kernel the second one will be used.
Contrast this with the code in the LaTeX kernel:
1619 │ DeclareRobustCommand,%
1620 │ relaxifmmodemskipthinmuskipelsethinspacefi
1621 │
1630 │ defthinspaceleavevmode@ifvmodekern .16667em
1631 │ defnegthinspaceleavevmode@ifvmodekern-.16667em
4543 │ def>mskipmedmuskip
4544 │ def;mskipthickmuskip
4545 │ def!mskip-thinmuskip
4547 │ let:=>
The approach of amsmath
is much more rational and cleaner. They also provide text mode equivalent of all macros, whereas !
cannot be used in text mode if amsmath
is not loaded, and similarly for the others. The final result will be essentially the same. However, a ,
command will be translated into tmspace+thinmuskip.1667em
when written in an auxiliary file, instead of ,
. Not really a big deal.
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%2f480575%2fwhy-the-various-definitions-of-the-thin-space%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You should look at the full picture:
152 │ ifxleavevmode@ifvmode@undefined
153 │ DeclareRobustCommandtmspace[3]%
154 │ ifmmodemskip#1#2elsekern#1#3firelax
155 │ else
156 │ DeclareRobustCommandtmspace[3]%
157 │ ifmmodemskip#1#2elseleavevmode@ifvmodekern#1#3firelax
158 │ fi
159 │ renewcommand,tmspace+thinmuskip.1667em
160 │ letthinspace,
161 │ renewcommand!tmspace-thinmuskip.1667em
162 │ letnegthinspace!
163 │ renewcommand:tmspace+medmuskip.2222em
164 │ letmedspace:
165 │ newcommandnegmedspacetmspace-medmuskip.2222em
166 │ renewcommand;tmspace+thickmuskip.2777em
167 │ letthickspace;
168 │ newcommandnegthickspacetmspace-thickmuskip.2777em
The two definitions of tmspace
are due to recent decisions to make such commands start paragraph mode anyway. With a recent LaTeX kernel the second one will be used.
Contrast this with the code in the LaTeX kernel:
1619 │ DeclareRobustCommand,%
1620 │ relaxifmmodemskipthinmuskipelsethinspacefi
1621 │
1630 │ defthinspaceleavevmode@ifvmodekern .16667em
1631 │ defnegthinspaceleavevmode@ifvmodekern-.16667em
4543 │ def>mskipmedmuskip
4544 │ def;mskipthickmuskip
4545 │ def!mskip-thinmuskip
4547 │ let:=>
The approach of amsmath
is much more rational and cleaner. They also provide text mode equivalent of all macros, whereas !
cannot be used in text mode if amsmath
is not loaded, and similarly for the others. The final result will be essentially the same. However, a ,
command will be translated into tmspace+thinmuskip.1667em
when written in an auxiliary file, instead of ,
. Not really a big deal.
add a comment |
You should look at the full picture:
152 │ ifxleavevmode@ifvmode@undefined
153 │ DeclareRobustCommandtmspace[3]%
154 │ ifmmodemskip#1#2elsekern#1#3firelax
155 │ else
156 │ DeclareRobustCommandtmspace[3]%
157 │ ifmmodemskip#1#2elseleavevmode@ifvmodekern#1#3firelax
158 │ fi
159 │ renewcommand,tmspace+thinmuskip.1667em
160 │ letthinspace,
161 │ renewcommand!tmspace-thinmuskip.1667em
162 │ letnegthinspace!
163 │ renewcommand:tmspace+medmuskip.2222em
164 │ letmedspace:
165 │ newcommandnegmedspacetmspace-medmuskip.2222em
166 │ renewcommand;tmspace+thickmuskip.2777em
167 │ letthickspace;
168 │ newcommandnegthickspacetmspace-thickmuskip.2777em
The two definitions of tmspace
are due to recent decisions to make such commands start paragraph mode anyway. With a recent LaTeX kernel the second one will be used.
Contrast this with the code in the LaTeX kernel:
1619 │ DeclareRobustCommand,%
1620 │ relaxifmmodemskipthinmuskipelsethinspacefi
1621 │
1630 │ defthinspaceleavevmode@ifvmodekern .16667em
1631 │ defnegthinspaceleavevmode@ifvmodekern-.16667em
4543 │ def>mskipmedmuskip
4544 │ def;mskipthickmuskip
4545 │ def!mskip-thinmuskip
4547 │ let:=>
The approach of amsmath
is much more rational and cleaner. They also provide text mode equivalent of all macros, whereas !
cannot be used in text mode if amsmath
is not loaded, and similarly for the others. The final result will be essentially the same. However, a ,
command will be translated into tmspace+thinmuskip.1667em
when written in an auxiliary file, instead of ,
. Not really a big deal.
add a comment |
You should look at the full picture:
152 │ ifxleavevmode@ifvmode@undefined
153 │ DeclareRobustCommandtmspace[3]%
154 │ ifmmodemskip#1#2elsekern#1#3firelax
155 │ else
156 │ DeclareRobustCommandtmspace[3]%
157 │ ifmmodemskip#1#2elseleavevmode@ifvmodekern#1#3firelax
158 │ fi
159 │ renewcommand,tmspace+thinmuskip.1667em
160 │ letthinspace,
161 │ renewcommand!tmspace-thinmuskip.1667em
162 │ letnegthinspace!
163 │ renewcommand:tmspace+medmuskip.2222em
164 │ letmedspace:
165 │ newcommandnegmedspacetmspace-medmuskip.2222em
166 │ renewcommand;tmspace+thickmuskip.2777em
167 │ letthickspace;
168 │ newcommandnegthickspacetmspace-thickmuskip.2777em
The two definitions of tmspace
are due to recent decisions to make such commands start paragraph mode anyway. With a recent LaTeX kernel the second one will be used.
Contrast this with the code in the LaTeX kernel:
1619 │ DeclareRobustCommand,%
1620 │ relaxifmmodemskipthinmuskipelsethinspacefi
1621 │
1630 │ defthinspaceleavevmode@ifvmodekern .16667em
1631 │ defnegthinspaceleavevmode@ifvmodekern-.16667em
4543 │ def>mskipmedmuskip
4544 │ def;mskipthickmuskip
4545 │ def!mskip-thinmuskip
4547 │ let:=>
The approach of amsmath
is much more rational and cleaner. They also provide text mode equivalent of all macros, whereas !
cannot be used in text mode if amsmath
is not loaded, and similarly for the others. The final result will be essentially the same. However, a ,
command will be translated into tmspace+thinmuskip.1667em
when written in an auxiliary file, instead of ,
. Not really a big deal.
You should look at the full picture:
152 │ ifxleavevmode@ifvmode@undefined
153 │ DeclareRobustCommandtmspace[3]%
154 │ ifmmodemskip#1#2elsekern#1#3firelax
155 │ else
156 │ DeclareRobustCommandtmspace[3]%
157 │ ifmmodemskip#1#2elseleavevmode@ifvmodekern#1#3firelax
158 │ fi
159 │ renewcommand,tmspace+thinmuskip.1667em
160 │ letthinspace,
161 │ renewcommand!tmspace-thinmuskip.1667em
162 │ letnegthinspace!
163 │ renewcommand:tmspace+medmuskip.2222em
164 │ letmedspace:
165 │ newcommandnegmedspacetmspace-medmuskip.2222em
166 │ renewcommand;tmspace+thickmuskip.2777em
167 │ letthickspace;
168 │ newcommandnegthickspacetmspace-thickmuskip.2777em
The two definitions of tmspace
are due to recent decisions to make such commands start paragraph mode anyway. With a recent LaTeX kernel the second one will be used.
Contrast this with the code in the LaTeX kernel:
1619 │ DeclareRobustCommand,%
1620 │ relaxifmmodemskipthinmuskipelsethinspacefi
1621 │
1630 │ defthinspaceleavevmode@ifvmodekern .16667em
1631 │ defnegthinspaceleavevmode@ifvmodekern-.16667em
4543 │ def>mskipmedmuskip
4544 │ def;mskipthickmuskip
4545 │ def!mskip-thinmuskip
4547 │ let:=>
The approach of amsmath
is much more rational and cleaner. They also provide text mode equivalent of all macros, whereas !
cannot be used in text mode if amsmath
is not loaded, and similarly for the others. The final result will be essentially the same. However, a ,
command will be translated into tmspace+thinmuskip.1667em
when written in an auxiliary file, instead of ,
. Not really a big deal.
answered 7 hours ago
egregegreg
728k8819233233
728k8819233233
add a comment |
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%2f480575%2fwhy-the-various-definitions-of-the-thin-space%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