从CSV生成LaTeX表格

LaTeX中的表格一直是一件麻烦事,想要把可视化软件中生成的表格导出成LaTeX的表格还是颇费工夫的。我且写几个大概可用的办法。

编辑器

当然网上是可以找到若干可视化编辑器的。有的是网页版,有的是一些简单的小软件,比如这个

一种简单的可视化编辑器

来源:LaTable编辑器

Excel插件

格式要求一般的时候,CTAN上的这个插件是比较方便的:

插件

该插件对简单的表格能完美地生成代码,也支持文字对齐、合并单元格、彩色单元格等格式的转化。它不足的是在转换的表格框线较多时往往不够理想。这主要是因为它总是把竖线画成断续的线,而不会在\begin{tabular}处的选项里加竖线。

贴一段py程序

GitHub上有人写过类似的程序。不过为了适应自己的习惯还是自己重写了一个玩意,来把简单的CSV文档转化成tex表格。只支持简单的方块形表格,输出固定的格式,可以转化科学计数法(虽然不是很完善:-|)。当然,你可以在你的源CSV文件中写入\multicol\multirow\diagbox等命令,并配合适当的逗号分隔符来实现合并单元格、制作表头等功能。另外,程序只接受UTF-8格式的编码。
好吧,不管怎么说,对一个普通的实验报告还是可用的。。

DELIMITER=","

import csv

while True:
    fin = input("Please provide a text file:\n\t\t\t\t")
    cap = str(input("Please give the caption of the table:\n\t\t\t\t"))
    lab = str(input("Please give the label of the table:\n\t\t\t\t"))
    fout = str(input("Please give a filename:\n\t\t\t\t"))
    print("\\begin{table}[htbp!]\n\t\\centering\n\t\\caption{" + cap + "}\\label{tab:" + lab + "}")
    s = "\\begin{table}[htbp!]\n\t\\centering\n\t\\caption{" + cap + "}\\label{tab:" + lab + "}"
    with open(fin,'r',encoding='utf8') as c:
        first=True
        second = True
        reader = csv.reader(c, delimiter=DELIMITER)
        for row in reader:
            if(row!=[]):
                if(first):
                    first=False
                    p="\\begin{tabular}{c"
                    for i in range(len(row)-1):
                        if(i==0):
                            p+="||c"
                        else:
                            p+="|c"
                    p+="}\n\t\t\\hline\\hline"
                    print("\t"+p)
                    s = s+ "\t" + p
                else:
                    print("\t\t\\hline")
                    s = s + "\t\t\\hline"
                    if second:
                        second = False
                        print("\t\t\\hline")
                        s = s + "\hline"
                s = s + "\n"
            r=""
            for i in range(len(row)):
                ifscidig = row[i].split('E')
                if len(ifscidig) == 2:
                    base, exponent = ifscidig[0], ifscidig[1]
                    base0 = base
                    ifdec = base.split('.')
                    if len(ifdec) == 2:
                        bint, bdec = ifdec[0], ifdec[1]
                    elif len(ifdec) == 1:
                        bint, bdec = ifdec[0], ''
                    ifpos = exponent.split('-')
                    if len(ifdec) == 2:
                        esgn, eabs = '-', ifpos[1]
                    elif len(ifdec) == 1:
                        esgn, eabs = '', ifpos[0]
                    if bint.isnumeric() and bdec.isnumeric() and eabs.isnumeric():
                        appender = "$" + bint + '.' + bdec + "\\times 10^{" + esgn + str(int(eabs)) + "}$"
                    else:
                        appender = str(row[i])
                else:
                    appender = str(row[i])
                if i == len(row)-1:
                    r+=appender+"\\\\"
                else:
                    r+=appender+" & "
            print("\t\t"+r)
            s = s + "\t\t" + r
    print("\t\t\\hline\\hline\n\t\\end{tabular}\n\\end{table}")
    s = s + "\t\t\\hline\\hline\n\t\\end{tabular}\n\\end{table}"
    with open(fout+".tex",'w',encoding = 'utf8') as f:
        f.write(s)
    input("\nOutput written in \'" + fout + ".tex\'. \nTo use the result in a tex file, write \'\\input{" + fout + ".tex}\'.")

示例
csv文件:

偏振片方位角/$^{\circ}$,73.9,164.5,255.4,345.0
谱线数目,3,6,3,6
谱线类型,$\uppi$,$\upsigma$,$\uppi$,$\upsigma$

运行:

输出文件:

\begin{table}[htbp!]
    \centering
    \caption{汞绿线塞曼分裂谱线的偏振特性}\label{tab:gp}  \begin{tabular}{c||c|c|c|c}
        \hline\hline
        偏振片方位角/$^{\circ}$ & 73.9 & 164.5 & 255.4 & 345.0\\      \hline\hline
        谱线数目 & 3 & 6 & 3 & 6\\      \hline
        谱线类型 & $\uppi$ & $\upsigma$ & $\uppi$ & $\upsigma$\\        \hline\hline
    \end{tabular}
\end{table}

编译结果:

不过呢,更复杂的表格最终还是依赖手打的,期待某天可以找到真正的自动转化软件。。

一个比较复杂的表

你可能感兴趣的:(从CSV生成LaTeX表格)