我正在用 doxygen 编写一个 doc 文件,并且通过执行包含图像
\image html screenshots/enabled.png "caption"
这在生成的文档中显示了我的 enabled.png 图像。但是,我希望图像向左对齐(因为文档的其余部分都是这样)。有没有办法在 doxygen 中做到这一点,而无需使用内联 html 或 css?
我正在用 doxygen 编写一个 doc 文件,并且通过执行包含图像
\image html screenshots/enabled.png "caption"
这在生成的文档中显示了我的 enabled.png 图像。但是,我希望图像向左对齐(因为文档的其余部分都是这样)。有没有办法在 doxygen 中做到这一点,而无需使用内联 html 或 css?
使用以下 HTML 语法适用于 Doxygen 1.8.6(使用 Firefox 66 测试):
/*! \mainpage Test
*
* <img src="my-image.jpg" align="left">
* <div style="clear: both"></div>
*
* This is a test page.
*
*/
Doxygen 将图像包装在 a 中<div class="image">
,但该align
属性会覆盖居中。添加了额外的间隙<div>
以避免将以下文本写入图像右侧。
将图像填充到对齐的 Markdown 表中似乎可行:
| Image description |
| :---- |
| \image html image.png |
<img src="myimage.png" align="left"/>
但是您可能需要在之后添加 \n 字符以防止文本在图像右侧换行。
也只有 html