发布时间:2011-10-05 16:41:48
文章类别:页面设置
原文地址:http://blog.sina.com.cn/s/blog_5e16f1770102dxz2.html

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

各位Latexer:
你们好!
我遇到一个这样的问题:我的文章中要求一幅图片和一个表格并列排在同一行上,

并且表格和图形都带有标题,在各自的正下方。模版将图形和表格都是居中的。我试着用了

minipage环境{figure环境+tabular环境},但是\caption{}只能在table下应用,总之图形和表

格都好处理,就是他们各自的标题总搞不定!

不知哪位高手遇到过这种情况,教我一下!万分感谢

【解决方案】

minipage 環境,裏面不要放 figure 和 table 環境,而是兩個 width 較小的 minipage 環境,\caption{...} 之前添加:
\makeatletter\def\@captype{figure}\makeatother % 在 figure 的 \caption 前
或者
\makeatletter\def\@captype{table}\makeatother % 在 table 的 \caption 前

例如:

image

实现代码如下:

\makeatletter\def\@captype{figure}\makeatother
\begin{minipage}{.45\textwidth}
\centering
\rule{3cm}{2cm}
\caption{The figure caption}
\end{minipage}
\makeatletter\def\@captype{table}\makeatother
\begin{minipage}{.45\textwidth}
\centering
\begin{tabular}{|c|c|c|c|c|}
\hline
% after \\: \hline or \cline{col1-col2} \cline{col3-col4} ...
a & a & a & a & a \\
a & a & a & a & a \\
a & a & a & a & a \\
a & a & a & a & a \\
a & a & a & a & a \\
\hline
\end{tabular}
\caption{The table title}
\end{minipage}

选自:http://bbs.ctex.org/viewthread.php?tid=37869


点赞(0)

评论列表 共有 0 条评论

暂无评论
立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部