表格问题 - 错误“此处没有结束的行”

表格问题 - 错误“此处没有结束的行”

下表给出错误“第 237 行,此处没有结束行”这里的问题是什么?

 237   \begin{center}
    \textbf{\textit{90$\%$ confidence interval}}:\\\\*
    \begin{tabular}{| 1 | 1 | 1 | 1 | 1 |}
    \hline
    Number of Paths & 10000 & 40000 & 90000 & 160000 \\ \hline
    Number of Steps & 100 & 200 & 300 & 400 \\ \hline
    Upper Estimate &  8.4891  &  8.3498  &  8.3495 & 8.3479 \\ \hline
    Lower Estimate &  8.0824  &  8.1482  &   8.2147 & 8.2466\\ \hline
    Heston Call Price & 8.2857  &  8.2490  &  8.2753 & 8.2972\\ \hline
    \hline
    \end{tabular}
    \end{center}
    \hline

答案1

您不能结束一个空行,因此\\\\会导致错误,因为第二个换行符试图结束一个空行。

如果你只想要一条免费线路,请使用

\\[\baselineskip]

虽然我认为你想在那里有一个新段落,但

\par

或者使用table环境来获得一个包含标题等内容的浮动表格(我更喜欢这种表格方式)。

更新关于原作者的请求,这里有一个使用 Wonderfulbooktabs包的完整示例。一个问题是:列有名称吗?

\documentclass{scrartcl}
\usepackage{booktabs}
\begin{document}
    \begin{table}\centering
        \begin{tabular}{lllll}\toprule
        Number of Paths & 10000 & 40000 & 90000 & 160000 \\
        Number of Steps & 100 & 200 & 300 & 400 \\
        Upper Estimate &  8.4891  &  8.3498  &  8.3495 & 8.3479 \\
        Lower Estimate &  8.0824  &  8.1482  &   8.2147 & 8.2466\\
        Heston Call Price & 8.2857  &  8.2490  &  8.2753 & 8.2972\\\bottomrule
        \end{tabular}
        \caption{90$\%$ confidence interval}\label{tab:trials}
    \end{table}
\end{document}

这将产生一个可以通过 引用的浮动表\ref{tab:trials}。它看起来像

在此处输入图片描述

相关内容