我正在使用 Writer2Latex 将我在 Google Docs 中创建并以 .odt 格式下载的 .odt 文件转换为 .tex。它可以工作,但由于除了使用表格之外没有其他方法可以在 Google Docs 中创建文本列,因此生成的 .tex 文件转换会显示表格边框。
我已将表格边框颜色设置为白色,并将其设置为 0pt,.odt 文件下载后没有问题,但 .tex 文件存在一些问题。
Writer2Latex 是否有配置设置/选项/条目可以将表格格式从 .odt 转换为 .tex?例如,删除表格边框/将其设置为白色/将边框大小减小为 0?
.odt
.tex
我目前正在使用的配置文件:
<?xml version="1.0" encoding="UTF-8"?>
<config>
<option name="documentclass" value="article" />
<option name="formatting" value="convert_all" />
<option name="use_supertabular" value="true" />
<custom-preamble>\input{input/inputfile}
\sloppy</custom-preamble>
</config>
答案1
我搞明白了,但现在所有表格的边框都是 0pt。这对于多列和多表格的混合内容来说并不好。
<custom-preamble>
\setlength\arrayrulewidth{0pt}
</custom-preamble>