使用 \vstretch 是否会与脚注及其相关文本产生混淆?(部分更正但仍不完全正确)

使用 \vstretch 是否会与脚注及其相关文本产生混淆?(部分更正但仍不完全正确)

考虑以下代码:

\documentclass[12pt]{book}
\thispagestyle{empty}
\usepackage{scalefnt}
\usepackage{scalerel}
\usepackage{xcolor}
\usepackage{perpage} %the perpage package
\MakePerPage{footnote} %the perpage package command
\renewcommand{\thefootnote}{\fnsymbol{footnote}}
\begin{document}
\begin{center}
\vstretch{1.4}{\textnormal{\scalefont{1.5}{\textcolor{red}{\textbf{THIS IS THE FIRST STRETCHED SENTENCE}}}}} \vskip 8pt \hskip 42pt  \vstretch{1.4}{\textnormal{\scalefont{1.5}{\textcolor{red}{\textbf{THIS IS THE SECOND.\footnotemark}}}}}
\footnotetext{How come the footnotemark here is not an asterisk?}
\end{center}

\vskip 15pt

\Large
\begin{center}
\textbf{\textcolor{blue}{Here's an unstretched sentence.\footnotemark}}
\footnotetext{The footnotemark and footnote for the unstretched sentence.}
\end{center}
\end{document}

产生输出

在此处输入图片描述

在此处输入图片描述

请注意,第二个延长的句子有一个关联的脚注,如星号所示。但是,实际的脚注是用不同的符号表示的。

未拉伸的句子也表示与实际脚注相对应的脚注标记。但我不明白为什么又用了星号。

\vstretch命令导致了这些问题吗?如果是,我该如何纠正?即,我如何才能让第一个脚注表示星号,并让匕首作为脚注标记出现在未拉伸的句子及其相关脚注中?

更新

根据 Ul. Fischer 的评论,我发布了日志文件:

在此处输入图片描述

更新2 从那时起我发现如果我\footnotemark像这样重新定位命令:

\vstretch{1.4}{\textnormal{\scalefont{1.5}{\textcolor{red}{\textbf{THIS IS THE FIRST STRETCHED SENTENCE}}}}} \vskip 8pt \hskip 42pt  \vstretch{1.4}{\textnormal{\scalefont{1.5}{\textcolor{red}{\textbf{THIS IS THE SECOND.}}}}}\footnotemark

脚注标记和文本正确生成 - 尽管第一个脚注标记(星号)相对较小且没有适当升高:

在此处输入图片描述

在此处输入图片描述

修改后的问题:通过上述修改,我如何才能增加第一个脚注星号的大小并将其提升到句末的适当位置?谢谢。

相关内容