LyX ⇒ Space after footnote number below
Space after footnote number below
I'd like to have a small space between the footnote number in the footer and the commenting text. It is not possible to add a blank at the beginning and this would be too elaborate anyway. Is there a simple way to adjust the layout in this way?
Thank you very much.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Re: Space after footnote number below
Right now, i am not sure what you mean. Do you want to have a horizontal space between the footnote number and the footnote text?
Re: Space after footnote number below
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Space after footnote number below
Code: Select all
\documentclass{article}
\usepackage{scrextend}
\deffootnote[1em]{1.5em}{1em}{%
\textsuperscript{\thefootnotemark}~%
}
\usepackage{blindtext}
\begin{document}
\blindtext\footnote{This is just some example text. \blindtext}
\blindtext
\blindtext
\end{document}

Re: Space after footnote number below
As I said, I mostly manage to work with Lyx perfectly without using code. But I assumed I had to insert parts of your provided code into the preamble and now I got what I wanted. Would there be an easier way when I use a document class by the KOMA script?
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Space after footnote number below
Code: Select all
\usepackage{scrextend}
\deffootnote[1em]{1.5em}{1em}{%
\textsuperscript{\thefootnotemark}~%
}
The KOMA classes are designed to be highly configurable, the default look is great especially for european users.
The default classes like article have been around for 30 years and provide a basic set of things. Many packages (or module, or add-on if you like) have been developed to configure article in various ways. KOMA, as well as memoir, try to put it all on the same boat. Everything shares the same code base. Whereas the different packages act a bit like screwing and mounting stuff to something already existing.
This makes classes like memoir or the whole KOMA bundle in a way easier to use for beginners.
Why isn't it the standard? There is still a really big user base using the standard classes, they don't mind fixing incompatibilities in the packages for themself and others. There are thousands of little patches out there for every single problem.
It could be, that you have to add option=true with KOMA-script, but use 20 lines of code with a standard class. Under the hood, KOMA might need 100 lines of code, but this is due to thinking about every single instancce that could change.
Re: Space after footnote number below
When I create a new document with the KOMA article class, the headings are in a different, sans-serif, font instead of the Times of the text. That is confusing and makes it harder to get to know the improvements the class may provide.
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Space after footnote number below
The default headings for sectioning units are sans serif with KOMA-script, that is right. You can get it to be serif by using the global option
emulatestandardclasses
and hence get the look and feel of the standard classes. The improvements can be accessed by simple options, but you need to use some LaTeX code. But this shouldn't be a problem, according to one of the developers of LyX:
always recommend that you learn the basics of LaTeX before you learn LyX. LyX will not save you from learning LaTeX so you might as well learn it well from the start. After you really understand what LyX is doing (through LaTeX), you might find you like it better than using LaTeX directly. This is the case for me. This is also why I don't think LyX is a software for newbies. I think it should be used by advanced LaTeX users who understand what they're delegating to LyX and how to step in to take control when they want to. But many people disagree with me on that.
My main point: I don't think you should try to learn LyX instead of learning LaTeX. That would be a mistake in my opinion.
Re: Space after footnote number below
I assume that learning LaTeX would be too time-consuming. But maybe I'm wrong about that and I'll change my mind sometime.
Just a last question: How do I use the global option emulatestandardclasses in the KOMA-script? What do I insert into the preamble?
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Space after footnote number below
Lyx can be used without any knowledge, as always when pushing buttons. You just have to make to push the right one

Code: Select all
\documentclass[
%emulatestandardclasses
]{scrbook}
%\documentclass{book}
\usepackage{blindtext}
\begin{document}
\blinddocument
\end{document}
How to enable this option with LyX? No idea, i bet there is a little menu somewhere.
