如何使脚注跨越多列?

如何使脚注跨越多列?

我正在为 IEEE 准备一篇科学论文,使用 IEEEtran 样式,该样式提供两列布局。但是,URL 是不是参考文献应该放在脚注中。我的一些 URL 很长,长到无法放入一列,但又足够短,可以跨两列形成一行。我知道如何将浮点数、长表和方程式放在两列中,但我找不到任何方法让脚注跨两列。有什么想法吗?

大脚包也许能够做到这一点,但文档主要参考曼尼福特包,但似乎无法做到这一点。自由包不是解决方案,因为它将所有脚注放在右侧栏中。有两个相关问题ACM 格式中存在同样的问题以及回忆录文件类,但这两个问题基本上都没有答案,因此发表了这篇文章。

说明问题的代码片段

\documentclass[10pt,conference,a4paper,twocolumn]{IEEEtran}
\usepackage[colorlinks,urlcolor=blue]{hyperref}
\begin{document}
Some random text\footnote{\url{
http://ec.europa.eu/digital-agenda/interoperability-standardisation-connecting-ehealth-services}}
\end{document}

答案1

您的想法存在很大的问题,即 LaTeX 构建页面的方式。

如果页面上有两列,LaTeX 必须计算它。您想结束“两列模式”,改为一列以添加脚注。有很多因素会影响结果,例如段落的长度、脚注的长度,这会导致列长度的变化等。这不容易计算!

如果您有异议但可以在一列中放置摘要,请查看那里的情况是否不同。在开头插入一个用于完整文本宽度的框比在结尾插入要容易得多。

我的英语不太好,所以请看一下例子这个问题,看看接受的答案. 也许今天可以按照expl3Frank Mittelbach 提到的方式来重新计算,但我做不到。

因此,我建议您使用以下 MWE 将带连字符的 URL 放置在它们所属的列中:

\documentclass[10pt,conference,a4paper,twocolumn]{IEEEtran}

\usepackage{showframe} % <======================== shows the typing area
\usepackage{blindtext} % <========================= to create blind text
\usepackage[hyphens]{url} % <================ allows hyphenating of urls

\usepackage[colorlinks,urlcolor=blue]{hyperref}


\begin{document}
\Blindtext
Some random text\footnote{\url{
http://ec.europa.eu/digital-agenda/interoperability-standardisation-connecting-ehealth-services}}
\Blindtext
Some random text\footnote{\url{
http://ec.europa.eu/digital-agenda/interoperability-standardisation-connecting-ehealth-services}}
\Blindtext
\end{document}

得到的第一页如下:

首页底部

显示可点击的蓝色 URL。

答案2

对我来说,问题不是“让脚注跨越两列”——它非常愿意在不需要我任何帮助的情况下做到这一点。

its own API, so rengas can also be generated on demand.\footnote{{\tt
curl --data
"ws\_token=6B6JHXiKUAJ9VXTBymeGMWgvvpQMZ8uU\&cid=214\&t1=great\&t2=snakes"
http://ccg.doc.gold.ac.uk/research/flowr/flowrweb/}}

注意:长脚注不一定是 URL。)

在此处输入图片描述

但这看起来很糟糕。因此,以下技巧可以解决这个问题:

Regarding beauty: Modelling the complexity and
\newpage
\noindent
coherence of a poem could be a large task, but one simple method would
be to use the pairwise word similarity of words in the poem as a
proxy.

产生新的输出:

在此处输入图片描述

答案3

这可能会对你有所帮助。你不需要使用 \url 环境。如果你不使用它,那么它会跨越单个列。输出的屏幕截图已附在此处。

\documentclass[10pt,conference,a4paper,twocolumn]{IEEEtran}
\usepackage[colorlinks,urlcolor=blue]{hyperref}
\begin{document}
Some random text\footnote{http://ec.europa.eu/digital-agenda/interoperability-standardisation-connecting-ehealth-services}
\end{document}

在此处输入图片描述

相关内容