我需要将LaTeX文件(mypaper.tex
)转换为DOCX文件,以满足日记的要求。
乳胶文件包含以下内容:
mycitation.bib
)这些数字位于名为images
的子目录中。在latex文件中,我使用命令
\graphicspath{{images/}}
我从Zotero数据库下载了一个CSL文件。我们假设CSL文件的名称是springer-science-reviews.csl
现在我运行以下命令将.tex
转换为.docx
pandoc -s -S --filter pandoc-crossref --filter pandoc-citeproc --csl springer-science-reviews.csl --bibliography mycitation.bib mypaper.tex -o mypaper.docx
我看到以下问题:
@extracolsep
等命令或依赖于latex array
包的命令的表格无法正确呈现。 这里给出了一个不起作用的例子:
\begin{table}[htbp]
\centering
\caption{Pollution data}
\label{tab:pollution}
\begin{tabular}{@{\extracolsep{5pt}} clccccc}
\toprule & Name & V1 & V2 & Z1 & Z2 &Level\\
& {} & {$\mu$g/m$^3$} &{$\mu$g/m$^3$} &{$\mu$g/m$^3$} &{} &{}\\
\midrule
1 & MNEC & $77.160$ & $32.149$ & $3.793$ & $40.696$ &Good\\
2 & BNEC & $142.643$ & $36.142$ & $8.801$ & $66.274$ &Moderate\\
3 & TVCEN & $111.702$ & $41.657$ & $5.949$ & $57.070$ &Moderate\\
\bottomrule
\end{tabular}
\end{table}