Dear forum members.
How can I remove the dot after the numbers in footnotes? I use the footmisc package.
kind regards
richirik
Page Layout ⇒ Remove dot after number in footnotes
Remove dot after number in footnotes
Last edited by richirik on Thu Mar 31, 2011 1:07 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Remove dot after number in footnotes
Somehow I can't comprehend the problem.
Please give a counterexample [1].
[1] View topic: Avoidable mistakes
Best regards and welcome to the board
Thorsten
Code: Select all
\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[bottom,flushmargin,hang,multiple]{footmisc}
\usepackage{blindtext}
\begin{document}
\blindtext\footnote{\blindtext}
\end{document}
[1] View topic: Avoidable mistakes
Best regards and welcome to the board
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Remove dot after number in footnotes
Hi Thorsten,
I try to give you a minimal counterexample, which produces the point in the numbering. I think it has something to do with the fancyhdr package.
Thanks for your help and I will try to follow the rules if the problem is solved.
kind regards
Richirik
I try to give you a minimal counterexample, which produces the point in the numbering. I think it has something to do with the fancyhdr package.
Code: Select all
\documentclass[a4paper,fontsize=10pt,twoside,openright,chapterpre fix=true,numbers=noendperiod,final]
{scrbook}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[bottom,flushmargin,hang,multiple,norule]{footmisc}
\usepackage{blindtext}
\usepackage[printonlyused]{acronym}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhfoffset{0in}
\fancyfoot{}
\fancyfoot[OR]{\thepage}
\fancyfoot[EL]{\thepage}
\setlength{\footnotesep}{0.2cm}
\deffootnote{0.4cm}{0em}{\thefootnotemark.~}
\setkomafont{disposition}{\normalfont}
\begin{document}
\blindtext\footnote{\blindtext}
\end{document}
kind regards
Richirik
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Remove dot after number in footnotes
Au contraire. It's a redefinition of the footnote mark. Just drop this line.
You should only use code from which you know what it does.
Code: Select all
\deffootnote{0.4cm}{0em}{\thefootnotemark.~}
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Remove dot after number in footnotes
Yes! the line was supposed to make the superscript of the footnote number a normal number. Therefore I let the line, but removed the point in the lin:
No it works as I wanted it. I know that I should only insert codes I understand, but sometimes it is just faster to work trial and error.
kind regards
richirik
Code: Select all
\deffootnote{0.4cm}{0em}{\thefootnotemark~}
kind regards
richirik