在上图中,我想将脚注标记向下移动。
我应该怎么做?
MWE 是:
\documentclass[a4paper]{article}
\usepackage[adobefonts]{ctex}
\usepackage{fontspec}
\usepackage{pifont}
\usepackage[perpage,bottom,hang]{footmisc}
% Solve the conflicts bewteen ctex and footmisc with option `hang`
\makeatletter
\renewcommand*\CTEXsetfont{%
\begingroup
\settowidth\ccwd{\CTEX@spaceChar\CJKglue}%
\edef\x{\noexpand\ccwd\the\ccwd}%
\expandafter\endgroup\x
\ifdim\parindent=0pt\else\parindent2\ccwd\fi}
\makeatother
\setlength{\footnotemargin}{1em}
\renewcommand\thefootnote{\ding{\numexpr171+\value{footnote}}}
\renewcommand\footnotesep{1.5em}
\begin{document}
\section{Hello, Section}
Hello, World! Hello, World \footnote{This is a footnote!}! Hello, World!
\end{document}