latex如何插入如下表格:这里涉及到表格的合并 急求助!!!!!!!

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了latex如何插入如下表格:这里涉及到表格的合并 急求助!!!!!!!相关的知识,希望对你有一定的参考价值。

参考技术A

有个例子,希望参考。http://blog.sina.com.cn/s/blog_01ea59580100vzsx.html


\\documentclass[a4papaer]ctexart

\\usepackagearray

\\newcommand\\tabincell[2]\\begintabular@#1@#2\\endtabular

%然后使用&\\tabincellc&就可以在表格中自动换行

\\begindocument

%表格单元格垂直居中问题的解决方案

%比如这么用

\\begintabular|c|c|\\hline

姓名 & 家庭住址 \\\\\\hline

张三 & \\tabincellc地球\\\\ 中国\\\\北京市 \\\\海淀区 \\\\总政 \\\\\\hline

\\endtabular

\\par\\vspace1cm

%再比如

\\begintabular|p0.14\\textwidth<\\centering*7|p0.081\\textwidth<\\centering|

\\hline

日期&1日&2日&3日&4日&5日&6日&7日\\\\\\hline

\\tabincellc人数变化\\\\单位(万人)

&$+1.6$&$+0.8$&$+0.4$&$-0.4$&$-0.8$&$+0.2$&$-1.2$\\\\\\hline

\\endtabular

\\enddocument

本回答被提问者和网友采纳
参考技术B 没那么麻烦,很简单用multirow宏包即可嘛,有现成宏包没必要用复杂的原始方法

latex给表格添加注释

给表格加注释的确是很多TeX用户不好用的地方,这里提供一个样式和代码,或许对于你的学习使用有所帮助,样式如下:

技术分享

代码如下:

\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[font=small,labelfont=bf,tableposition=top]{caption}
\usepackage{booktabs}
\usepackage{threeparttable}

\begin{document}
  \begin{table}[!ht]
    \caption{A table with notes}\label{tab:tablenotes}
    \centering
    \begin{threeparttable}
      \begin{tabular}{*4{c}}\toprule
        Table head\tnote{1} & Table head\tnote{1} & Table head\tnote{2} & Table head\tnote{2} \\ \midrule
        Some values & Some values & Some values & Some values \\
        Some values & Some values & Some values & Some values \\
        Some values & Some values & Some values & Some values \\
        Some values & Some values & Some values & Some values \\ \bottomrule
      \end{tabular}
      \begin{tablenotes}
        \footnotesize
        \item[1] The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
        \item[2] The quick brown fox jumps over the lazy dog.
      \end{tablenotes}
    \end{threeparttable}
  \end{table}

转自http://blog.sina.com.cn/s/blog_5e16f1770102dxpi.html

备注:

如果只有一项可以:\item[] The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.

以上是关于latex如何插入如下表格:这里涉及到表格的合并 急求助!!!!!!!的主要内容,如果未能解决你的问题,请参考以下文章

latex 用tabular创建的表格如何加一个标题

latex跨页表格longtable下如何加注释? \beginthreeparttable……\endthreeparttable插入到哪儿?

excel 两个表格如何匹配多个数据并合并

如何将多个excel表格的数据合并计算到一张表格中

Latex 制作表格

LaTeX表格tabular合并多行、多列