Latex图的caption太长,导致信息丢失该怎么办,Latex 图注太长 无法显示
Latex图的caption太长,导致信息丢失该怎么办,Latex 图注太长 无法显示
Latex 图注太长 无法显示
https://blog.csdn.net/weixin_30784501/article/details/95209125
https://www.cnblogs.com/cslxiao/p/6227463.html
\begin{figure}[htb]
\centering
\includegraphics[width=3.5in]{images/chapter5/hysteresis_rate_different.eps}
\caption[这里的文字显示在list of figures里]{这里的文字显示在图片下方}
\label{ceramic}
\end{figure}
好像还是不行,但是这个博客有积极意义。
网友给出来的建议:
这样的情况 只能缩小文字,浮动体无法换页的。
这里也有一个解决方案:禁止浮动:
https://blog.csdn.net/xj4math/article/details/124659330
目前采用了
\usepackage{ccaption} %图注越界问题
\begin{figure}[t]
\caption{}
\end{figure}
\begin{figure}[t]
\contcaption{}
\end{figure}