表格内的换行符

表格内的换行符

我想知道如何在表格单元格内手动插入换行符。有时,这样做看起来好多了。但是,我没有找到任何能帮我解决问题的方法。我尝试使用 \shortstack,但水平线的顶部空间非常小。

这是我的代码:

\begin{table}[htbp]
\centering
    \resizebox{0.8\textwidth}{!}{
        \begin{tabular}{p{4cm} c|c}
            Parameter Category & Mathworks Toolbox & LMN Toolbox \\
            \hline
            Estimation Focus (Prediction or Simulation) & Focus-Parameter & kStepPrediction Value \\
            \hline
        \end{tabular}
        }
    \caption{ARX vs. OE Model Structure}
    \label{tab:modelParameters}
\end{table} 

我想在“估计焦点”下的同一单元格中的新行中输入“(预测或模拟)”。

先感谢您 !

答案1

p类型列中,可以使用\par。在其他列类型中,您可以加载\makecell包并使用\makecell宏。否则,您可以在该单元格中使用包含两行的小表格。

\documentclass[a4paper]{article}
\usepackage{graphicx,makecell}

\begin{document}    

\begin{table}[htbp]
\centering
    \resizebox{0.8\textwidth}{!}{
        \begin{tabular}{m{4cm} c|c}
            Parameter Category & Mathworks Toolbox & LMN Toolbox \\
            \hline
            Estimation Focus\newline(Prediction or Simulation) & \makecell{Focus-Parameter\\Blabla ..} & kStepPrediction Value \\
            \hline
        \end{tabular}
        }
    \caption{ARX vs. OE Model Structure}
    \label{tab:modelParameters}
\end{table} 

\end{document}

在此处输入图片描述

相关内容