提问于:
浏览数:
5072
我在写自己的学位论文,我想加入一个表格和表标题,我期待的结果是表标题在表格上方,目前在表格的下方,如图所示
![](https://wenda.latexstudio.net/data/attach/191018/NBapo7Xp.png)
WME.tex 和 .cls 文件见链接:https://github.com/shaoyuhlq/latex
![](https://wenda.latexstudio.net/data/attach/191018/PKOxZzhA.png)
4 回答
1
`floatrow` 宏包的锅,它默认是把所有标题放在浮动体下面的,如果表格类的浮动体要把标题放在顶上,补充一句:
```tex
\floatsetup[table]{style=plaintop}
```
另:模板太老了,还不支持 xetex 引擎编译,建议找找有没有新的。
0
很遗憾,我看了代码发现我没有办法帮你。
我电脑里面没有 ctex 套装。
下次再提问时,麻烦你说明编译环境(操作系统、发行版等)
0
你换成texlive,这种问题一行代码可以解决。把caption放在那个上面就行了。
既然你用了别人写的模板,那还是不要乱改了,
作者追问:2019-10-18 21:46
放在上面?我试了不行啊,你能实现不?
作者追问:2019-10-18 21:46
放在上面?我试了不行啊,你能实现不?
回答: 2019-10-18 23:26
可以啊,
```
\documentclass{ctexart}
\begin{table}[h]
\centering
\caption{某些特殊符号}
\begin{tabular}{c|c|c|c|c|c}
\hline
test1 & $\eta$ & $\Omega$ & $\ddagger$ & $\subseteq$ & $\clubsuit$ \\ \hline
test1 & $\eta$ & $\Omega$ & $\ddagger$ & $\subseteq$ & $\clubsuit$ \\ \hline
\end{tabular}
\end{table}
\end{document}
```
![](https://wenda.latexstudio.net/data/attach/191018/CBwCvNUb.jpg)
回答: 2019-10-18 23:32
Watch XiaoXing's answer, maybe the reason about your problem is that template is bad development.
But, in the same school, I think this template complys with the feature requirements of your school.
Now that you are using it, don't warry about the style.
回答: 2019-10-18 23:42
Tell me what compile way did you use, and I'm running on Texlive2019 which doesn't support CTeX's template.
回答: 2019-10-18 23:45
I can't compile it ( the code in your github )
![](https://wenda.latexstudio.net/data/attach/191018/6H6TUDfE.png)
0
学位论文,没有出版社的限制,可以考虑加一个floatrow宏包试试。
你的回答
请登录后回答
你的回答将会帮助更多人,请务必认真回答问题。