码迷,mamicode.com
首页 > 其他好文 > 详细

latex给表格添加注释

时间:2016-06-23 20:32:03      阅读:338      评论:0      收藏:0      [点我收藏+]

标签:

给表格加注释的确是很多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给表格添加注释

标签:

原文地址:http://www.cnblogs.com/hnuhui/p/5612000.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!