如何在组织模式PDF导出中限制表或列的宽度?


11

我想在从org-mode导出的PDF中很好地格式化带有宽列的表格。理想情况下,应该在该列上使用换行符,但是我可以处理该列的手动字符或其中的一部分\textwidth。我已经尝试了很多方法,但是无法改变宽度。我需要做什么?

样品:

#+ATTR_LATEX: :width .6\textwidth
| Column                    | Wide Column                                        | Column   |
|---------------------------+----------------------------------------------------+----------|
|                           | <30>                                               |          | 
| Some stuff                | Lots and lots of stuff. Way too much. Like, a lot. |          |

Answers:


12

您可以尝试如下操作:

#+ATTR_LATEX: :environment longtable :align |l|p{10cm}|l|
|            | <30>                                               |        |
| Column     | Wide Column                                        | Column |
|------------+----------------------------------------------------+--------|
| Some stuff | Lots and lots of stuff. Way too much. Like, a lot. |        |

在此示例中,对齐表具有三列|作为分隔符。第一个和最后一个左对齐(l)。中间是一段宽度为10厘米(p{10cm})的段落。编辑该#+ATTR_LATEX:行中的对齐表以匹配您拥有的列数。


值得注意的是\pagewidth,不幸的是,它的某些部分不起作用。
明亮的明星
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.