我正在使用 asciidoc 来整理一些用户文档。我需要以 PDF 结尾;我在 Ubuntu 上使用 asciidoctor-pdf(使用 Asciidoctor 1.5.5 的 Asciidoctor PDF 1.5.0.alpha.18)
我有 asciidoc 项目符号列表;一些列表项是散布有小屏幕截图的文本说明。如果可能,我希望每个列表项都保留在同一页面上。
这些不会将所有内容保持在同一页面上:
[options="unbreakable"]
* Use the virtual keyboard to enter the letters and numbers of your network password: +
image:ss/ss_password_done_blurred.png[]
这将所有内容放在同一页面上,但在整个列表项周围放置了一个框:
====
* Use the virtual keyboard to enter the letters and numbers of your network password: +
image:ss/ss_password_done_blurred.png[]
====
有没有办法让普通段落或列表项目牢不可破(或保持在一起)?
我需要使用与 asciidoctor-pdf 不同的工具链吗?