使用org-mode生成html后,图片被自动加了编号,如Figure 1, Figure 2。请问如何在org-mode中设置,使得生成的html文件中自动去掉这些编号?
以下我在org-mode中对图片的格式设置。
#+CAPTION: This is the CAPTION stuff.
#+ATTR_HTML: :width 67%
#+ATTR_HTML: style float:center
[[file:~/xxxxxxx.jpg]]
非常感谢帮助!
使用org-mode生成html后,图片被自动加了编号,如Figure 1, Figure 2。请问如何在org-mode中设置,使得生成的html文件中自动去掉这些编号?
以下我在org-mode中对图片的格式设置。
#+CAPTION: This is the CAPTION stuff.
#+ATTR_HTML: :width 67%
#+ATTR_HTML: style float:center
[[file:~/xxxxxxx.jpg]]
非常感谢帮助!
@@html:
<style>
.figure-number {
display: none;
}
</style>
@@
nice!!! 非常感谢!!!!