我正在写doxygen中的doc文件,我通过
包含了一个图像\image html screenshots/enabled.png "caption"
这会在生成的文档中显示我的enabled.png图像。但是,我希望图像与左边对齐(因为文档的其余部分就是这样)。有没有办法在doxygen中执行此操作没有使用内联html或css进行此操作?
答案 0 :(得分:0)
将图像填充到对齐的Markdown表中似乎可行:
| Image description |
| :---- |
| \image html image.png |
答案 1 :(得分:0)
在Doxygen 1.8.6(使用Firefox 66测试)上,可以使用以下HTML语法:
/*! \mainpage Test
*
* <img src="my-image.jpg" align="left">
* <div style="clear: both"></div>
*
* This is a test page.
*
*/
Doxygen将图像包装在<div class="image">
中,但是align
属性覆盖居中。添加了额外的间距<div>
,以避免在图像的右侧写上以下文本。
答案 2 :(得分:-1)
<img src="myimage.png" align="left"/>
但您可能需要在之后添加\ n字符以防止文本环绕到图像的右侧。
仅限html