如何使用宏将表格从 word 添加到 texstudio?

如何使用宏将表格从 word 添加到 texstudio?

我的 word 文档中有 3 页的表格,将各个实体从 word 复制并粘贴到 texstudio 中非常耗时,请指导我使用什么快捷方式来管理所有这些东西。

答案1

TeXstudio 中的一个基本解决方案是这个宏:

%SCRIPT
text = app.clipboard
text = text.replace(/\t/g, " & ")
text = text.replace(/\n/g, " \\\\\n")
cursor.insertText(text)

当然,如果需要,您可以扩展它以添加周围的表格环境。

答案2

  1. 将其导出到 Excel。

  2. 然后将其导入 Lyx。

  3. 将结果导出为 LaTeX。

    然后编辑表格以获得所需的结果。

相关内容