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;








4















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.)










share|improve this question


























  • 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

















4















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.)










share|improve this question


























  • 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













4












4








4








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.)










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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












  • In unicode-math, mathZZ commands are for “words”, not for single letters, where symZZ should be used.

    – egreg
    5 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
















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










1 Answer
1






active

oldest

votes


















7














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


enter image description here






share|improve this answer

























  • 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













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
);



);













draft saved

draft discarded


















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









7














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


enter image description here






share|improve this answer

























  • 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















7














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


enter image description here






share|improve this answer

























  • 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













7












7








7







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


enter image description here






share|improve this answer













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


enter image description here







share|improve this answer












share|improve this answer



share|improve this answer










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

















  • 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

















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Invision Community Contents History See also References External links Navigation menuProprietaryinvisioncommunity.comIPS Community ForumsIPS Community Forumsthis blog entry"License Changes, IP.Board 3.4, and the Future""Interview -- Matt Mecham of Ibforums""CEO Invision Power Board, Matt Mecham Is a Liar, Thief!"IPB License Explanation 1.3, 1.3.1, 2.0, and 2.1ArchivedSecurity Fixes, Updates And Enhancements For IPB 1.3.1Archived"New Demo Accounts - Invision Power Services"the original"New Default Skin"the original"Invision Power Board 3.0.0 and Applications Released"the original"Archived copy"the original"Perpetual licenses being done away with""Release Notes - Invision Power Services""Introducing: IPS Community Suite 4!"Invision Community Release Notes

Canceling a color specificationRandomly assigning color to Graphics3D objects?Default color for Filling in Mathematica 9Coloring specific elements of sets with a prime modified order in an array plotHow to pick a color differing significantly from the colors already in a given color list?Detection of the text colorColor numbers based on their valueCan color schemes for use with ColorData include opacity specification?My dynamic color schemes

Ласкавець круглолистий Зміст Опис | Поширення | Галерея | Примітки | Посилання | Навігаційне меню58171138361-22960890446Bupleurum rotundifoliumEuro+Med PlantbasePlants of the World Online — Kew ScienceGermplasm Resources Information Network (GRIN)Ласкавецькн. VI : Літери Ком — Левиправивши або дописавши її