使用 Adob​​e Garamond Pro 字体时,\footnote 命令会出现奇怪的符号

使用 Adob​​e Garamond Pro 字体时,\footnote 命令会出现奇怪的符号

我尝试使用 \footnote{} 命令在论文中表示感谢,但符号很奇怪,不是我想要的。我切换到 \thanks{} 命令,但还是没有用。这个符号是邮件符号,看起来像一个信封符号。

具体来说,此代码不起作用,因为它产生了有趣的符号:

\title{\textbf{Title\footnote{We thank ABC. All errors remain our own.}}} 

能否请你帮忙?

以下是完整的代码片段:

\documentclass[a4paper, titlepage]{article}
\usepackage[margin=1in]{geometry}
\usepackage{amsmath,amsthm,amssymb}
\usepackage[usenames,svgnames,table]{xcolor} % Use "svgnames" in place of "dvipsnames" to have more colors.

%\usepackage[english]{babel} % Multi-language support
\usepackage[round,sort&compress, authoryear]{natbib}
% \addto\captionsenglish{\renewcommand{\bibname}{References}} % Change default "Bibliography" to my favorite "References"
\usepackage[labelfont=bf]{caption} % To get Table Heading number BOLD
\usepackage{indentfirst} %All paragraphs are indented
\renewcommand*{\thefootnote}{\fnsymbol{footnote}} % Modify default footnote markers

% Install my favorite fonts with math fully supported
\usepackage[]{mathdesign}
\usepackage[no-math]{fontspec} % If you find that fontspec is incorrectly changing the maths font when it shouldn’t be, apply the no-math package option to manually suppress its selection of the maths fonts.
\setmainfont[Ligatures=TeX, Kerning=Uppercase, Numbers=Proportional]{Adobe Garamond Pro} % Option: Ligatures=TeX
\setmathrm{Adobe Garamond Pro} 
% some additional (optional) typographic enhancements
\usepackage{microtype}
\usepackage[english]{selnolig} % of course, this won't do much for latin lipsum text :-)

%%%%%%%%%%%%%%%%%%%%%% Put the following at LAST %%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage[hidelinks]{hyperref} % Use "hidelinks" option to make links black; put "linktocpage" as an option will show red link around page numbes in TOC only, not the whole text and page numbers



% \usepackage[hyphens]{url} % I need this whenever I have too long an URL in footnote

\begin{document}
%\sloppy
\title{\textbf{Title\footnote{We thank ABC. All errors remain our own.}}} 

\author{
    Author Full Name\thanks{
            University Name, Place, Country. \href{mailto: [email protected]}{[email protected]}
        }
    }

\vfill

\date{First version: March 2014 \\This version: July 2016 }

\maketitle

% Blind title
\begin{center}
    \LARGE {\textbf{Blind Title}}

    \vspace{1cm}
    Abstract
\end{center}

\noindent This paper examines a couple of things...

\vspace{1cm}
\noindent JEL Classifications: \textit{G23; G32; G34}.

\noindent Keywords: \textit{Keyword 1; Keyword 2.}

\newpage


\section{Introduction}
\renewcommand*{\thefootnote}{\arabic{footnote}} % Set back to default
Something here

\subsection{Data}
Something there

\clearpage
\bibliographystyle{chicago}

\clearpage
% \section*{Appendices}
% \appendix

\end{document}

相关内容