org-mode table.el导出到html没有标题?

时间:2017-08-26 03:43:06

标签: emacs org-mode

我想使用带有标题的emacs org-mode写一个表。 org-mode有两种写表方法:org-table和table.el。

导出到html时,org-table工作正常,但table.el不显示标题。

#+caption: org-table
|------+------|
| name |  age |
|------+------|
| jim  | 8888 |
|------+------|


#+caption: table.el
  +-----+-----+
  |name |age  |
  +-----+-----+
  |jim  |8888 |
  +-----+-----+

如何让table.el的标题工作?因为table.el可以编写复杂的表,这非常有用。

2 个答案:

答案 0 :(得分:0)

这是一个非常老的问题,但是我设法通过添加一个空表(||)来获得标题。可能不是最好的解决方案,但它可以工作。

#+caption: table.el
||
  +-----+-----+
  |name |age  |
  +-----+-----+
  |jim  |8888 |
  +-----+-----+

答案 1 :(得分:0)

您可以通过添加width属性来解决此问题,只需将标题放在空的org-table上,而只用一个小节|其次是table.el

#+CAPTION: table.el
#+ATTR_HTML: :width 100%
|
+------+------+
| name |  age |
+------+------+
| jim  | 8888 |
+------+------+