使用 \quoting 将脚注放在引用文本下

使用 \quoting 将脚注放在引用文本下

我正在使用quoting包环境来...引用一些文本!并且我试图让一些与引用内容相关的脚注出现在其正下方。

我尝试过使用 minipage 方法,正如这里所示,但未能实现:例如,引用的文本没有保留在它的列中,或者我收到错误消息。

我已粘贴我现在拥有的代码并且它可以工作。

\documentclass[oneside,centered,twocolumn]{book}
\special{papersize=215.9mm,279.4mm}
\usepackage[english]{babel}
\usepackage{blindtext}

% QUOTE TEXT MARGINS %%%%%%%%%%%%%%%%%%%%%%%%
\usepackage[rightmargin=0pt]{quoting}

% FOOTNOTES IN QUOTATION %%%%%%%%%%%%%%%%%%%%

\usepackage[symbol]{footmisc}
\renewcommand{\thefootnote}{\fnsymbol{footnote}}

\begin{document}

\blindtext

\begin{quoting}[leftmargin=\parindent]
    Immob was this too! A landscape of bleak solemnities punctuated with pratfalls both programmed and unprogrammed\footnote{Computers!}! A nation of unsmiling priests top-heavy with mission and frozen-mugged with dedication, stopping every so often, at every pratfall, to laugh at unholy glee at themselves\footnote{Your dog is nice.} and each other–at the symbols of their mission and the objects of their dedication. Here was ambivalence with a vengeance: a whole\footnote{The cake is pink.} inspired people plunging the dagger of the horselaugh into the bowels of its inspiration.
\end{quoting}

\blindtext

\end{document}

在此处输入图片描述

答案1

我认为,贡萨洛·梅迪纳很好回答对你来说就足够了。

    \documentclass[oneside,centered,twocolumn]{book}
    \special{papersize=215.9mm,279.4mm}
    \usepackage[english]{babel}
    \usepackage{blindtext}

    % QUOTE TEXT MARGINS %%%%%%%%%%%%%%%%%%%%%%%%
    \usepackage[rightmargin=0pt]{quoting}

    % FOOTNOTES IN QUOTATION %%%%%%%%%%%%%%%%%%%%
    \usepackage{nccfoots}
    \makeatletter
    \newenvironment{fnquote}
      {\begin{quote}\begin{minipage}{\linewidth}
      \renewcommand\@makefntext[1]{\noindent\makebox[1em][l]{\@makefnmark}##1}}
      {\end{minipage}\end{quote}}
    \makeatother
    \newcommand\qtfootnote[2]{\Footnotemark{#1}\Footnotetext{#1}{#2}}

    \begin{document}

    \blindtext

    \begin{fnquote}
Immob was this too! A landscape of bleak solemnities punctuated with pratfalls both programmed and unprogrammed\qtfootnote{*}{Computers!}! A nation of unsmiling priests top-
heavy with mission and frozen-mugged with dedication, stopping every so often, at every
 pratfall, to laugh at unholy glee at themselves\qtfootnote{\#}{Your dog is nice.} and
 each other–at the symbols of their mission and the objects of their dedication. Here was
 ambivalence with a vengeance: a whole\qtfootnote{\$}{The cake is pink.} inspired people
 plunging the dagger of the horselaugh into the bowels of its inspiration.
    \end{fnquote}

    \blindtext

    \end{document}

在此处输入图片描述

相关内容