Fancyhdr,带脚注的精美页脚

Fancyhdr,带脚注的精美页脚

目的
我正在使用fancyhdr包在页眉和页脚上放置一些文本。

问题
我希望我的脚注作为花式页脚的一部分出现,而不是像所示的那样单独出现。

其他试验
我尝试过\usepackage[bottom]{footmisc},但那只是让常规脚注出现在页面底部,但却没有将脚注与花式页脚整合在一起。

平均能量损失

\documentclass{article}
\usepackage{fancyhdr}
\fancypagestyle{plain}{%
  \cfoot{\thepage}
  \renewcommand{\headrulewidth}{0.4pt}
  \renewcommand{\footrulewidth}{0.4pt}
}
\pagestyle{plain}

\begin{document}

The family of exponential densities would be useful in Maximum Likelihood estimators later in the course. \footnote{Lets try and do some mathematica simulations for showing these densities and the effect of parameter variations.}

\end{document}

我的花哨脚注与常规脚注相冲突

答案1

看到这个答案后,我也遇到了同样的问题弗兰克·恩格尔哈特方法我尝试使用 etoolbox 包对其进行改进,甚至在存在脚注时将页码移到右侧,并且可以处理多个脚注。(Frank 的版本更简单,但无法处理多个脚注,您必须手动标记它们。)

\documentclass{article}
\usepackage{fancyhdr}%
\usepackage{etoolbox}%

\newcommand{\makefootnotelist}[1]{%
    \parbox{0.8\textwidth} {%
        \footnotesize{%
            \renewcommand*{\do}[1]{##1\\}%
            \dolistcsloop{#1}}}}%
\newcommand{\fancyfootnote}[1]{%
    \footnotemark{}%
    \def\listname{footlist\thepage}%
    \def\n{$^{\the\numexpr\value{footnote}}$}
    \ifcsdef{\listname}%
        {\listcseadd{\listname}{\n\ #1}}%
        {\csedef{\listname}{}%
        \listcseadd{\listname}{\n\ #1}}%
    \fancypagestyle{fancyfootnote}{%
        \fancyfoot[LO,RE]{\makefootnotelist{\listname}}%
        \fancyfoot[RO,LE]{\thepage}%
        \fancyfoot[C]{}%
    }\thispagestyle{fancyfootnote}}%

\fancypagestyle{plain}{%
  \fancyfoot[C]{\thepage}
  \renewcommand{\headrulewidth}{0.4pt}
  \renewcommand{\footrulewidth}{0.4pt}
}
\begin{document}
The family of exponential densities would be useful in Maximum Likelihood estimators later in the course. \fancyfootnote{Lets try and do some mathematica simulations for showing these densities and the effect of parameter variations.}
\end{document}

您甚至可以重新定义 \footnote,这样就不必使用其他的了:

% Use instead of fancyfootnote
\renewcommand{\footnote}[1]{% ... }%

\cfoot{}它现在已被弃用,使用\fancyfoot[C]{}反而

以您的代码为例。

相关内容