脚注缺失,但没有脚注标记回忆录两栏与一栏混合

脚注缺失,但没有脚注标记回忆录两栏与一栏混合

为了在章节标题后使用一列,我使用了宏章节后段落发布到其他地方,以便在同一页中保留章节标题后面的文本,因为 twocolumn 语句强制分页。在该文本中输入的脚注不显示,尽管脚注标记显示正确。multicol 对我来说不是一个解决方案,因为它将脚注显示为单列。我更喜欢保留基本的 twocolumn memoir 类

\documentclass[12pt, twocolumn]{memoir}
\usepackage{lipsum}

\usepackage{ragged2e}% http://ctan.org/pkg/ragged2e


\let\oldafterchaptertitle\afterchaptertitle% Store \afterchaptertitle
\newcommand{\afterchapterparagraph}[1]{%
    \renewcommand{\afterchaptertitle}{% Update \afterchaptertitle
        \oldafterchaptertitle% Old \afterchaptertitle
        \normalfont\normalsize\justifying #1% Set after-chapter paragraph
        \global\let\afterchaptertitle\oldafterchaptertitle}
    }% Restore \afterchaptertitle

\begin{document}

\afterchapterparagraph{
    \textbf{Abstract.}  
    \lipsum[1][1] Someone\footnote{Unknown Author} said: 
    \lipsum[1][2-7]\newline
    \centerline{\textit{htpp://imposiblewebsite.com/misinformation/news}}\\
    \par
}
\chapter*{Interesting Topic}

\lipsum[2] Note: \footnote{The reader must understand this note is important}\par
\lipsum[3] Warning:\footnote{Read carefully, hiden information about fees as follows: \lipsum[3][1-5]}\par
\lipsum[3]\par

\end{document}

答案1

使用 \footnotemark 和 \footnotetext:

\documentclass[12pt, twocolumn]{memoir}
\usepackage{lipsum}

\usepackage{ragged2e}% http://ctan.org/pkg/ragged2e


\let\oldafterchaptertitle\afterchaptertitle% Store \afterchaptertitle
\newcommand{\afterchapterparagraph}[1]{%
    \renewcommand{\afterchaptertitle}{% Update \afterchaptertitle
        \oldafterchaptertitle% Old \afterchaptertitle
        \normalfont\normalsize\justifying #1% Set after-chapter paragraph
        \global\let\afterchaptertitle\oldafterchaptertitle}
    }% Restore \afterchaptertitle

\begin{document}

\afterchapterparagraph{
    \textbf{Abstract.}
    \lipsum[1][1] Someone\footnotemark{} said:
    \lipsum[1][2-7]\newline
    \centerline{\textit{htpp://imposiblewebsite.com/misinformation/news}}\\
    \par
}

\chapter*{Interesting Topic}
\footnotetext{Unknown Author}%
\lipsum[2] Note: \footnote{The reader must understand this note is important}\par
\lipsum[3] Warning:\footnote{Read carefully, hiden information about fees as follows: \lipsum[3][1-5]}\par
\lipsum[3]\par

\end{document}

相关内容