我正在尝试在双栏文档 (IEEEtran) 的脚注中写一个长公式,类似于附图。我尝试使用“multicols”命令,但脚注从右栏开始并延伸到页面之外。
我也尝试过将方程式包含在浮动环境中,但在这种情况下,图形会被放置在下一页,而不是我想要的页面中,尽管有足够的空间。
请帮忙。
答案1
它似乎1/2 的猪圈可以完成双栏文档中单栏摘要和脚注的工作,其功能有:
\mathfootnote{..}
一个最小的工作示例:
\documentclass[twocolumn]{article}
\usepackage{1-in-2}
\title{Title}
%
\author{Author}
\begin{document}
\maketitle
\section{A section}
Blablabla.
An example
\begin{quote}\begin{verbatim}
\mathfootnote{%
\begin{equation}
\left\{\begin{array}{c}
x \\ ...
..........
\end{equation}}
\end{verbatim}\end{quote}
will output an equation in the footnote of this page.
\newcommand{\fat}[1]{\mbox{\boldmath{$#1$}}}
\mathfootnote{
\begin{equation}
\left\{\begin{array}{c} x \\ y \\ z \end{array}\right\}=
\left(\begin{array}{ccc}
a+b/r & c-d/s & e/f-g \\
& h+k/t & m/n+p \\
\multicolumn{2}{l}{\mbox{Symm.}} & q-u/v
\end{array}\right)
\left\{\begin{array}{c} \alpha \\ \beta \\ \gamma \end{array}\right\},
\qquad\mbox{or}\qquad \fat{x}=\fat{C}\,\fat{\lambda}\label{eq:foot}
\end{equation}}
\begin{center} [Eq.(\ref{eq:foot}) is in the footnote.] \end{center}
where $\alpha$ and $\cdots$.
\end{document}
输出:
答案2
您可以尝试使用浮动。我使用了类似的构造\twocolumn
,效果相当好,尽管与使用脚注选项相比,将浮动置于正确页面上的正确位置需要更多努力。请记住,您需要在正确的位置定义浮动。尝试将其放在至少大部分正文的前面。
\usepackage{float}
\newfloat{footnote}{hb}
\begin{document}
text
\begin{footnote*}[hb!]
footnote text
\end{footnote*}
rest of text
\end(document}
如果您使用多列而不是标准的两列,那就更简单了。只需在主部分的末尾结束多列,然后将页面宽度放在其下方即可。
\usepackage{float}
\newfloat{footnote}{hb}
\usepackage{multicol}
\begin{document}
\begin{multicols}{2}
text
\end{multicol}
\begin{footnote*}[hb!]
footnote text
\end{footnote*}
\begin(multicols}{2}
rest of text
\end{multicols}
\end(document}