不知道為什麼腳註會從頁面上消失

不知道為什麼腳註會從頁面上消失

我不明白為什麼我的腳註超出了頁面右側的頁邊距。

我的開始代碼如下:

\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

您確實應該考慮使用bibtexor 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}

用靈魂劃線

相關內容