运行 tex4ebook 时,epub 中生成的参考书目缺少空格

运行 tex4ebook 时,epub 中生成的参考书目缺少空格

运行时,tex4ebook' with the following MWE, there should be a在 epub 中查看的 bibitem 之间有空间分离,以获得更好的结果。

\documentclass[11pt,a4paper]{report}
\usepackage{ebgaramond-maths}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{tex4ebook}
\usepackage[sortlocale=auto,bibstyle=authoryear,citestyle=authortitle-ticomp]{biblatex}
\addbibresource{biblatex-examples.bib}

\begin{document}

\nocite{sigfridsson}
\nocite{westfahl:space}
\nocite{set}
\nocite{stdmodel}
\nocite{aksin}
\nocite{bertram}

\printbibliography

\end{document}

这能做到吗?

答案1

尝试这个配置文件:

\Preamble{xhtml}
\def\nolinkurl#1{#1}
\Css{dd.thebibliography { text-indent: -2em; margin-left: 2em;}}
\Css{dt.thebibliography + dd.thebibliography{margin-top: 1em;}}
\Css{dd.thebibliography p:first-child{ text-indent: -2em; }}
\Css{dt.thebibliography{float:left; clear:left; margin-right:1em;}}
\begin{document}
\EndPreamble

在此处输入图片描述

相关内容