我希望脚注编号为上标(在正文和页面底部)。我得到的结果是正文为上标,页面底部为正常格式。我知道我要求的应该是默认设置,所以由于我对 Latex 还不太熟悉,我想我可以提供我的文档设置,然后有人可以帮助我找出哪些设置可以更改这一点。希望不要太长。
\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage[hidelinks]{hyperref}
\usepackage{xcolor}
\usepackage{graphicx}
\usepackage[font=footnotesize]{subcaption}
\usepackage[labelfont=bf]{caption}
\usepackage{float}
\usepackage{comment}
\usepackage{geometry}
\usepackage{wrapfig}
\usepackage{booktabs}
\usepackage{tabulary}
\usepackage{pdflscape}
\usepackage[flushleft]{threeparttable}
\usepackage{booktabs}
\usepackage{rotating}
\usepackage{placeins}
\usepackage{setspace}
\usepackage[bottom]{footmisc}
\hypersetup{
colorlinks,
linkcolor={red!50!black},
citecolor={blue!50!black},
urlcolor={blue!80!black}
}
\usepackage[authordate,backend=biber,autolang=other,%
bibencoding=inputenc]{biblatex-chicago}
\geometry{left=1.0in,right=1.0in,top=1.0in,bottom=1.0in}
\onehalfspacing
\begin{document}
Text text text \footnote{Footnote footenote}
\end{document}
答案1
脚注标记重新定义为biblatex-chicago
(见Biblatex 中的作者日期更改了脚注在页脚中的显示方式)。
但是,一旦你开始使用footmisc
,你可以加载它后biblatex-chicago 并让它覆盖 biblatex-chicago 在这方面的定义。
\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[authordate,backend=biber,autolang=other,bibencoding=inputenc,footmarkoff]{biblatex-chicago}
\usepackage[bottom]{footmisc}
\begin{document}
Text.\footnote{A footnote}
\end{document}
更新:biblatex-chicago 包含一个用于此行为的选项:footmarkoff
,它禁用 biblatex-chicago 对脚注的更改。无论使用then 还是 then,也许最好使用它,因为它是解决此问题的更通用的方法。事实上,这将起作用,与调用和footmisc
的顺序无关。(我已更新上述代码以包含该选项)。biblatex-chicago
footmisc