Latex 表格内公式换行方法

Posted Tsingke

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Latex 表格内公式换行方法相关的知识,希望对你有一定的参考价值。

Latex 表格内的公式实现换行的方法
 
 

 
简单的两步走:
 
  • 1.先将下面的语句放在latex正文的导言区:
\newcommand{\tabincell}[2]{\begin{tabular}{@{}#[email protected]{}}#2\end{tabular}} %放在导言区
  • 2.然后在tabular内的格子内使用 \tabincell{c}{} 插入相应内容, 就可以在表格中自动换行

 
以下为一例子,可直接存为.tex文件编译运行:
 
\documentclass[a4paper,12pt]{article}
\begin{document}
%-------------------------------------------------------------------------------------------------
\begin{table}
\newcommand{\tabincell}[2]{\begin{tabular}{@{}#[email protected]{}}#2\end{tabular}}  %导言区
  \centering
  \begin{tabular}{|c|c|c|}
\hline
1 & \tabincell{c}{the first line \\ the next\\the next\\ last} & \tabincell{c}{one \\ one}\\ %换行,单元格内的每个元素用\tabincell{c}{放表格内容}
\hline
2 & \tabincell{c}{hello\\ aha\\ ok \\yes \\en} & \tabincell{c}{two \\ two \\ two} \\
\hline
\end{tabular}
%--------------------------------------------------------------------------------------------------
  \caption{longtitle}
\end{table}
\end{document}
结果如下图:
技术分享

以上是关于Latex 表格内公式换行方法的主要内容,如果未能解决你的问题,请参考以下文章

LaTeX:表格内换行与各种居中完美解决

LATEX学习记录

LaTeX长公式换行怎么写?

latex 表格里能嵌套公式吗

EXCEL中如何通过函数实现表格内文字根据序号自动换行?

如何让latex表格中一个单元格的文字换行