avatar
怎么实现这个插图?# TeX - TeX电子排版系统
a*s
1
要插入两张图,第一张图在第一页,第二张图在第二页,第一张图希望写上
Figure 1a: blah blah, 第二张图希望写上Figure 1b: blah blah,latex
怎么写这个?引用的时候怎么引用?
avatar
f*h
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
: 怎么写这个?引用的时候怎么引用?

avatar
a*s
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.

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


Figure1

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

avatar
f*n
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
: 怎么写这个?引用的时候怎么引用?

avatar
a*s
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

avatar
f*h
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

avatar
T*n
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
: 怎么写这个?引用的时候怎么引用?

avatar
T*n
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

avatar
a*s
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).

avatar
T*n
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. :)

avatar
a*s
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

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。