配置脚注位置和间距

配置脚注位置和间距

(A) 如何将脚注垂直向下移动 1 毫米左右?(B)我想在一个脚注和下一个脚注之间以及在第一个脚注和将其与常规文本分隔开的行之间添加一些额外的空间。

\vspace{1mm}命令内部\footnote{}并不能解决这个问题。

使用 XeTex

\documentclass[12pt]{article}
\usepackage[top = 1in, bottom = 1in, left = 1in, right = 1in]{geometry}
\usepackage{amsmath, booktabs, graphicx, setspace}
\usepackage[T1]{fontenc}
\usepackage[hang]{footmisc}
\begin{document}
\begin{spacing}{1.9}
TEXT.\footnote{\vspace{1mm} my footnote is here.}
\end{spacing}
\end{document}

(C) 如何防止长脚注在下一页部分延续?(D)我还必须找到一种在脚注中换行而不调整第一行的方法。

footmisc包(带有“hang”选项)只会使脚注符号与左侧齐平。(E)我实际上想将其放置在距离左边距几点的位置。(F)并将脚注编号加粗。

答案1

我不知道我是否完全明白你想要达到的目的...

  • “在一个脚注和下一个脚注之间以及在第一个脚注和将其与常规文本分隔开的行之间添加一些额外的空格”您可以在序言中添加以下行(更改5mm1mm或任何您需要的内容):

    \addtolength{\footnotesep}{5mm} % change to 1mm
    
  • “将脚注编号加粗”您可以在序言中添加以下行:

    \renewcommand{\thefootnote}{\textbf{\arabic{footnote}}}
    
  • “将其放置在距离左边距几个点的位置”footmisc您可以使用以下选项加载该包flushmargin

    \usepackage[flushmargin]{footmisc}
    

完整代码:

\documentclass[12pt]{article}
\usepackage[top = 1in, bottom = 1in, left = 1in, right = 1in]{geometry}
\usepackage{amsmath, booktabs, graphicx, setspace}
\usepackage[T1]{fontenc}

\usepackage[flushmargin]{footmisc}

\addtolength{\footnotesep}{5mm} % change to 1mm

\renewcommand{\thefootnote}{\textbf{\arabic{footnote}}}

\begin{document}
\begin{spacing}{1.9}
TEXT.\footnote{my first footnote is here.}

TEXT.\footnote{my second footnote is here.}
\end{spacing}
\end{document} 

输出:

在此处输入图片描述

答案2

以下是我所知道的修改脚注设置的方法。我认为你可以用它解决一些问题。将以下内容放入你的序言中:

\makeatletter                                                                 
    \def\footnoterule{\kern-6\p@        % you can put other values to increase vertical space between rule and notes (just try out); difference between the values after "kern" is the width of the rule!
  \hrule \@width 2in \kern 5.7\p@}  % the in value is the length of the footnoterule
\makeatother

\addtolength{\skip\footins}{2pt}    % vertical space between rule and main text

\setlength{\footnotesep}{12pt}  % vertical space between footnotes

\let\origfootnote\footnote       % font size of footnotes; changes \footnotesize command only inside footnotes!
\renewcommand{\footnote}[1]{%
   \renewcommand\footnotesize\scriptsize     % here there is scriptsize in footnotes (example)       
   \origfootnote{#1}}                   

答案3

\footnote{嗨}
\footnote{\vphantom{\巨大的${A^{A}}^{A}$}遥远{\tt footnote}}

结果是:

在此处输入图片描述

答案4

对于 (C),您可以\interfootnotelinepenalty=10000在序言中设置。这将防止所有脚注被拆分。如果您只想对特定注释进行此设置,只需\samepage在注释开头说:\footnote{\samepage ...}

相关内容