Prime too close to f in Garamond MathSpacing too large with exponents and big OhGerman-style quotation marks too close to italics letters and mathpazo font packageFind optimal kerning for space between inline math and textDouble slashes close together with resizingToo narrow kerning with xeCJKMath kerning with non-math OpenType fontChange kerning between math characters (prime and left parenthesis) in ConTeXtQuotation marks too close with newtxtextMath mode character spacingKerning in italic contractions when using EB Garamond
How to win against ants
How important is it to have a spot meter on the light meter?
Is an "are" omitted in this sentence
Why is the Vasa Museum in Stockholm so Popular?
If someone else uploads my GPL'd code to Github without my permission, is that a copyright violation?
Which pronoun to replace an infinitive?
Whats the difference between <processors> and <pipelines> in Sitecore configuration?
What are the function of EM and EN spaces?
What is the German idiom or expression for when someone is being hypocritical against their own teachings?
How and where to get you research work assessed for PhD?
Only charge capacitor when button pushed then turn on LED momentarily with capacitor when button released
What was the role of Commodore-West Germany?
Examples of hyperbolic groups
Write The Shortest Program To Check If A Binary Tree Is Balanced
How to approach protecting my code as a research assistant? Should I be worried in the first place?
How does LIDAR avoid getting confused in an environment being scanned by hundreds of other LIDAR?
Why do cheap flights with a layover get more expensive when you split them up into separate flights?
Is the first page of a novel really that important?
Vibration on the guitar when playing two strings
Why does capacitance not depend on the material of the plates?
Could an areostationary satellite help locate asteroids?
Can I enter a rental property without giving notice if I'm afraid a tenant may be hurt?
The meaning of "scale" in "because diversions scale so easily wealth becomes concentrated"
Will a research paper be retracted if the code (which was made publically available ) is shown have a flaw in the logic?
Prime too close to f in Garamond Math
Spacing too large with exponents and big OhGerman-style quotation marks too close to italics letters and mathpazo font packageFind optimal kerning for space between inline math and textDouble slashes close together with resizingToo narrow kerning with xeCJKMath kerning with non-math OpenType fontChange kerning between math characters (prime and left parenthesis) in ConTeXtQuotation marks too close with newtxtextMath mode character spacingKerning in italic contractions when using EB Garamond
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Here
documentclassarticle
usepackagefontspec
usepackageunicode-math % luatex
setmainfontEB Garamond
setmathfontGaramond Math
begindocument
Test (mathrmDf'_2).
enddocument
the prime is too close to the f. I suppose this is an error in Garamond
Math. What's the right way to fix it? (I'd prefer one that doesn't
require typing something different every time.)
(Df'_2 is the name of a definition. Df
should therefore be typeset as
ordinary text, not with the extra spacing produced by symup
.)
kerning
add a comment |
Here
documentclassarticle
usepackagefontspec
usepackageunicode-math % luatex
setmainfontEB Garamond
setmathfontGaramond Math
begindocument
Test (mathrmDf'_2).
enddocument
the prime is too close to the f. I suppose this is an error in Garamond
Math. What's the right way to fix it? (I'd prefer one that doesn't
require typing something different every time.)
(Df'_2 is the name of a definition. Df
should therefore be typeset as
ordinary text, not with the extra spacing produced by symup
.)
kerning
I prefer to write like this(mathrmDf,'_2)
.
– ferahfeza
8 hours ago
Inunicode-math
,mathZZ
commands are for “words”, not for single letters, wheresymZZ
should be used.
– egreg
5 hours ago
add a comment |
Here
documentclassarticle
usepackagefontspec
usepackageunicode-math % luatex
setmainfontEB Garamond
setmathfontGaramond Math
begindocument
Test (mathrmDf'_2).
enddocument
the prime is too close to the f. I suppose this is an error in Garamond
Math. What's the right way to fix it? (I'd prefer one that doesn't
require typing something different every time.)
(Df'_2 is the name of a definition. Df
should therefore be typeset as
ordinary text, not with the extra spacing produced by symup
.)
kerning
Here
documentclassarticle
usepackagefontspec
usepackageunicode-math % luatex
setmainfontEB Garamond
setmathfontGaramond Math
begindocument
Test (mathrmDf'_2).
enddocument
the prime is too close to the f. I suppose this is an error in Garamond
Math. What's the right way to fix it? (I'd prefer one that doesn't
require typing something different every time.)
(Df'_2 is the name of a definition. Df
should therefore be typeset as
ordinary text, not with the extra spacing produced by symup
.)
kerning
kerning
edited 5 hours ago
Toothrot
asked 8 hours ago
ToothrotToothrot
1,5395 silver badges19 bronze badges
1,5395 silver badges19 bronze badges
I prefer to write like this(mathrmDf,'_2)
.
– ferahfeza
8 hours ago
Inunicode-math
,mathZZ
commands are for “words”, not for single letters, wheresymZZ
should be used.
– egreg
5 hours ago
add a comment |
I prefer to write like this(mathrmDf,'_2)
.
– ferahfeza
8 hours ago
Inunicode-math
,mathZZ
commands are for “words”, not for single letters, wheresymZZ
should be used.
– egreg
5 hours ago
I prefer to write like this
(mathrmDf,'_2)
.– ferahfeza
8 hours ago
I prefer to write like this
(mathrmDf,'_2)
.– ferahfeza
8 hours ago
In
unicode-math
, mathZZ
commands are for “words”, not for single letters, where symZZ
should be used.– egreg
5 hours ago
In
unicode-math
, mathZZ
commands are for “words”, not for single letters, where symZZ
should be used.– egreg
5 hours ago
add a comment |
1 Answer
1
active
oldest
votes
Use symrm instead of mathrm. I also prefer to put only the letters in the argument - even if doesn't make a difference here.
documentclassarticle
usepackagefontspec
usepackageunicode-math % luatex
setmainfontEB Garamond
setmathfontGaramond Math
begindocument
Test (mathrmDf'_2).
Test (symrmDf'_2).
Test (symrmDf'_2).
enddocument
Doesn't this result in too much space between D and f?
– Toothrot
8 hours ago
1
+1: Is symrm a standard command? Didn't use it before.
– Dr. Manuel Kuehner
7 hours ago
2
@Dr.ManuelKuehner well the standard name is symup and symrm is an alias, but I always forget this.
– Ulrike Fischer
7 hours ago
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%2f503082%2fprime-too-close-to-f-in-garamond-math%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
Use symrm instead of mathrm. I also prefer to put only the letters in the argument - even if doesn't make a difference here.
documentclassarticle
usepackagefontspec
usepackageunicode-math % luatex
setmainfontEB Garamond
setmathfontGaramond Math
begindocument
Test (mathrmDf'_2).
Test (symrmDf'_2).
Test (symrmDf'_2).
enddocument
Doesn't this result in too much space between D and f?
– Toothrot
8 hours ago
1
+1: Is symrm a standard command? Didn't use it before.
– Dr. Manuel Kuehner
7 hours ago
2
@Dr.ManuelKuehner well the standard name is symup and symrm is an alias, but I always forget this.
– Ulrike Fischer
7 hours ago
add a comment |
Use symrm instead of mathrm. I also prefer to put only the letters in the argument - even if doesn't make a difference here.
documentclassarticle
usepackagefontspec
usepackageunicode-math % luatex
setmainfontEB Garamond
setmathfontGaramond Math
begindocument
Test (mathrmDf'_2).
Test (symrmDf'_2).
Test (symrmDf'_2).
enddocument
Doesn't this result in too much space between D and f?
– Toothrot
8 hours ago
1
+1: Is symrm a standard command? Didn't use it before.
– Dr. Manuel Kuehner
7 hours ago
2
@Dr.ManuelKuehner well the standard name is symup and symrm is an alias, but I always forget this.
– Ulrike Fischer
7 hours ago
add a comment |
Use symrm instead of mathrm. I also prefer to put only the letters in the argument - even if doesn't make a difference here.
documentclassarticle
usepackagefontspec
usepackageunicode-math % luatex
setmainfontEB Garamond
setmathfontGaramond Math
begindocument
Test (mathrmDf'_2).
Test (symrmDf'_2).
Test (symrmDf'_2).
enddocument
Use symrm instead of mathrm. I also prefer to put only the letters in the argument - even if doesn't make a difference here.
documentclassarticle
usepackagefontspec
usepackageunicode-math % luatex
setmainfontEB Garamond
setmathfontGaramond Math
begindocument
Test (mathrmDf'_2).
Test (symrmDf'_2).
Test (symrmDf'_2).
enddocument
answered 8 hours ago
Ulrike FischerUlrike Fischer
211k9 gold badges319 silver badges718 bronze badges
211k9 gold badges319 silver badges718 bronze badges
Doesn't this result in too much space between D and f?
– Toothrot
8 hours ago
1
+1: Is symrm a standard command? Didn't use it before.
– Dr. Manuel Kuehner
7 hours ago
2
@Dr.ManuelKuehner well the standard name is symup and symrm is an alias, but I always forget this.
– Ulrike Fischer
7 hours ago
add a comment |
Doesn't this result in too much space between D and f?
– Toothrot
8 hours ago
1
+1: Is symrm a standard command? Didn't use it before.
– Dr. Manuel Kuehner
7 hours ago
2
@Dr.ManuelKuehner well the standard name is symup and symrm is an alias, but I always forget this.
– Ulrike Fischer
7 hours ago
Doesn't this result in too much space between D and f?
– Toothrot
8 hours ago
Doesn't this result in too much space between D and f?
– Toothrot
8 hours ago
1
1
+1: Is symrm a standard command? Didn't use it before.
– Dr. Manuel Kuehner
7 hours ago
+1: Is symrm a standard command? Didn't use it before.
– Dr. Manuel Kuehner
7 hours ago
2
2
@Dr.ManuelKuehner well the standard name is symup and symrm is an alias, but I always forget this.
– Ulrike Fischer
7 hours ago
@Dr.ManuelKuehner well the standard name is symup and symrm is an alias, but I always forget this.
– Ulrike Fischer
7 hours ago
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%2f503082%2fprime-too-close-to-f-in-garamond-math%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
I prefer to write like this
(mathrmDf,'_2)
.– ferahfeza
8 hours ago
In
unicode-math
,mathZZ
commands are for “words”, not for single letters, wheresymZZ
should be used.– egreg
5 hours ago