Dotted footnote ruleFootnote separatorFootnote rule in beamer showing too early with overlaysfootnote rule on cover pageEnable footnote rule only for split footnotesFancy Footnote RuleHow to add a footnote separator ruleRight align footnote section ruletoggle presence of footnote ruleAdding space between text and footnote rule
Round up my number
If a picture of a screen is a screenshot, what is a video of a screen?
Is leave-one-out cross validation known to systematically overestimate error?
What are the differences between the versions on lubuntu download page?
Did the Mueller report find that Trump committed any felonies?
Why does measuring one qbit after the other in this entangled system alter the result?
Why isn't current carried through a vacuum?
Why is dwarfism considered an advantage for jobs in space?
What is the logic for the map maker classifying the map this way, specifically in Canada?
Do insurance rates depend on credit scores?
Is it harder to enter an atmosphere perpendicular or at an angle
Making one list from two lists by grouping them in a special way
Why do we have to discharge the capacitor before testing it in an LCR Meter?
Why doesn't the road lose its thickness to the tyre?
Is there any plausible in-between of Endotherms and Ectotherms?
What type of glass fuse is this and what does the spring do?
Can a Sorcerer use the Silence spell and the Subtle Spell Metamagic to silently cast the Knock spell?
Why do right-wing parties generally oppose the legalization of marijuana?
Bridge rectifier outputting 338 volts DC with 120 volts AC input
C++ Leak detection simple class
Is harmony based on intervals rather than chords?
'The Queen That Never Was' or 'The Queen Who Never Was'?
Want to publish unpublished work found in an auction storage unit
What is a prior and what is a likelihood in Gaussian Process?
Dotted footnote rule
Footnote separatorFootnote rule in beamer showing too early with overlaysfootnote rule on cover pageEnable footnote rule only for split footnotesFancy Footnote RuleHow to add a footnote separator ruleRight align footnote section ruletoggle presence of footnote ruleAdding space between text and footnote rule
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
Here is my code to generate a text with a footnote:
documentclass[titlepage,paper=a4,11pt,onecolumn]scrartcl
usepackage[top=3cm, bottom=3.5cm, left=2.5cm, right=2.5cm]geometry
usepackage[english]babel
usepackageblindtext
footnoterule
renewcommandfootnoterule%
kern -4.5pt
hrule width textwidth height 0.5pt
kern 4pt
begindocument
sectionIntroduction
This a piece of text with a footnote herefootnoteThis is my footnote for testing purposes.
blindtext[2]
enddocument
I need to change the footnote rule that separates my footnote from the main text to a dotted line, keeping the same the other settings.
footnotes rules
add a comment
|
Here is my code to generate a text with a footnote:
documentclass[titlepage,paper=a4,11pt,onecolumn]scrartcl
usepackage[top=3cm, bottom=3.5cm, left=2.5cm, right=2.5cm]geometry
usepackage[english]babel
usepackageblindtext
footnoterule
renewcommandfootnoterule%
kern -4.5pt
hrule width textwidth height 0.5pt
kern 4pt
begindocument
sectionIntroduction
This a piece of text with a footnote herefootnoteThis is my footnote for testing purposes.
blindtext[2]
enddocument
I need to change the footnote rule that separates my footnote from the main text to a dotted line, keeping the same the other settings.
footnotes rules
add a comment
|
Here is my code to generate a text with a footnote:
documentclass[titlepage,paper=a4,11pt,onecolumn]scrartcl
usepackage[top=3cm, bottom=3.5cm, left=2.5cm, right=2.5cm]geometry
usepackage[english]babel
usepackageblindtext
footnoterule
renewcommandfootnoterule%
kern -4.5pt
hrule width textwidth height 0.5pt
kern 4pt
begindocument
sectionIntroduction
This a piece of text with a footnote herefootnoteThis is my footnote for testing purposes.
blindtext[2]
enddocument
I need to change the footnote rule that separates my footnote from the main text to a dotted line, keeping the same the other settings.
footnotes rules
Here is my code to generate a text with a footnote:
documentclass[titlepage,paper=a4,11pt,onecolumn]scrartcl
usepackage[top=3cm, bottom=3.5cm, left=2.5cm, right=2.5cm]geometry
usepackage[english]babel
usepackageblindtext
footnoterule
renewcommandfootnoterule%
kern -4.5pt
hrule width textwidth height 0.5pt
kern 4pt
begindocument
sectionIntroduction
This a piece of text with a footnote herefootnoteThis is my footnote for testing purposes.
blindtext[2]
enddocument
I need to change the footnote rule that separates my footnote from the main text to a dotted line, keeping the same the other settings.
footnotes rules
footnotes rules
edited Sep 28 at 23:31
Phelype Oleinik
40.7k9 gold badges72 silver badges133 bronze badges
40.7k9 gold badges72 silver badges133 bronze badges
asked Sep 28 at 11:45
JoséJosé
1354 bronze badges
1354 bronze badges
add a comment
|
add a comment
|
2 Answers
2
active
oldest
votes
You're looking for leaders
. leaders
is a TeX primitive used to repeat a box until it fills some space. I used xleaders
here: the x
stands for "expanded leaders", to ensure the dots are placed aligned with the margins.
I added three customisation points: fnoterulesep
is the distance between two consecutive dots, and fnoterulechar
is the character to be repeated. Here's an example with 2pt
and .
:
and here with 5pt
and $bullet$
:
I also added a fnoteruleaftersep
to tweak the distance between the rule and the footnotes.
documentclass[titlepage,paper=a4,11pt,onecolumn]scrartcl
usepackage[top=3cm, bottom=3.5cm, left=2.5cm, right=2.5cm]geometry
usepackage[english]babel
usepackageblindtext
newlengthfnoterulesep
setlengthfnoterulesep2pt
newlengthfnoteruleaftersep
setlengthfnoteruleaftersep4pt
newcommandfnoterulechar.
renewcommandfootnoterule%
sbox0fnoterulecharkernfnoterulesep%
parvspace*dimexpr-baselineskip+ht0+dp0-fnoteruleaftersep%
noindent
xleadershbox%
fnoterulechar
kernfnoterulesep%
hfillfnoterulechar
par nointerlineskip
vspace*dimexpr-ht0-dp0+fnoteruleaftersep%
begindocument
sectionIntroduction
This a piece of text with a footnote herefootnoteThis is my footnote for testing purposes.
blindtext[2]
enddocument
I think you need to adjust the vertical space the total is supposed to be 0pt, but you have a paragraph with the dots
– David Carlisle
Sep 28 at 12:50
This is exactly what I need. Thanks very much!!
– José
Sep 28 at 13:14
@DavidCarlisle Indeed. I fixed it (I think :-). What problem would a non-zero height rule cause?
– Phelype Oleinik
Sep 28 at 15:46
@José See the edit. I fixed the definition after David's comment.
– Phelype Oleinik
Sep 28 at 15:46
1
@PhelypeOleinik potentially an overfull page box as the output routine leaves no space for the rule, it is assumed to take zero space
– David Carlisle
Sep 28 at 16:56
add a comment
|
Is this what you want?
documentclass[titlepage,paper=a4,11pt,onecolumn]scrartcl
usepackage[top=3cm, bottom=3.5cm, hmargin=2.5cm]geometry
usepackage[english]babel
usepackageblindtext
makeatletter
renewcommandfootnoterule%
kern -4.5pt
vbox to 0.5pthbox to textwidthleadershboxkern 4pt .kern 4pthfilvss
kern 4pt
makeatother
begindocument
vspace*12cm
sectionIntroduction
This a piece of text with a footnote herefootnoteThis is my footnote for testing purposes.
blindtext[2]
enddocument
you should force the box height to .5pt (or adjust the vskips to total - the height of a the leaders dot).
– David Carlisle
Sep 28 at 12:51
@David Carlisle: do you mean the outer box or the inner box?
– Bernard
Sep 28 at 12:55
well anything, but the output routine leaves no space for a footnote rule so the rule has to be a construct that adds no vertical space, that's why the original had two vskips totalling -.5pt and a rule of height .5pt
– David Carlisle
Sep 28 at 12:58
Your solution also works fine. I will take it as a second option. Thanks very much for you time!!
– José
Sep 28 at 13:21
@DavidCarlisle: I'm not too sure whether my modification makes the code really talke into account the vertical space 5I'm in no way a TeX specialist…)
– Bernard
Sep 28 at 13:38
|
show 3 more comments
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/4.0/"u003ecc by-sa 4.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%2f510133%2fdotted-footnote-rule%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You're looking for leaders
. leaders
is a TeX primitive used to repeat a box until it fills some space. I used xleaders
here: the x
stands for "expanded leaders", to ensure the dots are placed aligned with the margins.
I added three customisation points: fnoterulesep
is the distance between two consecutive dots, and fnoterulechar
is the character to be repeated. Here's an example with 2pt
and .
:
and here with 5pt
and $bullet$
:
I also added a fnoteruleaftersep
to tweak the distance between the rule and the footnotes.
documentclass[titlepage,paper=a4,11pt,onecolumn]scrartcl
usepackage[top=3cm, bottom=3.5cm, left=2.5cm, right=2.5cm]geometry
usepackage[english]babel
usepackageblindtext
newlengthfnoterulesep
setlengthfnoterulesep2pt
newlengthfnoteruleaftersep
setlengthfnoteruleaftersep4pt
newcommandfnoterulechar.
renewcommandfootnoterule%
sbox0fnoterulecharkernfnoterulesep%
parvspace*dimexpr-baselineskip+ht0+dp0-fnoteruleaftersep%
noindent
xleadershbox%
fnoterulechar
kernfnoterulesep%
hfillfnoterulechar
par nointerlineskip
vspace*dimexpr-ht0-dp0+fnoteruleaftersep%
begindocument
sectionIntroduction
This a piece of text with a footnote herefootnoteThis is my footnote for testing purposes.
blindtext[2]
enddocument
I think you need to adjust the vertical space the total is supposed to be 0pt, but you have a paragraph with the dots
– David Carlisle
Sep 28 at 12:50
This is exactly what I need. Thanks very much!!
– José
Sep 28 at 13:14
@DavidCarlisle Indeed. I fixed it (I think :-). What problem would a non-zero height rule cause?
– Phelype Oleinik
Sep 28 at 15:46
@José See the edit. I fixed the definition after David's comment.
– Phelype Oleinik
Sep 28 at 15:46
1
@PhelypeOleinik potentially an overfull page box as the output routine leaves no space for the rule, it is assumed to take zero space
– David Carlisle
Sep 28 at 16:56
add a comment
|
You're looking for leaders
. leaders
is a TeX primitive used to repeat a box until it fills some space. I used xleaders
here: the x
stands for "expanded leaders", to ensure the dots are placed aligned with the margins.
I added three customisation points: fnoterulesep
is the distance between two consecutive dots, and fnoterulechar
is the character to be repeated. Here's an example with 2pt
and .
:
and here with 5pt
and $bullet$
:
I also added a fnoteruleaftersep
to tweak the distance between the rule and the footnotes.
documentclass[titlepage,paper=a4,11pt,onecolumn]scrartcl
usepackage[top=3cm, bottom=3.5cm, left=2.5cm, right=2.5cm]geometry
usepackage[english]babel
usepackageblindtext
newlengthfnoterulesep
setlengthfnoterulesep2pt
newlengthfnoteruleaftersep
setlengthfnoteruleaftersep4pt
newcommandfnoterulechar.
renewcommandfootnoterule%
sbox0fnoterulecharkernfnoterulesep%
parvspace*dimexpr-baselineskip+ht0+dp0-fnoteruleaftersep%
noindent
xleadershbox%
fnoterulechar
kernfnoterulesep%
hfillfnoterulechar
par nointerlineskip
vspace*dimexpr-ht0-dp0+fnoteruleaftersep%
begindocument
sectionIntroduction
This a piece of text with a footnote herefootnoteThis is my footnote for testing purposes.
blindtext[2]
enddocument
I think you need to adjust the vertical space the total is supposed to be 0pt, but you have a paragraph with the dots
– David Carlisle
Sep 28 at 12:50
This is exactly what I need. Thanks very much!!
– José
Sep 28 at 13:14
@DavidCarlisle Indeed. I fixed it (I think :-). What problem would a non-zero height rule cause?
– Phelype Oleinik
Sep 28 at 15:46
@José See the edit. I fixed the definition after David's comment.
– Phelype Oleinik
Sep 28 at 15:46
1
@PhelypeOleinik potentially an overfull page box as the output routine leaves no space for the rule, it is assumed to take zero space
– David Carlisle
Sep 28 at 16:56
add a comment
|
You're looking for leaders
. leaders
is a TeX primitive used to repeat a box until it fills some space. I used xleaders
here: the x
stands for "expanded leaders", to ensure the dots are placed aligned with the margins.
I added three customisation points: fnoterulesep
is the distance between two consecutive dots, and fnoterulechar
is the character to be repeated. Here's an example with 2pt
and .
:
and here with 5pt
and $bullet$
:
I also added a fnoteruleaftersep
to tweak the distance between the rule and the footnotes.
documentclass[titlepage,paper=a4,11pt,onecolumn]scrartcl
usepackage[top=3cm, bottom=3.5cm, left=2.5cm, right=2.5cm]geometry
usepackage[english]babel
usepackageblindtext
newlengthfnoterulesep
setlengthfnoterulesep2pt
newlengthfnoteruleaftersep
setlengthfnoteruleaftersep4pt
newcommandfnoterulechar.
renewcommandfootnoterule%
sbox0fnoterulecharkernfnoterulesep%
parvspace*dimexpr-baselineskip+ht0+dp0-fnoteruleaftersep%
noindent
xleadershbox%
fnoterulechar
kernfnoterulesep%
hfillfnoterulechar
par nointerlineskip
vspace*dimexpr-ht0-dp0+fnoteruleaftersep%
begindocument
sectionIntroduction
This a piece of text with a footnote herefootnoteThis is my footnote for testing purposes.
blindtext[2]
enddocument
You're looking for leaders
. leaders
is a TeX primitive used to repeat a box until it fills some space. I used xleaders
here: the x
stands for "expanded leaders", to ensure the dots are placed aligned with the margins.
I added three customisation points: fnoterulesep
is the distance between two consecutive dots, and fnoterulechar
is the character to be repeated. Here's an example with 2pt
and .
:
and here with 5pt
and $bullet$
:
I also added a fnoteruleaftersep
to tweak the distance between the rule and the footnotes.
documentclass[titlepage,paper=a4,11pt,onecolumn]scrartcl
usepackage[top=3cm, bottom=3.5cm, left=2.5cm, right=2.5cm]geometry
usepackage[english]babel
usepackageblindtext
newlengthfnoterulesep
setlengthfnoterulesep2pt
newlengthfnoteruleaftersep
setlengthfnoteruleaftersep4pt
newcommandfnoterulechar.
renewcommandfootnoterule%
sbox0fnoterulecharkernfnoterulesep%
parvspace*dimexpr-baselineskip+ht0+dp0-fnoteruleaftersep%
noindent
xleadershbox%
fnoterulechar
kernfnoterulesep%
hfillfnoterulechar
par nointerlineskip
vspace*dimexpr-ht0-dp0+fnoteruleaftersep%
begindocument
sectionIntroduction
This a piece of text with a footnote herefootnoteThis is my footnote for testing purposes.
blindtext[2]
enddocument
edited Sep 28 at 15:44
answered Sep 28 at 12:24
Phelype OleinikPhelype Oleinik
40.7k9 gold badges72 silver badges133 bronze badges
40.7k9 gold badges72 silver badges133 bronze badges
I think you need to adjust the vertical space the total is supposed to be 0pt, but you have a paragraph with the dots
– David Carlisle
Sep 28 at 12:50
This is exactly what I need. Thanks very much!!
– José
Sep 28 at 13:14
@DavidCarlisle Indeed. I fixed it (I think :-). What problem would a non-zero height rule cause?
– Phelype Oleinik
Sep 28 at 15:46
@José See the edit. I fixed the definition after David's comment.
– Phelype Oleinik
Sep 28 at 15:46
1
@PhelypeOleinik potentially an overfull page box as the output routine leaves no space for the rule, it is assumed to take zero space
– David Carlisle
Sep 28 at 16:56
add a comment
|
I think you need to adjust the vertical space the total is supposed to be 0pt, but you have a paragraph with the dots
– David Carlisle
Sep 28 at 12:50
This is exactly what I need. Thanks very much!!
– José
Sep 28 at 13:14
@DavidCarlisle Indeed. I fixed it (I think :-). What problem would a non-zero height rule cause?
– Phelype Oleinik
Sep 28 at 15:46
@José See the edit. I fixed the definition after David's comment.
– Phelype Oleinik
Sep 28 at 15:46
1
@PhelypeOleinik potentially an overfull page box as the output routine leaves no space for the rule, it is assumed to take zero space
– David Carlisle
Sep 28 at 16:56
I think you need to adjust the vertical space the total is supposed to be 0pt, but you have a paragraph with the dots
– David Carlisle
Sep 28 at 12:50
I think you need to adjust the vertical space the total is supposed to be 0pt, but you have a paragraph with the dots
– David Carlisle
Sep 28 at 12:50
This is exactly what I need. Thanks very much!!
– José
Sep 28 at 13:14
This is exactly what I need. Thanks very much!!
– José
Sep 28 at 13:14
@DavidCarlisle Indeed. I fixed it (I think :-). What problem would a non-zero height rule cause?
– Phelype Oleinik
Sep 28 at 15:46
@DavidCarlisle Indeed. I fixed it (I think :-). What problem would a non-zero height rule cause?
– Phelype Oleinik
Sep 28 at 15:46
@José See the edit. I fixed the definition after David's comment.
– Phelype Oleinik
Sep 28 at 15:46
@José See the edit. I fixed the definition after David's comment.
– Phelype Oleinik
Sep 28 at 15:46
1
1
@PhelypeOleinik potentially an overfull page box as the output routine leaves no space for the rule, it is assumed to take zero space
– David Carlisle
Sep 28 at 16:56
@PhelypeOleinik potentially an overfull page box as the output routine leaves no space for the rule, it is assumed to take zero space
– David Carlisle
Sep 28 at 16:56
add a comment
|
Is this what you want?
documentclass[titlepage,paper=a4,11pt,onecolumn]scrartcl
usepackage[top=3cm, bottom=3.5cm, hmargin=2.5cm]geometry
usepackage[english]babel
usepackageblindtext
makeatletter
renewcommandfootnoterule%
kern -4.5pt
vbox to 0.5pthbox to textwidthleadershboxkern 4pt .kern 4pthfilvss
kern 4pt
makeatother
begindocument
vspace*12cm
sectionIntroduction
This a piece of text with a footnote herefootnoteThis is my footnote for testing purposes.
blindtext[2]
enddocument
you should force the box height to .5pt (or adjust the vskips to total - the height of a the leaders dot).
– David Carlisle
Sep 28 at 12:51
@David Carlisle: do you mean the outer box or the inner box?
– Bernard
Sep 28 at 12:55
well anything, but the output routine leaves no space for a footnote rule so the rule has to be a construct that adds no vertical space, that's why the original had two vskips totalling -.5pt and a rule of height .5pt
– David Carlisle
Sep 28 at 12:58
Your solution also works fine. I will take it as a second option. Thanks very much for you time!!
– José
Sep 28 at 13:21
@DavidCarlisle: I'm not too sure whether my modification makes the code really talke into account the vertical space 5I'm in no way a TeX specialist…)
– Bernard
Sep 28 at 13:38
|
show 3 more comments
Is this what you want?
documentclass[titlepage,paper=a4,11pt,onecolumn]scrartcl
usepackage[top=3cm, bottom=3.5cm, hmargin=2.5cm]geometry
usepackage[english]babel
usepackageblindtext
makeatletter
renewcommandfootnoterule%
kern -4.5pt
vbox to 0.5pthbox to textwidthleadershboxkern 4pt .kern 4pthfilvss
kern 4pt
makeatother
begindocument
vspace*12cm
sectionIntroduction
This a piece of text with a footnote herefootnoteThis is my footnote for testing purposes.
blindtext[2]
enddocument
you should force the box height to .5pt (or adjust the vskips to total - the height of a the leaders dot).
– David Carlisle
Sep 28 at 12:51
@David Carlisle: do you mean the outer box or the inner box?
– Bernard
Sep 28 at 12:55
well anything, but the output routine leaves no space for a footnote rule so the rule has to be a construct that adds no vertical space, that's why the original had two vskips totalling -.5pt and a rule of height .5pt
– David Carlisle
Sep 28 at 12:58
Your solution also works fine. I will take it as a second option. Thanks very much for you time!!
– José
Sep 28 at 13:21
@DavidCarlisle: I'm not too sure whether my modification makes the code really talke into account the vertical space 5I'm in no way a TeX specialist…)
– Bernard
Sep 28 at 13:38
|
show 3 more comments
Is this what you want?
documentclass[titlepage,paper=a4,11pt,onecolumn]scrartcl
usepackage[top=3cm, bottom=3.5cm, hmargin=2.5cm]geometry
usepackage[english]babel
usepackageblindtext
makeatletter
renewcommandfootnoterule%
kern -4.5pt
vbox to 0.5pthbox to textwidthleadershboxkern 4pt .kern 4pthfilvss
kern 4pt
makeatother
begindocument
vspace*12cm
sectionIntroduction
This a piece of text with a footnote herefootnoteThis is my footnote for testing purposes.
blindtext[2]
enddocument
Is this what you want?
documentclass[titlepage,paper=a4,11pt,onecolumn]scrartcl
usepackage[top=3cm, bottom=3.5cm, hmargin=2.5cm]geometry
usepackage[english]babel
usepackageblindtext
makeatletter
renewcommandfootnoterule%
kern -4.5pt
vbox to 0.5pthbox to textwidthleadershboxkern 4pt .kern 4pthfilvss
kern 4pt
makeatother
begindocument
vspace*12cm
sectionIntroduction
This a piece of text with a footnote herefootnoteThis is my footnote for testing purposes.
blindtext[2]
enddocument
edited Sep 28 at 13:44
David Carlisle
534k46 gold badges1213 silver badges1984 bronze badges
534k46 gold badges1213 silver badges1984 bronze badges
answered Sep 28 at 12:47
BernardBernard
199k8 gold badges88 silver badges234 bronze badges
199k8 gold badges88 silver badges234 bronze badges
you should force the box height to .5pt (or adjust the vskips to total - the height of a the leaders dot).
– David Carlisle
Sep 28 at 12:51
@David Carlisle: do you mean the outer box or the inner box?
– Bernard
Sep 28 at 12:55
well anything, but the output routine leaves no space for a footnote rule so the rule has to be a construct that adds no vertical space, that's why the original had two vskips totalling -.5pt and a rule of height .5pt
– David Carlisle
Sep 28 at 12:58
Your solution also works fine. I will take it as a second option. Thanks very much for you time!!
– José
Sep 28 at 13:21
@DavidCarlisle: I'm not too sure whether my modification makes the code really talke into account the vertical space 5I'm in no way a TeX specialist…)
– Bernard
Sep 28 at 13:38
|
show 3 more comments
you should force the box height to .5pt (or adjust the vskips to total - the height of a the leaders dot).
– David Carlisle
Sep 28 at 12:51
@David Carlisle: do you mean the outer box or the inner box?
– Bernard
Sep 28 at 12:55
well anything, but the output routine leaves no space for a footnote rule so the rule has to be a construct that adds no vertical space, that's why the original had two vskips totalling -.5pt and a rule of height .5pt
– David Carlisle
Sep 28 at 12:58
Your solution also works fine. I will take it as a second option. Thanks very much for you time!!
– José
Sep 28 at 13:21
@DavidCarlisle: I'm not too sure whether my modification makes the code really talke into account the vertical space 5I'm in no way a TeX specialist…)
– Bernard
Sep 28 at 13:38
you should force the box height to .5pt (or adjust the vskips to total - the height of a the leaders dot).
– David Carlisle
Sep 28 at 12:51
you should force the box height to .5pt (or adjust the vskips to total - the height of a the leaders dot).
– David Carlisle
Sep 28 at 12:51
@David Carlisle: do you mean the outer box or the inner box?
– Bernard
Sep 28 at 12:55
@David Carlisle: do you mean the outer box or the inner box?
– Bernard
Sep 28 at 12:55
well anything, but the output routine leaves no space for a footnote rule so the rule has to be a construct that adds no vertical space, that's why the original had two vskips totalling -.5pt and a rule of height .5pt
– David Carlisle
Sep 28 at 12:58
well anything, but the output routine leaves no space for a footnote rule so the rule has to be a construct that adds no vertical space, that's why the original had two vskips totalling -.5pt and a rule of height .5pt
– David Carlisle
Sep 28 at 12:58
Your solution also works fine. I will take it as a second option. Thanks very much for you time!!
– José
Sep 28 at 13:21
Your solution also works fine. I will take it as a second option. Thanks very much for you time!!
– José
Sep 28 at 13:21
@DavidCarlisle: I'm not too sure whether my modification makes the code really talke into account the vertical space 5I'm in no way a TeX specialist…)
– Bernard
Sep 28 at 13:38
@DavidCarlisle: I'm not too sure whether my modification makes the code really talke into account the vertical space 5I'm in no way a TeX specialist…)
– Bernard
Sep 28 at 13:38
|
show 3 more comments
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%2f510133%2fdotted-footnote-rule%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