我正在尝试排版有关神学的书籍,但这些书籍的页脚注很多。因此,我想将脚注插入到页脚(页脚)的列中,就像这个地址中的书一样(例如,这本书的第 6 页和第 7 页):
https://archive.org/details/institutesofchris02calv/page/6/mode/2up
我尝试了很多解决方案,但还是不行。该怎么办?
请原谅我的英语不好。
提前致谢!
我的代码:
\documentclass[a5paper]{book}
\usepackage[english]{babel}
\usepackage{setspace}
\usepackage[left=15mm,top=20mm,bottom=15mm,right=15mm]{geometry}
\usepackage{ragged2e}
\usepackage{hyphenat}
\usepackage{fancyhdr}
\usepackage[para]{manyfoot}
\usepackage{multicol}
\widowpenalty10000
\clubpenalty10000
\renewcommand{\headrulewidth}{0pt}
\renewcommand\footnoterule{\rule{\linewidth}{0pt}}
\begin{document}
\rmfamily
\parskip 0in
\headsep 0.3cm
\footskip 0cm
%These are in another files.
\include{Capa}
\include{PrefacioTradutor}
\include{PrefacioAutor}
%This is for configure footnotes markers and fonts.
%\renewcommand{\thefootnote}{(\textit{\alph{footnote}})}
%\makeatletter
%\renewcommand\@makefnmark{{{\normalfont\@thefnmark}}\ }%
%\makeatother
%\setcounter{footnote}{0}
\end{document}
答案1
\documentclass
如果您能提供一份 MWE(从到),以便我们编译并显示您的问题,那将非常有帮助\end{document}
。您发布的 MWE 没有\footnote
s
该类memoir
(该类的超集book
提供普通脚注(\plainfootnotes
)、两栏脚注(\twocolumnfootnotes
)、三栏脚注(threecolumnfootnotes
)以及全部合并为一个段落的脚注(\paragraphfootnotes
)
编辑
以下是一个例子:
% colfootnotesprob.tex SE 634234
\documentclass{memoir}
\usepackage{lipsum}
\begin{document}
\lipsum[2]
Text\footnote{First footnote}
%\twocolumnfootnotes
\threecolumnfootnotes
Text\footnote{Second footnote}
Text\footnote{Third footnote}
Text\footnote{Another footnote}
Text\footnote{And yet another longer footnote}
\plainfootnotes
Text\footnote{Fourth footnote}
\lipsum[2]
\end{document}
但是,关于您关于multicols
为脚注添加类似功能的评论,我认为这将非常困难。您认为什么样的用户界面合适?您如何为每个单独的脚注指定它应该适合的多列数量。将所有类似风格的脚注归为一组,而不考虑它们在文本中的顺序,还是其他什么?我可以想象许多其他用户界面需求。