由买买提看人间百态

topics

全部话题 - 话题: subfigures
1 2 下页 末页 (共2页)
mw
发帖数: 525
1
发现subfigure的caption很占位子,而且该交代的东西在整个figure的caption里面都
交代了,没有必要在给每个subfigure讲一遍。
请问有什么办法可以去掉subfigure的caption?比如下面的code
\begin{figure}[h]
\centering \subfigure[3451]{
\includegraphics[width = 0.3\textwidth,height = 0.225\textwidth]{d:/latex/
eps/3451Bayesian_nodes_prob.eps}}
\subfigure[3501]{
\includegraphics[width = 0.3\textwidth,height = 0.225\textwidth]{d:/latex/
eps/3501Bayesian_nodes_prob.eps}}
\subfigure[3551]{
\includegraphics[width = 0.3\textwidth,height = 0.225\textwidth]{d:/latex/
eps/35
T*******n
发帖数: 493
2
There have been a lot of discussions about the "subfigure" package.
I would recommend that everyone try the "subfig" package instead,
which is replaces the obsolete "subfigure" package.
Both "subfigure" and "subfig" were written by Steven Cochran.
He originally wrote "subfigure" to be compatible with the "caption2"
package by Axel Sommerfeldt. When "caption2" was upgraded to
"caption version 3" with substantial code rewriting, the "subfigure"
package was also rewritten and became the newer "sub
c*****u
发帖数: 530
3
来自主题: TeX版 - subfigure的问题。
想把两张图竖着排列在一个figure里面。用了subfigure,编译没问题,可是就是无法
正确的显示。
大家帮我看看我的code有没有问题:
\begin{figure*}
\centering
\subfigure[a]{
\label{fig:P1}
\includegraphics[width=.7\linewidth]{p1.eps}
}
\subfigure[b]{
\label{fig:P2}
\includegraphics[width=.7\linewidth]{p2.eps}
}
\caption{the caption}
\label{fig:cases}
\end{figure*}
s*********g
发帖数: 1107
4
来自主题: TeX版 - 请教关于subfigure的问题
我又两张图片是长方形的,扁扁的,只能上下排列,但是当我使用subfigure命令的时
候,一切都是好好的除了subcaption排在图片下方的最左侧之外,我试了很多次都没办
法调到中间同时又保持图片大小不变,郁闷阿。只有我把scale设置成1的时候才能
subcaption在中间,但是却在图片的上面,哎,搞了我一个晚上了,烦。。。
我的tex是这样的:
\begin{figure}[!htp]
\begin{center}
\subfigure[]{\label{fig:A}}{
\includegraphics[scale=0.6]{Images/A}}
\subfigure[]{\label{fig:B}}{
\includegraphics[scale=0.6]{Images/B}}
\caption{\label{fig:AB} A + B}
\end{center}
\end{figure}
请问我的问题在哪里呢?谢谢帮助!
s****y
发帖数: 8
5
\begin{figure*}
\centering
\subfigure[a]{
\includegraphics[width=3in]{fig1a.eps}}
\subfigure[b]{
\includegraphics[width=3in]{fig1b.eps}}
\caption{fig1}
\end{figure*}
fig1b 比 fig1a 要扁很多,想让两个fig垂直居中对齐,请问如何处理?
多谢
g*****y
发帖数: 10
6
来自主题: TeX版 - 请教关于subfigure的问题
我觉得你不用这么麻烦
试试这个:
\begin{figure}[!htp]
\begin{center}
\subfigure[]{\label{fig:A}}{
\includegraphics[scale=0.6]{Images/A}}
\subfigure[]{\label{fig:B}}{
\includegraphics[scale=0.6]{Images/B}}
\caption{\label{fig:AB} A + B}
\end{center}
\end{figure}
s***t
发帖数: 195
7
来自主题: TeX版 - 请教关于subfigure的问题
try
\begin{figure}
\centering
\subfigure[]{\label{fig:A}%
\includegraphics[scale=.6]{Images/A}}
\subfigure[]{\label{fig:B}%
\includegraphics[scale=.6]{Images/B}}
\caption{A + B} \label{fig:AB}
\end{figure}
a few things to note:
1. the % after {. sometimes the linebreak is significant since it
introduces a white space.
2. use \centering instead of center env. center env will produce
extra vertical space. doesn't make sense to use center env inside
figure env.
3. put \label after \caption
s***t
发帖数: 195
8
来自主题: TeX版 - 请教关于subfigure的问题
faint. I made a mistake in the previous post. I just copied your code
and made some changes and didn't notice the obvious mistake you made.
\subfigure only takes 1 arg and 1 optional arg. it should be like this
\subfigure[Optional Caption]{%
\label{fig:A}%
\includegraphics[scale=.6]{Images/A}%
}
I've edited my previous post the correct this.
s*********g
发帖数: 1107
9
来自主题: TeX版 - 请教关于subfigure的问题
对了,还有一个问题忘了问,如果我加了subcaption,却不能正常平铺排列,只能每行
显示4个字节,好奇怪啊,难道是我的subfigure.sty有问题吗?
s*********g
发帖数: 1107
10
来自主题: TeX版 - 请教关于subfigure的问题
谢谢!我试了一下还是没有解决问题,不知道是不是因为我下载的subfigure.sty有问
题还是怎么回事,subcaption始终不能正常显示。
后来我改用一般的方式解决了问题,才发觉其实平常的方法就可以做到的反而被我搞得
这么复杂,呵呵。
\begin{figure}
\centering
\includegraphics[scale=.6]{Images/A}}
\caption{A} \label{fig:A}
\includegraphics[scale=.6]{Images/B}}
\caption{B} \label{fig:B}
\end{figure}
s*******n
发帖数: 493
11
如果\usepackage{subfigure},大标题都左对齐,小标题是居中;如果\usepackage{
subfig},大、小标题都居中。有什么方法可以都是左对齐?谢谢!用的revtex4!
g*********r
发帖数: 124
12
\captionsetup[subfigure]{singlelinecheck=false}
o*******i
发帖数: 396
13
两个matlab的图
Fig1 和 Fig2,已经存好成.fig 格式了
想写一个matlab程序,把这两个figure 读近来,(能否)
输出成一个figure的a 和 b subfigure
谁知道怎么搞定这个问题?
o*******u
发帖数: 242
14
来自主题: Linux版 - reference to subfigue (转载)
【 以下文字转载自 TeX 讨论区 】
发信人: ohliumliu (htmm), 信区: TeX
标 题: reference to subfigue
发信站: BBS 未名空间站 (Tue May 19 22:33:07 2009)
请问subfigure package有没有选项设置cross references的字体?比如有一个图,包
含两个小图(A)和(B),他们分别有label,在正文里引用这两个图的时候,就变成了Fig.
1(a)和Fig.1(b)。如何变成Fig.1(A)和Fig.1(B)呢?每个subfigure底下的title可以选
择是大写还是小写,但不知交叉引用时的字体在哪里控制。查了subfigure和subfig(
subfigure的替代)的文档,似乎没有发现。
谢谢!
T*******n
发帖数: 493
15
来自主题: TeX版 - 怎么实现这个插图?
Try the subfloat package, LaTeX Companion 2nd ed. pp. 321-322 or
http://www.ctan.org/tex-archive/macros/latex/contrib/subfloat/
By the way, the subfigure package is replaced by the subfig package,
so those who want to generate subfigures should try to use subfig
instead of subfigure. They are by the same author. The subfig
package also works well with the caption package (subfigured worked
with caption2).
o*******u
发帖数: 242
16
来自主题: TeX版 - reference to subfigue
请问subfigure package有没有选项设置cross references的字体?比如有一个图,包
含两个小图(A)和(B),他们分别有label,在正文里引用这两个图的时候,就变成了Fig.
1(a)和Fig.1(b)。如何变成Fig.1(A)和Fig.1(B)呢?每个subfigure底下的title可以选
择是大写还是小写,但不知交叉引用时的字体在哪里控制。查了subfigure和subfig(
subfigure的替代)的文档,似乎没有发现。
谢谢!
p***c
发帖数: 2403
17
来自主题: TeX版 - 问个关于括号的奇怪问题
画个图,用了subfigure
比如
\begin{figure}
\subfigure[AAAAAAAAA]{
...
}
\end{figure}
其中[AAAAAA]应该是subfigure的图的名字,我需要的是x在[a,b]闭区间中,那就是
\subfigure[$x\in [a,b]$]{
...
}
但是这样无论如何不能编译通过,大概是把闭区间的[]认为成了那个caption的结束符
如果换成(), \{\}都是可以的。怎么办呢?方括号还有其它的表达方法吗?
谢谢
T*******n
发帖数: 493
18
来自主题: TeX版 - 怎么实现这个插图?

All the \the[counter] commands in LaTeX shouldn't contain text
labels like "Figure", "Table", "Chapter". You should do one of
these instead:
\renewcommand{\thesubfigure}{\thefigure\alph{subfigure}}
\renewcommand{\thesubfigure}{\thefigure.\alph{subfigure}}
\renewcommand{\thesubfigure}{\thefigure(\alph{subfigure})}
then the internal code of \makecaption would contain something
like "Figure~\thesubfigure".
r*********s
发帖数: 2157
19
来自主题: TeX版 - 请教图片排版问题
I use the following one, you may have a try:
\usepackage{graphicx}
\usepackage{subfigure}
\begin{figure}[htb]
\centering \mbox{ \subfigure[sub title-1]{\includegraphics[scale=.5]{test1.eps
}}\quad
\subfigure[sub title-2]{\includegraphics[scale=.5]{test2.eps}} }
\caption{caption} \label{Fig:CellDropRates}
\end{figure}
just like
xxxxx yyyy
(a)---(b)
Fig2: title
T*******n
发帖数: 493
20
来自主题: TeX版 - 请教图片排版问题
Actually the subfigure package is obsolete now. (I think I mentioned
this before.) You might want to try the newer subfig package
(written by the same author); subfig is more compatible with other
packages such as the caption package.
http://www.ctan.org/tex-archive/macros/latex/contrib/subfig/
Documentation for the obsolete subfigure is found at
http://www.ctan.org/tex-archive/obsolete/macros/latex/contrib/subfigure/
y***a
发帖数: 840
21
I have a 2X2 graph which contains 4 subfigures in my latex file as follows.
The problem is that this 2X2 graph is not big enough for one page (I estimate
that it only occupies 50% of the page), but latex doesnot put the neighboring
text in the same page with this graph. Anybody knows how to force latex to
squeeze some text into the same page with the graph? thanks.
\begin{figure}[htbp]
\centering
\begin{minipage}{6.5cm}
\subfigure[situation1.]{
\includegraphics[width=6.55cm]{experiments/1.eps}
m*****n
发帖数: 285
22
我用subfigure,为什么每个figure的caption前总有个数字9,不如9(a), 9(b),
而且所有的figure(带有subfigure的)都是这样,多个数字9.
用IEEE的模板就没事.
真奇怪...
请指点...
T*******n
发帖数: 493
23
来自主题: TeX版 - 很多figure怎么include?
Do you want them to appear as Figures 1 to 16 (16 figures) or as Figures 1(a)
to 1(p) (one figure with 16 subfigures), or Figures 1(a) to 2(h) (two figures
each with eight subfigures)? Normally you should have some kind of captioning
on both pages, regardless of you number the figures. Anyway, take a look at
http://www.ctan.org/tex-archive/macros/latex/contrib/subfig/ if you haven't
already.
a******s
发帖数: 232
24
来自主题: TeX版 - 怎么实现这个插图?
subfigure不行吧?我用它呢,它好像只能把subfigure弄成(a)(b)(c)...,而且不能分页
产生的不是Figure1a,Figure1b,顶多是(a)在第一页,然后(b)在第二页,然后是Figure1
blah blah
z*****n
发帖数: 7639
25
来自主题: TeX版 - 请教图片排版问题
This should be easy.
use
\begin{figure}
\subfigure{
\includegraphics{1.eps}
}
\subfigure{
\includegraphics{2.eps}
}
\caption{.........}
\label{....}
\end{figure}

,
a***f
发帖数: 150
26
就像用subfigure把两张图左右排版那样,subfigure可以这样排吗?
或者其他方法?谢谢。
a***f
发帖数: 150
27
来自主题: TeX版 - 请教如何摆一个大图
我的是这样。其实是两个图成一个大图。
\begin{figure}[h!]
\begin{center}
\subfigure[]{
\includegraphics[width=0.95\textwidth]{a.eps}
}
\subfigure[]
{
\includegraphics[width=0.95\textwidth]{b.eps}
}
\end{center}
\end{figure}
m*****n
发帖数: 285
28
【 以下文字转载自 CS 讨论区 】
发信人: mission (possible), 信区: CS
标 题: ACM conference latex模板的问题
发信站: BBS 未名空间站 (Sun Jan 27 23:06:37 2008), 转信
我用subfigure,为什么每个figure的caption前总有个数字9,不如9(a), 9(b),
而且所有的figure(带有subfigure的)都是这样,多个数字9.
用IEEE的模板就没事.
真奇怪...
请指点...
m*****n
发帖数: 285
29
【 以下文字转载自 TeX 讨论区 】
发信人: mission (possible), 信区: TeX
标 题: ACM conference latex模板的问题
发信站: BBS 未名空间站 (Sun Jan 27 23:06:54 2008), 站内
发信人: mission (possible), 信区: CS
标 题: ACM conference latex模板的问题
发信站: BBS 未名空间站 (Sun Jan 27 23:06:37 2008), 转信
我用subfigure,为什么每个figure的caption前总有个数字9,不如9(a), 9(b),
而且所有的figure(带有subfigure的)都是这样,多个数字9.
用IEEE的模板就没事.
真奇怪...
请指点...
l******t
发帖数: 108
30
来自主题: Science版 - Re: Pictures in Latex
Updated:
check 27.3.2 Changing Subgure Numbering (page 78) of this file:
http://www.ctan.org/tex-archive/info/epslatex.pdf
dont know how to get 1a, 1b.
i only know that using subfigure package, you can get sth like
(a) (b) (c)
Figure 1: Three Subfigures
d******8
发帖数: 2191
31
【 以下文字转载自 USTC 讨论区 】
发信人: dd322508 (流月飞絮), 信区: USTC
标 题: Latex ref{figure}显示的是罗马数字而不是阿拉伯数字
发信站: BBS 未名空间站 (Fri Jun 25 12:24:45 2010, 美东)
图片下面是阿拉伯数字,但是引用的结果就成了罗马数字了。
\documentclass[aps,prb,showpacs,twocolumn,floats]{revtex4}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{subfigure}
\usepackage{epsfig}
\usepackage{dcolumn}
\usepackage{bm}
\usepackage{amsmath}
省去中间部分......
\begin{figure}\label{junctionmodel}
\includegraphics[width=70mm]{junctionmodel}
\caption{Color online:.....}
\end{figu
b*******t
发帖数: 33714
32
来自主题: PhotoGear版 - 用word的tx们,包子弱问
很弱很弱的问题。。。完全不会用。。。
如果放figure的话一般都怎么处理?直接插入图片下面插文本框字体改小加caption吗
?如果有subfigure的话直接鼠标拖着移位置吗?(a)(b)(c)(d)也直接手动标吗?还是
有什么稍微compact一点的frame之类的可以把这些团成一团?
L*****y
发帖数: 4290
33
来自主题: PhotoGear版 - 用word的tx们,包子弱问
我一般用表格
caption还是用系统自动生成的比较好

很弱很弱的问题。。。完全不会用。。。
如果放figure的话一般都怎么处理?直接插入图片下面插文本框字体改小加caption吗
?如果有subfigure的话直接鼠标拖着移位置吗?(a)(b)(c)(d)也直接手动标吗?还是
有什么稍微compact一点的frame之类的可以把这些团成一团?
d**********o
发帖数: 1321
34
来自主题: WebRadio版 - 潜水员冒泡兼征版友意见
第一个项目report
这时偶刚到CSAC工作不久,与小A同学还不熟,我用的还是latex。随着贴的作业越来越
多,应该是用有共同爱好的小伙伴更亲密些。这次贴latex,下次才再org-mode。
\documentclass[b5paper,11pt, abstraction, titlepage]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{CJKutf8}
\usepackage{multirow}
\usepackage{multicol}
\usepackage{listings}
\usepackage{geometry}
\geometry{b5paper}
\usepackage{graphicx,floatrow}
\usepackage{graphicx,subfigure}
\newsavebox{\abstractbox}
\renewenvironment{abstract}
{\begin{lrbox}{0}\begin{minipage}{\t... 阅读全帖
d**********o
发帖数: 1321
35
来自主题: WebRadio版 - 潜水员冒泡兼征版友意见
第一个项目report
这时偶刚到CSAC工作不久,与小A同学还不熟,我用的还是latex。随着贴的作业越来越
多,应该是用有共同爱好的小伙伴更亲密些。这次贴latex,下次才再org-mode。
\documentclass[b5paper,11pt, abstraction, titlepage]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{CJKutf8}
\usepackage{multirow}
\usepackage{multicol}
\usepackage{listings}
\usepackage{geometry}
\geometry{b5paper}
\usepackage{graphicx,floatrow}
\usepackage{graphicx,subfigure}
\newsavebox{\abstractbox}
\renewenvironment{abstract}
{\begin{lrbox}{0}\begin{minipage}{\t... 阅读全帖
d******8
发帖数: 2191
36
图片下面是阿拉伯数字,但是引用的结果就成了罗马数字了。
\documentclass[aps,prb,showpacs,twocolumn,floats]{revtex4}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{subfigure}
\usepackage{epsfig}
\usepackage{dcolumn}
\usepackage{bm}
\usepackage{amsmath}
省去中间部分......
\begin{figure}\label{junctionmodel}
\includegraphics[width=70mm]{junctionmodel}
\caption{Color online:.....}
\end{figure}
省去中间部分.......
\ref{junctionmodel} 结果为 I,而不是1.
求达人指点。谢谢!
s****m
发帖数: 8
37
need some parameter when you include subfigure?
z*****n
发帖数: 7639
38
they will charge you 1 page more, usually 100$.
I think you can always shrink your paper by
1. making a shorter introduction
2. reduce the font size in tables
3. reduce the figures' size
4. make separated figures as a set of subfigures
5. take away some less important references
l******t
发帖数: 108
39
来自主题: Software版 - Re: [转载] eps figure questions.

resize it in latex, need graphicx package, sth like
\includegraphics[scale=0.5]{youreps}
\includegraphics[width=0.8\textwidth]{youreps}
do u want \caption{}? or add something to the eps? maybe you
can try pstricks, psfrag packages.
try subfigure package
w*******g
发帖数: 99
40
来自主题: Software版 - Re: 请问LaTex里怎么并排放图
usepackage{subfigure}
If you don't have it, go to ctan and get one...
z*****n
发帖数: 7639
41
来自主题: TeX版 - 很多figure怎么include?
use subfigure package
f********h
发帖数: 149
42
来自主题: TeX版 - 怎么实现这个插图?
use subfigure, as long as the figures are large enough, latex will put them
into separate pages.
f********h
发帖数: 149
43
来自主题: TeX版 - 怎么实现这个插图?
you can redefine the counter \thesubfigure
\renewcommand{\thesubfigure}{Figure\thefigure\alph{subfigure}}


Figure1
T*******n
发帖数: 493
44
来自主题: TeX版 - 请教图片排版问题
If you don't need the (a), (b), etc. for the subfigures (e.g.,
if the (a) is already in the EPS file), you can just say
\begin{figure}
\includegraphics{...}
\includegraphics{...}
\caption{...}
\end{figure}
a***f
发帖数: 150
45
来自主题: TeX版 - 请教图片排版问题
多谢指教.可是我用了subfigure还是没有(a),(b)呀??
z*****n
发帖数: 7639
46
damn the conference that requires page limitation.
My figures becomes sooo small.
z*****n
发帖数: 7639
47
or another is how to increase the font size in eps file?
The problem now is if i scaled the figures small, perhaps
the reviewers need amplifier to read it...
I really don't want to go through gnuplot again...
T*******n
发帖数: 493
48
来自主题: TeX版 - help on subtable label
Try the following. You need the latest versions of subfig and caption from
ctan.org. Check the documentation subfig.pdf for more details. Don't use
subfigure.sty as it is obsolete and replaced by subfig.sty.
\documentclass{article}
\usepackage{subfig}
\captionsetup[table]{position=top}
\captionsetup[subtable]{position=top}
\begin{document}
See the two parts of Table~\ref{tab:something}, namely Table~\ref{tab:10}
and Table~\ref{tab:something}\subref{tab:20}.
\begin{table}[hbt]
\centering
k*****c
发帖数: 1670
49
来自主题: TeX版 - 终于还是放弃了LaTex.
首先的感觉就是:
真是太难用了!
虽然出来的文章好看,但是,太多太复杂的设定,不是WYSIWG,太多的东西需要手动设定.
如果只是用来写一些文字和公式多些的东西,用Latex可能还是一个比较好的选择.
但是,如果要放很多图,subfigure, subtable之类的,就太烦了.
昨天试了一个晚上,最终还是不行.
唉,还是回到word好了.等以后Latex的界面更fridendly了,再尝试吧.
k*****c
发帖数: 1670
50
来自主题: TeX版 - 终于还是放弃了LaTex.
Yes, but still not easy to solve my problem "subfigure".
1 2 下页 末页 (共2页)