两列布局中的四列脚注

两列布局中的四列脚注

是否可以在 2 列布局中获得 4 列脚注?并在脚注区域周围画一条细线?

像这样的布局:

在此处输入图片描述

这就是我所取得的成就:

\documentclass[11pt,twoside]{book}
\usepackage[paperwidth=6.5in, paperheight=9in, top=0in, bottom=0in, left=0in, right=0in]{geometry}
\usepackage[letter,center,cam]{crop}
% formatage marges, etc.
\setlength{\voffset}{0in} % offset haut
\setlength{\hoffset}{0in} % offset gauche
\setlength{\topmargin}{-0.5in} % marge en tête
\setlength{\oddsidemargin}{-0.25in} % marge texte gauche
\setlength{\evensidemargin}{-0.5in} % marge texte droite
\setlength{\textheight}{7.5in} % hauteur du texte
\setlength{\textwidth}{5.25in} % largeur du texte
\setlength{\columnseprule}{0.4pt} % épaisseur séparateur colonne
\setlength{\parskip}{0pt} % espace entre paragraphes

\usepackage[frenchb]{babel}
\usepackage{fontspec}
\setmainfont[Scale=1]{EB Garamond}
\setsansfont{Roboto Condensed}
\setmonofont{Liberation Mono}

\usepackage{titlesec}
\usepackage{multicol}
\usepackage{lettrine}

\usepackage{footnote}
\usepackage{adjustbox}

\setcounter{collectmore}{-1}
% entête de base
\pagestyle{myheadings}
% césures - niveau de liberté
\sloppy\hyphenpenalty=2000
\widowpenalty=10000
\clubpenalty=10000

% ------------------------------------------------------------------------------------------
\newcommand{\ShortTitle}[1]{\def\BookName{#1}\par\goodbreak\bigskip\setcounter{footnote}{0}}
\newcommand{\BookTitle}[1]{\par\goodbreak\bigskip{\parindent=0mm\begin{center}{\small\bfseries{\LARGE #1\nopagebreak}}\end{center}}\addcontentsline{toc}{subsection}{#1}\nopagebreak\par\nobreak}
\newcommand{\Chap}[1]{\def\ChapNum{#1}\def\VerseNum{1}}
\newcommand{\VerseOne}{\markboth{\BookName~\ChapNum.1}{\BookName~\ChapNum.1}\lettrine[nindent=0pt, lines=2, lraise=0, loversize=0.33, depth=0]{\textsf{\ChapNum}}}
\newcommand{\VS}[1]{\markboth{\BookName~\ChapNum.#1}{\BookName~\ChapNum.#1}\def\VerseNum{#1}{\up{\textsf{\textbf{#1}}}}}
\renewcommand{\thefootnote}{\alph{footnote}} % repères alphabetiques
\renewcommand{\footnoterule}{\hrule width \textwidth} % longueur ligne
\newcommand{\Note}[1]{\ifnum\value{footnote}>25\setcounter{footnote}{0}\fi\footnote{~#1}}
\newcounter{TitleVerseNum}
\newcommand{\TitleNote}[1]{\ifnum\value{footnote}>25\setcounter{footnote}{0}\fi\setcounter{TitleVerseNum}{\VerseNum}\ifnum\value{TitleVerseNum}>1\addtocounter{TitleVerseNum}{1}\fi\footnote{[\NoAutoSpaceBeforeFDP{\ChapNum.\theTitleVerseNum}]~#1}}
\titlespacing*{\subsection}{0pt}{5pt plus 0pt minus 0pt}{3pt plus 0pt minus 0pt}
\titlespacing*{\subsubsection}{0pt}{3pt plus 0pt minus 0pt}{3pt plus 0pt minus 0pt}
\newcommand{\ssubsection}[1]{\subsection*{\centering\footnotesize\normalfont #1}\PP}
\newcommand{\ssubsubsection}[1]{\subsubsection*{\centering\scriptsize\normalfont #1}\PP}
\newcommand{\TextTitle}[1]{\ssubsection{\textsf{\normalsize\textbf{#1}}}}
\newcommand{\TextRef}[1]{\ssubsubsection{[\textit{#1}]}}

\newcommand{\BFont}{\normalfont\small}
\newcommand{\PP}{\par\parindent=0mm}
\newcommand{\PPE}{\par\parindent=4mm}

% ------------------------------------------------------------------------------------------
\begin{document}
% en-tête vide
\makeatletter
\def\@evenhead{}
\def\@oddhead{}
\makeatother

% en-tête pages
\makeatletter
\def\@evenhead{{\NoAutoSpaceBeforeFDP{\small\sc{\rightmark\hfil\thepage\hfil\leftmark}}}}
\def\@oddhead{{\NoAutoSpaceBeforeFDP{\small\sc{\rightmark\hfil\thepage\hfil\leftmark}}}}
\makeatother

\clearpage\input{structure/01-Genese}

\end{document}

在此处输入图片描述

我的搜索没有成功。

谢谢!

答案1

阿兰,如果您真的只需要短脚注 - 比如诗句引用或单个短句 - 您可能能够使用此处描述的解决方案:列中的简短脚注

我希望这有帮助。

相关内容