提问于:
浏览数:
1700
![](https://wenda.latexstudio.net/data/attach/201030/RAjdxSsw.png)
操作系统
* [* ] Windows 7/8/10
* [ ] macOS
* [ ] Linux
`若需勾选,请把[ ]改成[x]`
Tex发行版
* [* ] TexLive `年份`
* [ ] MikTeX `版本号`
* [ ] CTeX
`若需勾选,请把[ ]改成[x]`
## 我的问题
请问如何将过长的表头变得不拥挤?
```
\documentclass{article}
\usepackage{diagbox}
\begin{document}
\begin{table}[H]
\setlength{\abovecaptionskip}{10pt}
\setlength{\belowcaptionskip}{10pt}
\caption{The Size Chart}\label{TableSizeChart2}
\centering
\begin{tabular*}{8.0cm}{ccc}
\hline
\diagbox[dir=SE]{Weight(kg)}{Height(cm)}{Size} & small & large \\
\hline
$[40,45]$ & Height $<$ 180 & Height $>$ 181 \\
$[46,50]$ & Height $<$ 179 & Height $>$ 180 \\
$[51,55]$ & Height $<$ 173 & Height $>$ 174 \\
$[56,60]$ & Height $<$ 166 & Height $>$ 167 \\
$[61,65]$ & Height $<$ 161 & Height $>$ 162 \\
$[66,70]$ & Height $<$ 154 & Height $>$ 155 \\
$[71,75]$ & Height $<$ 150 & Height $>$ 151 \\
\hline
\end{tabular*}
\end{table}
\end{document}
```
找到解决办法了,去掉[dir=SE]就好了