在 tex4ht 中使用 adjustbox 不起作用。这是已知的限制吗?

在 tex4ht 中使用 adjustbox 不起作用。这是已知的限制吗?

谢谢 MWE 提供的解决方案邮政

%-----------------------------
\documentclass[12pt]{article}
\usepackage{graphicx}
\usepackage[export]{adjustbox}

\begin{document}

\begin{enumerate}
\item A
\item B
\item C \includegraphics[width=2cm, valign= c]{example-image-a}
\item D
\item E
\end{enumerate}
\end{document} 
%-----------------------------

在 pdf 中生成正确的对齐方式,但在 HTML 中却不是这样make4ht foo.tex

这是 HTML 和 PDF 的并排屏幕截图,以便您看到区别:

Mathematica 图形

这是一个已知的限制吗?也许自定义 CSS 配置可以解决这个问题。但如果可能的话,最好避免这种情况。

这是 TL 2018。

答案1

你是对的,一小段 CSS 可以解决这个问题:

\Preamble{xhtml}

\Css{li img{vertical-align:middle;}}
\begin{document}
\EndPreamble

tex4ht不会尝试匹配 HTML 中 PDF 版本的视觉外观,因此有时需要根据您的需要设置其样式。

结果如下:

在此处输入图片描述

相关内容