无法使用代码从 latex csv 导入表格

无法使用代码从 latex csv 导入表格

在此处输入图片描述大家好,我正在使用此代码导入我的 Table1.csv 文件,但尚未成功,请帮我编辑哪些部分,非常感谢:

%        File: essai_datatool.tex
%     Created: mer jui 01 09:00  2009 C
% Last Change: mer jui 01 09:00  2009 C
%
%Facteur de magnification : 1000 signifie ``multiplié par 1'' 
\mag=1000

\documentclass[12pt]{article}
\usepackage[latin1]{inputenc}
\usepackage[francais]{babel}
\usepackage{graphicx,amsmath,amssymb,xfor,substr}
\usepackage{eurosym,datatool,longtable}
\textwidth=16cm
\textheight 24cm
\oddsidemargin -10mm
\topmargin -15mm
\pagestyle{empty}
\title{}
\author{}
\date{}
\input{epsf.sty}
\begin{document}
\DTLloaddb[noheader,%
keys={Temperature,Time,T2G},%
headers={\shortstack{Incubation\\Temperature},%
\shortstack{Incubation\\Time},\shortstack{Time to\\Growth}}%
]{t2g}{Table1.csv}

\begin{table}[htbp]
\caption{Time to Growth Data}
\vspace{\baselineskip}
\centering
\DTLdisplaydb{Table1}
\end{table}

\end{document}

相关内容