发布时间:2009-12-11 18:40:37
文章类别:小技巧
原文地址:http://blog.sina.com.cn/s/blog_5e16f1770100gdwr.html

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

效果图:

LaTeX技巧155:如何修改图表标题式样为“图1-1”

实现代码:

\documentclass{article}
\usepackage{CJK}
\usepackage{graphicx}
\usepackage[includemp,body={398pt,550pt},footskip=30pt,%
marginparwidth=60pt,marginparsep=10pt]{geometry}
\usepackage{subfigure}
\makeatletter
\renewcommand\thefigure{\@arabic\c@section--\@arabic\c@figure}%
\long\def\@makecaption#1#2{%
\vskip\abovecaptionskip
\sbox\@tempboxa{#1\hskip 1em#2}%
\ifdim \wd\@tempboxa >\hsize
#1\hskip 1em#2\par
\else
\global \@minipagefalse
\hb@xt@\hsize{\hfil\box\@tempboxa\hfil}%
\fi
\vskip\belowcaptionskip}
\makeatother
\begin{CJK*}{GBK}{song}
\renewcommand\figurename{图}
\begin{document}
\section{图形展示}
\begin{figure}[!htbp]
\centering
\subfigure[Small Box with a Long Caption]{
\label{fig:subfig:a} %% label for first subfigure
\includegraphics[width=1.0in]{pic1.eps}}
\hspace{1in}
\subfigure[Big Box]{
\label{fig:subfig:b} %% label for second subfigure
\includegraphics[width=1.5in]{pic.eps}}
\caption{Two Subfigures}
\label{fig:subfig} %% label for entire figure
\end{figure}

\paragraph{}
\clearpage
\end{CJK*}
\end{document}


点赞(0)

评论列表 共有 0 条评论

暂无评论
立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部