tex4ht:如何改变上一个/下一个/上一个的顺序?

tex4ht:如何改变上一个/下一个/上一个的顺序?

我正在使用 tex4ht。生成的“箭头”位于下一个/上一个/上一个的顺序中。我希望它们在所有页面上都位于上一个/上一个/下一个的顺序中。有办法吗?Christophe

答案1

来自文档:


 \Configure{crosslinks} {left-delimiter} {right-delimiter} {next} {prev} {prev-tail} {front} {tail} {up}

此命令配置分段命令所获得的超文本页面之间的交叉链接的外观。

 \Configure{crosslinks} 
   {}{}{$\scriptstyle\Rightarrow$} 
   {$\scriptstyle\Leftarrow$} 
   {}{}{}{$\scriptstyle\Uparrow$}

\Configure{crosslinks*}{1--7 arguments}

要包含的链接及其顺序。可用选项:next、prev、prevtail、tail、front、up。最后一个参数必须为空。

默认:

\Configure{crosslinks*}{next} 
   {prev}{prevtail} 
   {tail}{front} 
   {up}{}

因此,可以使用\Configure{crosslinks*}配置进行配置。例如:

\Preamble{xhtml,2}
\Configure{crosslinks}
   {}{}{$\scriptstyle\Rightarrow$}
   {$\scriptstyle\Leftarrow$}
   {}{}{}{$\scriptstyle\Uparrow$}
\Configure{crosslinks*}{prev}{up}{next}{}
\begin{document}
\EndPreamble

示例结果:

在此处输入图片描述

相关内容