latex 小模板

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}

egin{document}
  egin{table}[!ht]
    caption{A table with notes}label{tab:tablenotes}
    centering
    egin{threeparttable}
      egin{tabular}{*4{c}} oprule
        Table head note{1} & Table head note{1} & Table head note{2} & Table head note{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 \ ottomrule
      end{tabular}
      egin{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://www.ctan.org/pkg/threeparttable

原文地址:https://www.cnblogs.com/zhaoyang10/p/4468577.html