由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
TeX版 - 怎么实现这个插图?
相关主题
请教两个插图的问题关于底边边距的问题
很多figure怎么include?latex单栏文档中如何双栏显示图片
latex Table/Figure 请叫插图问题
latex 插图出现的问题一个对齐的问题
新手请问插图问题Footnote in latex
问一个排版图片的问题终于还是放弃了LaTex.
list of figure问题请教如何摆一个大图
请教 bibliography 字体和正文不同的问题How to remove Latex figure number?
相关话题的讨论汇总
话题: figure话题: subfigure话题: latex话题: subfloat
进入TeX版参与讨论
1 (共1页)
a******s
发帖数: 232
1
要插入两张图,第一张图在第一页,第二张图在第二页,第一张图希望写上
Figure 1a: blah blah, 第二张图希望写上Figure 1b: blah blah,latex
怎么写这个?引用的时候怎么引用?
f********h
发帖数: 149
2
use subfigure, as long as the figures are large enough, latex will put them
into separate pages.

【在 a******s 的大作中提到】
: 要插入两张图,第一张图在第一页,第二张图在第二页,第一张图希望写上
: Figure 1a: blah blah, 第二张图希望写上Figure 1b: blah blah,latex
: 怎么写这个?引用的时候怎么引用?

a******s
发帖数: 232
3
subfigure不行吧?我用它呢,它好像只能把subfigure弄成(a)(b)(c)...,而且不能分页
产生的不是Figure1a,Figure1b,顶多是(a)在第一页,然后(b)在第二页,然后是Figure1
blah blah

【在 f********h 的大作中提到】
: use subfigure, as long as the figures are large enough, latex will put them
: into separate pages.

a******s
发帖数: 232
4
这个问题基本上是我不希望生成Figure1,Figure2,...而是希望生成Figure1a,
Figure1b,Figure2....,是不是不能控制figure的自动编号?只有改.cls才能实现我要
的功能?


Figure1

【在 a******s 的大作中提到】
: subfigure不行吧?我用它呢,它好像只能把subfigure弄成(a)(b)(c)...,而且不能分页
: 产生的不是Figure1a,Figure1b,顶多是(a)在第一页,然后(b)在第二页,然后是Figure1
: blah blah

f******n
发帖数: 176
5
try this:
\centerline{\includegraphics[scale=1.0,angle=0,width=0.9\textwidth]{figure1.
eps}}
then figure2.eps

【在 a******s 的大作中提到】
: 要插入两张图,第一张图在第一页,第二张图在第二页,第一张图希望写上
: Figure 1a: blah blah, 第二张图希望写上Figure 1b: blah blah,latex
: 怎么写这个?引用的时候怎么引用?

a******s
发帖数: 232
6
这不就是两个figure么?只会出来Figure 1, Figure 2吧?

【在 f******n 的大作中提到】
: try this:
: \centerline{\includegraphics[scale=1.0,angle=0,width=0.9\textwidth]{figure1.
: eps}}
: then figure2.eps

f********h
发帖数: 149
7
you can redefine the counter \thesubfigure
\renewcommand{\thesubfigure}{Figure\thefigure\alph{subfigure}}


Figure1

【在 a******s 的大作中提到】
: subfigure不行吧?我用它呢,它好像只能把subfigure弄成(a)(b)(c)...,而且不能分页
: 产生的不是Figure1a,Figure1b,顶多是(a)在第一页,然后(b)在第二页,然后是Figure1
: blah blah

T*******n
发帖数: 493
8
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).

【在 a******s 的大作中提到】
: 要插入两张图,第一张图在第一页,第二张图在第二页,第一张图希望写上
: Figure 1a: blah blah, 第二张图希望写上Figure 1b: blah blah,latex
: 怎么写这个?引用的时候怎么引用?

T*******n
发帖数: 493
9

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".

【在 f********h 的大作中提到】
: you can redefine the counter \thesubfigure
: \renewcommand{\thesubfigure}{Figure\thefigure\alph{subfigure}}
:
: 页
: Figure1

a******s
发帖数: 232
10
Thanks for your answer. subfloat solved my problem. I have one more quesion
concerning the latex package. It seems there are tons of latex packages
available online,like subfloat,subfig etc. How do I know which package is
the one I need? Most of time, it's very hard to get the exact package I
need. Do you know subfloat before you answered my question? or you've have
experience with subfloat? Thanks again for the answer. :)

【在 T*******n 的大作中提到】
: 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).

T*******n
发帖数: 493
11
No I didn't know about subfloat until I answered your question earlier.
I found out about subfloat in "The LaTeX Companion", 2nd edition
(Addison-Wesley 2004, ISBN 0-201-36299-6) by looking up
"sub-figures" in the index and quickly scanning half a dozen pages.
I strongly recommend this book to every serious user of LaTeX.
Some people think that the price (US$59.99) is to expensive, but this
book does answer almost questions that are asked here and in other
LaTeX fora. And even if you don't have

【在 a******s 的大作中提到】
: Thanks for your answer. subfloat solved my problem. I have one more quesion
: concerning the latex package. It seems there are tons of latex packages
: available online,like subfloat,subfig etc. How do I know which package is
: the one I need? Most of time, it's very hard to get the exact package I
: need. Do you know subfloat before you answered my question? or you've have
: experience with subfloat? Thanks again for the answer. :)

a******s
发帖数: 232
12
Is there a place which lists all the packages available by category?
such as figure related, table related etc? You can only search or list all
the packages at www.ctan.org. It's not convenient to users.

【在 T*******n 的大作中提到】
: No I didn't know about subfloat until I answered your question earlier.
: I found out about subfloat in "The LaTeX Companion", 2nd edition
: (Addison-Wesley 2004, ISBN 0-201-36299-6) by looking up
: "sub-figures" in the index and quickly scanning half a dozen pages.
: I strongly recommend this book to every serious user of LaTeX.
: Some people think that the price (US$59.99) is to expensive, but this
: book does answer almost questions that are asked here and in other
: LaTeX fora. And even if you don't have

T*******n
发帖数: 493
13
How about:
http://www.ctan.org/tex-archive/help/Catalogue/bytopic.html
http://www.ctan.org/tex-archive/help/Catalogue/bytopic.html#floats
http://texcatalogue.sarovar.org/

【在 a******s 的大作中提到】
: Is there a place which lists all the packages available by category?
: such as figure related, table related etc? You can only search or list all
: the packages at www.ctan.org. It's not convenient to users.

a******s
发帖数: 232
1 (共1页)
进入TeX版参与讨论
相关主题
How to remove Latex figure number?新手请问插图问题
如何输出latex的文献到word里面?问一个排版图片的问题
请教关于subfigure的问题list of figure问题
one question about latex figure请教 bibliography 字体和正文不同的问题
请教两个插图的问题关于底边边距的问题
很多figure怎么include?latex单栏文档中如何双栏显示图片
latex Table/Figure 请叫插图问题
latex 插图出现的问题一个对齐的问题
相关话题的讨论汇总
话题: figure话题: subfigure话题: latex话题: subfloat