不确定为什么脚注会超出页面范围

不确定为什么脚注会超出页面范围

我不知道为什么我的脚注会从页面的右边距溢出。

我的开始代码如下:

\documentclass[a4paper,12pt]{article} 
\usepackage{changepage} 
\usepackage{indent first} 
\usepackage{graphicx} 
\usepackage[margin=1.0in]{geometry} 
\usepackage{setspace} 
\usepackage{bigfoot} 
\DeclareNewFootnote{default} 
\usepackage{graphicx} 

\begin{document} 
\section{Introduction} 
Null. \footnote {Himmelstein, Thorne, Warren, Woolhandler, \underline{Medical Bankruptcy in the United States, 2007: Results of a National Study}, \textit{The American Journal of Medicine}, 2009.} \\

\end{document}

答案1

您确实应该考虑使用bibtexbiblatex/biber来管理引文和参考文献。但是,如果您真的坚持手动执行此操作,那么您需要一个更智能的下划线宏,允许换行。soul可以这样做:

\documentclass[a4paper,12pt]{article}
\usepackage{indentfirst}
\usepackage[margin=1.0in]{geometry}
\usepackage{bigfoot}
\DeclareNewFootnote{default}
\usepackage{soul}
\begin{document}
  \section{Introduction}
  Null. \footnote {Himmelstein, Thorne, Warren, Woolhandler, \ul{Medical Bankruptcy in the United States, 2007: Results of a National Study}, \textit{The American Journal of Medicine}, 2009.}
\end{document}

用灵魂强调

相关内容