发布时间:2010-07-20 13:57:12
文章类别:表格制作
原文地址:http://blog.sina.com.cn/s/blog_5e16f1770100kgte.html

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

问题描述
RT!

解决方案
第一、\begin{tabular*}{width}{@{\extracolsep{\fill}}ccccccccc}
......\\
...
...
...\\
\end{tabular*}
其中的width你可以自己DIY,如“300pt”,或者 “0.618\textwidth”

第二、tabularx可以实现这个

这两个稍有差别,示例如下:
\begin{tabular*}{8cm}{lll}
\hline
Start & End & Character Block Name \\
\hline
3400 & 4DB5 & CJK Unified Ideographs Extension A \\
4E00 & 9FFF & CJK Unified Ideographs \\
\hline
\end{tabular*}


\begin{tabularx}{8cm}{llX} % 8cm 減去前兩個欄位寬度後,剩下的通通給
\hline % 第三欄位使用,文字超出的部份會自動折行
Start & End & Character Block Name \\
\hline
3400 & 4DB5 & CJK Unified Ideographs Extension A \\
4E00 & 9FFF & CJK Unified Ideographs \\
\hline
\end{tabularx}

注意加载 tabularx宏包
参看:http://edt1023.sayya.org/tex/latex123/node9.html


点赞(0)

评论列表 共有 0 条评论

暂无评论
立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部