tex4ht 输出中虚假的斜体脚注钩子

tex4ht 输出中虚假的斜体脚注钩子

tex4ht当脚注的第一个单词以斜体显示时,在页面底部错误地将脚注钩(例如,第一个脚注为“1”)斜体显示。

梅威瑟:

%!TEX TS-program = xelatex
%!TEX encoding = UTF-8 Unicode

\documentclass[12pt]{memoir}
\usepackage{ifmtarg}
\usepackage{calc}

%Greek
\newcommand{\greek}[1]{#1}
\newcommand{\gk}[1]{#1}

%Arabic
\newcommand{\ar}[1]{#1}
\newenvironment{arab}{}{}

% Bibliography etc
\usepackage[notes]{biblatex-chicago}
\addbibresource{biblatex-examples.bib}


\usepackage{textcomp} % For angle brackets `\textlangle` and `\textrangle`

\begin{document}


%%%%%%%%%%%%%%%%%%%%
%%%    My text goes here:    %%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%

Text.\footnote{Ordinary footnote: \cite{knuth:ct}.}

Text.\footnote{\emph{Italicized} first word of footnote.}


%%%%%%%%%%%%%%%%%%%%
%%%    My text ends here:    %%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%

\end{document}

有办法修复这个错误吗?

答案1

该问题似乎已在最近的tex4ht开发中得到修复,因为当前开发版本产生了以下结果(页面已调整大小以使屏幕截图更小):

在此处输入图片描述

相关内容