脚注被拆分到我的文档的两列中

脚注被拆分到我的文档的两列中

标题说明了一切。在我看来,它看起来有点尴尬。这是我的代码:

\documentclass[twocolumn]{article}

\usepackage{booktabs, makecell, tabularx}
\renewcommand\theadfont{\normalsize}
\renewcommand\theadgape{}
\setcellgapes{2pt}
\newcolumntype{L}{>{\raggedright\arraybackslash}X}
\usepackage{caption}
\usepackage{textcomp}
\usepackage{graphicx}
\raggedbottom
\usepackage{amsmath,geometry}
\usepackage{rotating}
\usepackage{booktabs, makecell}
\usepackage[referable]{threeparttablex}
\usepackage{siunitx}
\usepackage[skip=1ex]{caption}
\usepackage{upquote}
\usepackage{balance}
\usepackage[lite]{mtpro2} % Times Roman math font
\usepackage{float}
\usepackage{wasysym}
\title{\LARGE \bf ECON 425 Term Paper}

\begin{document}



 Next, I introduce the data I used for this study, the Standard and Poor's Execucomp, arguably the golden standard for CEO compensation data\footnote{Florin, Hallock, and Webber (2010) hold that ``ExecuComp (Executive
    Compensation data base) is produced by Standard and Poor’s Corporation and is surely the
    most widely used source of data for research on executive pay by academics.''}, and The Center for Research in Securities Prices (CRSP) data sets. 

\end{document}

在此处输入图片描述

先谢谢您的帮助!

答案1

您可能会想到以下选择:

  • 少写脚注。相反,将材料放在正文中。

  • 仅写(真正)简短的脚注。

  • 如果前面两个选项不可行,那就习惯这样的想法吧:偶尔,较长的脚注必须跨页或(在双栏文档的情况下)跨栏。老实说,我不明白这有什么“尴尬”的。为了提高美观度,您可能需要考虑使用footmisc选项bottom和加载包splitrule。该splitrule选项使 LaTeX 使用尾随脚注材料在页面上绘制全宽规则。

在此处输入图片描述

\documentclass[twocolumn]{article}
\raggedbottom
\usepackage{geometry}
\usepackage{lipsum} % filler text
\usepackage[splitrule,bottom]{footmisc} % <-- new
\hyphenation{execu-comp}

\title{\LARGE \bf ECON 425 Term Paper}

\begin{document}
\maketitle
\lipsum[1-2]

 Next, I introduce the data I used for this study, the Standard and Poor's ExecuComp, arguably the gold standard for CEO compensation data,\footnote{Florin, Hallock, and Webber (2010) hold that ``ExecuComp (Executive
    Compensation data base) is produced by Standard and Poor’s Corporation and is surely the
    most widely used source of data for research on executive pay by academics.''} and The Center for Research in Securities Prices (CRSP) data sets. 

\lipsum[3-5]
\end{document}

相关内容