tex4ebook/tex4ht epub: tcolorbox 如何使标题居中并设置标题字体

tex4ebook/tex4ht epub: tcolorbox 如何使标题居中并设置标题字体

pdftex 正确地在下面的 mwe 中设置了框,并带有居中、大且粗体的标题。

然而,tex4ebook 既不居中,也不加粗或变大。

请帮我使用 tex4ebook 在 tcolorbox 中设置居中、粗体、较大字体大小的标题以制作 epub 格式。

母语:

\documentclass{book}
\usepackage[most]{tcolorbox}

\begin{document}

\begin{tcolorbox}[colback=black!5,
    colframe=black!5,
    title={Top Title},
    coltitle=black, 
    fonttitle=\bfseries\Huge\centering, % in epub is not centered, bold, or big
    sharp corners,
    enhanced,
    breakable,
]

  My box.

\end{tcolorbox}
    
\end{document}

答案1

您可以tcolorbox使用 CSS 设置标题样式。尝试以下配置文件config.cfg

\Preamble{xhtml}
\Css{.tcolorbox-title{text-align:center;font-weight:bold;font-size: 1.4rem;}}
\begin{document}
\EndPreamble

编译使用:

$ tex4ebook -c config.cfg sample.tex

结果如下:

在此处输入图片描述

相关内容