Letax表格内单元格换行
Posted Dontstop
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Letax表格内单元格换行相关的知识,希望对你有一定的参考价值。
转自:http://blog.sina.com.cn/s/blog_531bb7630101841e.html
/newcommand{/tabincell}[2]{/begin{tabular}{@{}#1@{}}#2/end{tabular}}%放在导言区
%然后使用&/tabincell{c}{}&就可以在表格中自动换行
%然后使用&/tabincell{c}{}&就可以在表格中自动换行
%比如这么用
/begin{tabular}{|c|c|}
/hline
1 & the first line //
/hline
2 & /tabincell{c}{haha// heihei//zeze} //
/hline
/end{tabular}
/begin{tabular}{|c|c|}
/hline
1 & the first line //
/hline
2 & /tabincell{c}{haha// heihei//zeze} //
/hline
/end{tabular}
以下为一例子,可直接存为.tex文件编译运行:
\\documentclass[a4paper,12pt]{article}
\\begin{document}
\\begin{table}
\\newcommand{\\tabincell}[2]{\\begin{tabular}{@{}#1@{}}#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}\\\\\\hline
2 & \\tabincell{c}{hello\\\\ aha\\\\ ok \\\\yes \\\\en} & \\tabincell{c}{two \\\\ two \\\\ two} \\\\\\hline
\\end{tabular}
\\caption{longtitle}
\\end{table}
\\begin{document}
\\begin{table}
\\newcommand{\\tabincell}[2]{\\begin{tabular}{@{}#1@{}}#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}\\\\\\hline
2 & \\tabincell{c}{hello\\\\ aha\\\\ ok \\\\yes \\\\en} & \\tabincell{c}{two \\\\ two \\\\ two} \\\\\\hline
\\end{tabular}
\\caption{longtitle}
\\end{table}
\\end{document}
结果如下图:
以上是关于Letax表格内单元格换行的主要内容,如果未能解决你的问题,请参考以下文章