发布时间: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
前
例如:
实现代码如下:
\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|}
\end{tabular}
\caption{The table title}
\end{minipage}
发表评论 取消回复