发布时间:2009-12-11 18:29:10
文章类别:小技巧
原文地址:http://blog.sina.com.cn/s/blog_5e16f1770100gdwq.html

QQ群:91940767/145316219/141877998/80300084/194770436
淘宝店:http://latexstudio.taobao.com
技巧续篇:http://latexstudio.net/
常见数学公式问题集下载

效果图:

LaTeX技巧154:实现如下表格标题样式

实现代码:

\documentclass{article}
\makeatletter
\long\def\@makecaption#1#2{%
\vskip\abovecaptionskip
\sbox\@tempboxa{#2}%
\makebox[\hsize][c]{\bf #1.}
\ifdim \wd\@tempboxa >\hsize
#2
\else
\global \@minipagefalse
\hb@xt@\hsize{\hfil\box\@tempboxa\hfil}%
\fi
\vskip\belowcaptionskip}
\makeatother
\begin{document}
\begin{table}
\centering
\caption{\bf The Title of Table}
\begin{tabular}{|l|l|} \hline
\multicolumn{2}{|c|}{Team sheet} \\ \hline
GK & Paul Robinson \\ LB & Lucus Radebe \\
DC & Michael Duberry \\ DC & Dominic Matteo
\\ RB & Didier Domi \\ MC & David Batty \\
MC & Eirik Bakke \\ MC & Jody Morris \\
FW & Jamie McMaster \\ ST & Alan Smith \\
ST & Mark Viduka \\ \hline
\end{tabular}
\end{table}
\end{document}


点赞(0)

评论列表 共有 0 条评论

暂无评论
立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部