1

我在 AsciiDoc 中有以下标记:

[[filter-example]] .Filters 是通过矩阵运算创建的 image::figs/filter_example.png[scaledwidth="90%"]

我想在这张图片上使用 unfloat::[] 宏,但我找不到任何如何做到这一点的例子。有没有人有什么建议?

4

1 回答 1

2

块宏引用必须包含在由空行或块分隔符分隔的单行中。

在 image-blockmacro 之前或之后使用 unfloat-blockmacro,fe 像这样:

unfloat::[] 
[[filter-example]] 
.Filters are created through matrix operations    
image::figs/filter_example.png["alt text", scaledwidth="90%"]

在默认的 AsciiDoc 安装中,unfloat-blockmacro 仅对 html 后端有效。在 xhtml11-backend 中,示例代码将被翻译成

<div style="clear:both;"></div>        <!-- line was added by using unfloat::[] -->
<div id="filter-example" class="imageblock">
<div class="content">
<img alt="alt text" src="filter_example.png">
</div>
<div class="image-title">Abbildung 1: Filters are created through matrix operations</div>
</div>

在文件 asciidoc.conf 中,您将找到未实现 unfloat-blockmacro 的定义:

[unfloat-blockmacro]
# Implemented in HTML backends.

在 html4.conf 文件中,您将找到 html 后端的 unfloat 实现:

[unfloat-blockmacro]
<br clear="all">

在文件 xhtml11.conf 中,您将找到 xhtml 后端的 unfloat 实现:

[unfloat-blockmacro]
<div style="clear:both;"></div>

如果您希望 html-backend 中出现其他结果,请更改这些行。

于 2011-05-11T16:01:32.097 回答