如何在脚注后获得句号而不向左刷新(即没有芝加哥围兜的芝加哥式脚注)

如何在脚注后获得句号而不向左刷新(即没有芝加哥围兜的芝加哥式脚注)

如果这个问题已经得到解答,请见谅。我找不到任何答案。

现在,我的脚注如下所示: 在此处输入图片描述

我希望它们看起来像这样,即不是上标并且在它们后面有一个句号,如下所示:在此处输入图片描述

我的理解是芝加哥风格产生了这种脚注风格,但我希望有这种脚注风格没有使用 biblatex 或 Chicago。

我发现的只是给我这个(使用\deffootnote{2em}{2em}{\thefootnotemark.\enskip}): 在此处输入图片描述

提前感谢您的任何帮助/指导!

一位 MWE 表示:

\documentclass[reqno, 11pt]{article}
\usepackage[margin=1.5in]{geometry}
\usepackage{setspace}
\usepackage{lastpage}
\pagestyle{plain}
\usepackage{etoolbox}
\usepackage{epigraph}
\usepackage{verbatim} %gives a begin{comment} enviro 
\usepackage{lmodern}
\usepackage{amssymb,amsmath,enumitem} 
\usepackage[usenames,dvipsnames,svgnames,table]{xcolor} 
\usepackage{scrextend} %customize footnotes
\usepackage[hyphens]{url} %breaks up URL's to prevent overfull hbox 
\usepackage{lipsum}

%Fonts and Sections 
\usepackage[T1]{fontenc}
\usepackage[osf,sc]{mathpazo}
\usepackage{titlesec}

%%FOOTNOTE
%\deffootnote{2em}{2em}{\thefootnotemark.\enskip} %gives period and alignment... 
\makeatletter
\makeatother

\begin{document} 
    \title{TITLE}
    \author{} 
    \date{}
    \maketitle

\section{Test}
Testing testing testing\footnote{Test footnote. Let's see what this looks like. Let's see what it looks like when it's even longer, to see how it looks on two lines.}. TEST TEST EST.\footnote{Testing again.}

\end{document}

答案1

你可以比你自己的答案更简单地做到这一点。

\documentclass{article}
\makeatletter
\renewcommand\@makefntext[1]{\parindent 1.8em\@thefnmark.~#1}
\makeatother
\begin{document}
\null\vfill
Filler text.\footnote{Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.}
Filler text.\footnote{Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.}
\end{document}

输出

答案2

所以,事实证明我的搭档——我不知道——是一位脚注专家。

以下是他的想法:

\makeatletter

% % footnote modification: must be between \makeatletter and \makeatother

\renewcommand{\@makefntext}[1]{%
  \setlength{\parindent}{0pt}%
 
  \begin{list}{}{\setlength{\labelwidth}{0mm}% indents footnote text 
    \setlength{\leftmargin}{\labelwidth}%
    \setlength{\labelsep}{3pt}% moves footnote mark to the left
     \setlength{\itemsep}{0pt}%
      \setlength{\parsep}{0pt}%
      \setlength{\topsep}{-3pt}% removes separation between footnotes
    \footnotesize}%
  \item[\hspace{1em} \@thefnmark.\hfill]#1% @makefnmark
  \end{list}%
}
%      \setlength{\footnotesep}{0pt}%

\makeatother

分享以防对某人有帮助。

此外,我们都不太清楚以下命令的作用,因此如果有人对此有指导,那将是有用的知识:

    \setlength{\leftmargin}{\labelwidth}%
     \setlength{\itemsep}{0pt}%
      \setlength{\parsep}{0pt}%

与末尾的 \hfill 相同。

相关内容