发布时间:2010-02-05 21:05:32
文章类别:插图技巧
原文地址:http://blog.sina.com.cn/s/blog_5e16f1770100h5ne.html
QQ群:91940767/145316219/141877998/80300084/194770436
淘宝店:http://latexstudio.taobao.com
技巧续篇:http://latexstudio.net/
常见数学公式问题集下载
解决方案:
我们可以加载caption宏包,使用如下设置即可修改。
\captionsetup[boxed]{skip=6pt}%修改skip值
演示效果图:
演示代码:
\documentclass{article}
\usepackage{float}
\floatstyle{boxed}
\restylefloat{table}
\usepackage[labelfont=bf]{caption}
\captionsetup[boxed]{skip=6pt}
\begin{document}
\begin{table}[!ht] \def\B#1{$\displaystyle{n\choose#1}$}
\begin{center} \begin{tabular}{c|cccccccc}
$n$&\B0&\B1&\B2&\B3&\B4&\B5&\B6&\B7\\ \hline
0 & 1\\
1 & 1&1\\
2 & 1&2&1\\
3 & 1&3&3&1\\
4 & 1&4&6&4&1\\
5 & 1&5&10&10&5&1\\
6 & 1&6&15&20&15&6&1\\
7 & 1&7&21&35&35&21&7&1
\end{tabular} \end{center}
\caption{Pascal's triangle. This is a re-styled \LaTeX\ \texttt{table} with \texttt{skip=6pt}.}
\end{table}
\end{document}
若是修改算法本身与标题的距离,可使用 \captionsetup[algorithm]{skip=...} 有时可能因宏包关系会影响图表的间距。请读者自行选择。
发表评论 取消回复