Fourier font and Enumitem Missbehaviour
Clash Royale CLAN TAG#URR8PPP
up vote
3
down vote
favorite
Consider the following MWE:
documentclass[a4paper]scrartcl
usepackageenumitem
usepackagefourier
begindocument
beginenumerate[labelindent=10pt,labelwidth=0pt,labelsep=30.5pt,leftmargin=!,itemsep=2.00pt,topsep=2.75pt,partopsep=2.00pt,parsep=2.00pt,label=Alph*.,ref=Alphenumi]
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
endenumerate
enddocument
Clearly, the letters are not correctly aligned. See the pic below (particularly the letter F).
If instead one runs the exact same MWE but commenting usepackagefourier
, one obtains correctly aligned letters. See the pic below.
Why is this happening? Can this problem be sorted in any way?
Thank you all very much in advanced for your time.
enumitem fourier
add a comment |Â
up vote
3
down vote
favorite
Consider the following MWE:
documentclass[a4paper]scrartcl
usepackageenumitem
usepackagefourier
begindocument
beginenumerate[labelindent=10pt,labelwidth=0pt,labelsep=30.5pt,leftmargin=!,itemsep=2.00pt,topsep=2.75pt,partopsep=2.00pt,parsep=2.00pt,label=Alph*.,ref=Alphenumi]
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
endenumerate
enddocument
Clearly, the letters are not correctly aligned. See the pic below (particularly the letter F).
If instead one runs the exact same MWE but commenting usepackagefourier
, one obtains correctly aligned letters. See the pic below.
Why is this happening? Can this problem be sorted in any way?
Thank you all very much in advanced for your time.
enumitem fourier
add a comment |Â
up vote
3
down vote
favorite
up vote
3
down vote
favorite
Consider the following MWE:
documentclass[a4paper]scrartcl
usepackageenumitem
usepackagefourier
begindocument
beginenumerate[labelindent=10pt,labelwidth=0pt,labelsep=30.5pt,leftmargin=!,itemsep=2.00pt,topsep=2.75pt,partopsep=2.00pt,parsep=2.00pt,label=Alph*.,ref=Alphenumi]
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
endenumerate
enddocument
Clearly, the letters are not correctly aligned. See the pic below (particularly the letter F).
If instead one runs the exact same MWE but commenting usepackagefourier
, one obtains correctly aligned letters. See the pic below.
Why is this happening? Can this problem be sorted in any way?
Thank you all very much in advanced for your time.
enumitem fourier
Consider the following MWE:
documentclass[a4paper]scrartcl
usepackageenumitem
usepackagefourier
begindocument
beginenumerate[labelindent=10pt,labelwidth=0pt,labelsep=30.5pt,leftmargin=!,itemsep=2.00pt,topsep=2.75pt,partopsep=2.00pt,parsep=2.00pt,label=Alph*.,ref=Alphenumi]
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
endenumerate
enddocument
Clearly, the letters are not correctly aligned. See the pic below (particularly the letter F).
If instead one runs the exact same MWE but commenting usepackagefourier
, one obtains correctly aligned letters. See the pic below.
Why is this happening? Can this problem be sorted in any way?
Thank you all very much in advanced for your time.
enumitem fourier
enumitem fourier
asked 1 hour ago
Héctor
707315
707315
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
3
down vote
accepted
I believe the issue must arise from the kerning between, for example, F
and the subsequent period .
Therefore, I prevent the kerning by typesetting the label as label=Alph*.
, with braces, so that kerning between the letter and the dot does not apply.
documentclass[a4paper]scrartcl
usepackageenumitem
usepackagefourier
begindocument
beginenumerate[labelindent=10pt,labelwidth=0pt,labelsep=30.5pt,leftmargin=!,itemsep=2.00pt,topsep=2.75pt,
partopsep=2.00pt,parsep=2.00pt,label=Alph*.,ref=Alphenumi]
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
endenumerate
enddocument
If you are still not happy, you can center the letter in a fixed-width makebox
, as in label=makebox[1.6ex]Alph*.
documentclass[a4paper]scrartcl
usepackageenumitem
usepackagefourier
begindocument
beginenumerate[labelindent=10pt,labelwidth=0pt,labelsep=30.5pt,leftmargin=!,itemsep=2.00pt,topsep=2.75pt,
partopsep=2.00pt,parsep=2.00pt,label=makebox[1.6ex]Alph*.,ref=Alphenumi]
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
endenumerate
enddocument
1
I adopted your second approach: it's the one that feels visually best (at least to me). Thank you!
â Héctor
24 mins ago
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
accepted
I believe the issue must arise from the kerning between, for example, F
and the subsequent period .
Therefore, I prevent the kerning by typesetting the label as label=Alph*.
, with braces, so that kerning between the letter and the dot does not apply.
documentclass[a4paper]scrartcl
usepackageenumitem
usepackagefourier
begindocument
beginenumerate[labelindent=10pt,labelwidth=0pt,labelsep=30.5pt,leftmargin=!,itemsep=2.00pt,topsep=2.75pt,
partopsep=2.00pt,parsep=2.00pt,label=Alph*.,ref=Alphenumi]
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
endenumerate
enddocument
If you are still not happy, you can center the letter in a fixed-width makebox
, as in label=makebox[1.6ex]Alph*.
documentclass[a4paper]scrartcl
usepackageenumitem
usepackagefourier
begindocument
beginenumerate[labelindent=10pt,labelwidth=0pt,labelsep=30.5pt,leftmargin=!,itemsep=2.00pt,topsep=2.75pt,
partopsep=2.00pt,parsep=2.00pt,label=makebox[1.6ex]Alph*.,ref=Alphenumi]
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
endenumerate
enddocument
1
I adopted your second approach: it's the one that feels visually best (at least to me). Thank you!
â Héctor
24 mins ago
add a comment |Â
up vote
3
down vote
accepted
I believe the issue must arise from the kerning between, for example, F
and the subsequent period .
Therefore, I prevent the kerning by typesetting the label as label=Alph*.
, with braces, so that kerning between the letter and the dot does not apply.
documentclass[a4paper]scrartcl
usepackageenumitem
usepackagefourier
begindocument
beginenumerate[labelindent=10pt,labelwidth=0pt,labelsep=30.5pt,leftmargin=!,itemsep=2.00pt,topsep=2.75pt,
partopsep=2.00pt,parsep=2.00pt,label=Alph*.,ref=Alphenumi]
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
endenumerate
enddocument
If you are still not happy, you can center the letter in a fixed-width makebox
, as in label=makebox[1.6ex]Alph*.
documentclass[a4paper]scrartcl
usepackageenumitem
usepackagefourier
begindocument
beginenumerate[labelindent=10pt,labelwidth=0pt,labelsep=30.5pt,leftmargin=!,itemsep=2.00pt,topsep=2.75pt,
partopsep=2.00pt,parsep=2.00pt,label=makebox[1.6ex]Alph*.,ref=Alphenumi]
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
endenumerate
enddocument
1
I adopted your second approach: it's the one that feels visually best (at least to me). Thank you!
â Héctor
24 mins ago
add a comment |Â
up vote
3
down vote
accepted
up vote
3
down vote
accepted
I believe the issue must arise from the kerning between, for example, F
and the subsequent period .
Therefore, I prevent the kerning by typesetting the label as label=Alph*.
, with braces, so that kerning between the letter and the dot does not apply.
documentclass[a4paper]scrartcl
usepackageenumitem
usepackagefourier
begindocument
beginenumerate[labelindent=10pt,labelwidth=0pt,labelsep=30.5pt,leftmargin=!,itemsep=2.00pt,topsep=2.75pt,
partopsep=2.00pt,parsep=2.00pt,label=Alph*.,ref=Alphenumi]
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
endenumerate
enddocument
If you are still not happy, you can center the letter in a fixed-width makebox
, as in label=makebox[1.6ex]Alph*.
documentclass[a4paper]scrartcl
usepackageenumitem
usepackagefourier
begindocument
beginenumerate[labelindent=10pt,labelwidth=0pt,labelsep=30.5pt,leftmargin=!,itemsep=2.00pt,topsep=2.75pt,
partopsep=2.00pt,parsep=2.00pt,label=makebox[1.6ex]Alph*.,ref=Alphenumi]
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
endenumerate
enddocument
I believe the issue must arise from the kerning between, for example, F
and the subsequent period .
Therefore, I prevent the kerning by typesetting the label as label=Alph*.
, with braces, so that kerning between the letter and the dot does not apply.
documentclass[a4paper]scrartcl
usepackageenumitem
usepackagefourier
begindocument
beginenumerate[labelindent=10pt,labelwidth=0pt,labelsep=30.5pt,leftmargin=!,itemsep=2.00pt,topsep=2.75pt,
partopsep=2.00pt,parsep=2.00pt,label=Alph*.,ref=Alphenumi]
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
endenumerate
enddocument
If you are still not happy, you can center the letter in a fixed-width makebox
, as in label=makebox[1.6ex]Alph*.
documentclass[a4paper]scrartcl
usepackageenumitem
usepackagefourier
begindocument
beginenumerate[labelindent=10pt,labelwidth=0pt,labelsep=30.5pt,leftmargin=!,itemsep=2.00pt,topsep=2.75pt,
partopsep=2.00pt,parsep=2.00pt,label=makebox[1.6ex]Alph*.,ref=Alphenumi]
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
item Do whatever.
endenumerate
enddocument
edited 1 hour ago
answered 1 hour ago
Steven B. Segletes
148k9186390
148k9186390
1
I adopted your second approach: it's the one that feels visually best (at least to me). Thank you!
â Héctor
24 mins ago
add a comment |Â
1
I adopted your second approach: it's the one that feels visually best (at least to me). Thank you!
â Héctor
24 mins ago
1
1
I adopted your second approach: it's the one that feels visually best (at least to me). Thank you!
â Héctor
24 mins ago
I adopted your second approach: it's the one that feels visually best (at least to me). Thank you!
â Héctor
24 mins ago
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%2f453781%2ffourier-font-and-enumitem-missbehaviour%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