脚注がページから外れてしまう理由が分からない

脚注がページから外れてしまう理由が分からない

脚注がページの右余白からはみ出してしまう理由がわかりません。

私の最初のコードは次のとおりです。

\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

bibtex引用と参照を管理するには、またはbiblatex/ の使用を検討する必要があります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}

魂を込めて下線を引く

関連情報