报错 Missing number, treated as zero.

2019-08-20 15:47发布

报错 Missing number, treated as zero. 和 Undefined control sequence.按照elsevier模板写的,表格总是报错,求教应该如何修改。\doc...

报错 Missing number, treated as zero. 和 Undefined control sequence.

按照elsevier模板写的,表格总是报错,求教应该如何修改。

\documentclass[review]{elsarticle}


\usepackage{lineno,hyperref}

\modulolinenumbers[5]

\usepackage{amssymb}

\usepackage{graphicx}


\journal{Journal of \LaTeX\ Templates}


\bibliographystyle{elsarticle-num}


\begin{document}




\begin{table*}

\caption{Key input variables and DCF main values of Scheme 1}

\begin{tabular*}{\tblwidth}{@{} lll@{} }


\toprule

Variables         &  Values          &  Definition/resource\\


\midrule

CapEx-MGO &  0                  &  Initial investment using MGO\\ 

Price-MGO &  \$570/ton    & Using the average price of MGO (Singapore)\\

Usage-MGO & 40 000 tons  & MGO annual usage\\

Discount rate &11\%              & Weighted average cost of capital(WACC) is the company's weighted cost of capital, including all sources of capital: equity and debt. It represents the discount rate of estimated cash flows (Block, 2011; Bennouna et al., 2010).

\bottomrule


\end{tabular*}


\end{table*}

\end{document}

3条回答
Chennanzhang - 一介方粉,何德何能
2019-08-20 16:04 .采纳回答
仔细看模板说明,有没有必须设置却没有设置的变量。 `missing number`, 一般是需要一个数字的地方却没有设置数字。 `Undefined control sequence` 通常是拼写错误,或没有加载宏包而使用了宏包中的命令。 ```tex \documentclass[review]{elsarticle} \usepackage{lineno,hyperref} \usepackage{booktabs}  % 非要用\toprule \bottomrule \midrule,就得加这个宏包,否则用\hline 或者自定义这几个命令。 \usepackage{tabularx} % 换一种表格环境 \modulolinenumbers[5] \usepackage{amssymb} \usepackage{graphicx} \journal{Journal of \LaTeX\ Templates} \bibliographystyle{elsarticle-num} \begin{document} \begin{table*} \caption{Key input variables and DCF main values of Scheme 1} %\begin{tabular*}{\tblwidth}{@{} lll@{} } \tblwidth 没有定义,要么自己定义个长度,要么用其他预定义长度。 %\begin{tabular*}{\textwidth}{@{} lll@{} }  这样写是可以的,不过最后一行第三列太长,不建议用这个环境 \begin{tabularx}{\textwidth}{@{} llX@{}}  %当然导言区要加载 tabularx 宏包 \toprule Variables         &  Values          &  Definition/resource\\ \midrule CapEx-MGO &  0                  &  Initial investment using MGO\\  Price-MGO &  \$570/ton    & Using the average price of MGO (Singapore)\\ Usage-MGO & 40 000 tons  & MGO annual usage\\ Discount rate &11\%              &  Weighted average cost of capital(WACC) is the company's weighted cost of capital, including all sources of capital: equity and debt. It represents the discount rate of estimated cash flows (Block, 2011; Bennouna et al., 2010).\\ %最后一行缺了换行。 \bottomrule \end{tabularx} %\end{tabular*} 对应注释掉 \end{table*} \end{document} ```

一周热门 更多>