发布时间:2009-11-23 14:33:32
文章类别:插图技巧
原文地址:http://blog.sina.com.cn/s/blog_5e16f1770100g5a3.html

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

写论文的时候,Figure通常都是有很长的注释,而Latex的list of figures似乎不能换行(看到有换行的,不过感觉不够美观)。
再说,list of figures里面,不用对figure有详细的注释,只要有大概意思即可,解决方法如下:
\begin{figure}[htb]
\centering
\includegraphics[width=3.5in]{images/chapter5/hysteresis_rate_different.eps}
\caption[这里的文字显示在list of figures里]{这里的文字显示在图片下方}
\label{ceramic}
\end{figure}
演示示例代码:
\documentclass[a4paper]{article}
\usepackage{times}
\usepackage{CJK}
\pagestyle{empty}
\setcounter{page}{6}
\setcounter{section}{5}
\setlength\textwidth{181.0pt}
%\setlength\textheight{.44\textheight}

\usepackage{amsmath,amssymb}
\begin{CJK*}{GBK}{song}
\begin{document}

\listoffigures

\begin{figure}[!htp]
\centering
\fbox{ A B C D E F}
\caption[图一标题]{这是我的图片一,标题过长}
\end{figure}
\begin{figure}[!htp]
\centering
\fbox{ A B C D E F}
\caption[图二标题]{这是我的图片二,标题过长}
\end{figure}
\begin{figure}[!htp]
\centering
\fbox{ A B C D E F}
\caption[图三标题]{这是我的图片三,标题过长}
\end{figure}
\end{CJK*}

\end{document}


效果图:

LaTeX技巧90:图片标题过长listoffigures不能换行


点赞(0)

评论列表 共有 0 条评论

暂无评论
立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部