由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
TeX版 - 插图问题
相关主题
插图问题请问怎么把两幅图并排放?用不同的标题?
latex单栏文档中如何双栏显示图片请教两个插图的问题
如何在table里面插入图?graph question
请看代码,如何调整上下两个图的距离?新手请教棘手问题-关于header
怎么让minipage里的多图竖排列并居中?图表混排的问题
subfigure的问题。如何让一个table和picture永远在一起
请教高手:subfig 排三个图加载多幅图片出现的问题,无法显示
请教图片排版问题Latex figure: can not find figure
相关话题的讨论汇总
话题: minipage话题: figure话题: box话题: centering
进入TeX版参与讨论
1 (共1页)
m******i
发帖数: 32
1
我有两个figure: Fig.1 和 Fig.2
文章格式是onecolumn的, 我想并排放这两个图,请问如何实现?
谢了!
k**f
发帖数: 372
2
using the graphicx package, then
\begin{figure}
\centering
%%----start of first figure----
\begin{minipage}[t]{0.4\linewidth}
\centering
\includegraphics[width=1in]{graphic}
\caption{Small Box} \label{fig:side:a}
\end{minipage}%
\hspace{1cm}%
%%----start of second figure----
\begin{minipage}[t]{0.4\linewidth}
\centering
\includegraphics[width=1.5in]{graphic}
\caption{Big Box} \label{fig:side:b}
\end{minipage}
\end{figure}
Example extracted from Part V, section 28 of this document
http://tug.ctan
m******i
发帖数: 32
3
This works. :)
Thanks a lot.

【在 k**f 的大作中提到】
: using the graphicx package, then
: \begin{figure}
: \centering
: %%----start of first figure----
: \begin{minipage}[t]{0.4\linewidth}
: \centering
: \includegraphics[width=1in]{graphic}
: \caption{Small Box} \label{fig:side:a}
: \end{minipage}%
: \hspace{1cm}%

m******i
发帖数: 32
4
this code outputs "Figure 1: Small Box"
is it possible to get "Fig.1. Small Box"?

using the graphicx package, then
\begin{figure}
\centering
%%----start of first figure----
\begin{minipage}[t]{0.4\linewidth}
\centering
\includegraphics[width=1in]{graphic}
\caption{Small Box} \label{fig:side:a}
\end{minipage}%
\hspace{1cm}%
%%----start of second figure----
\begin{minipage}[t]{0.4\linewidth}
\centering
\includegraphics[width=1.5in]{graphic}
\caption{Big Box} \label{fig:side:b}
\end{minipage}
\end

【在 k**f 的大作中提到】
: using the graphicx package, then
: \begin{figure}
: \centering
: %%----start of first figure----
: \begin{minipage}[t]{0.4\linewidth}
: \centering
: \includegraphics[width=1in]{graphic}
: \caption{Small Box} \label{fig:side:a}
: \end{minipage}%
: \hspace{1cm}%

k**f
发帖数: 372
5

\renewcommand{\figurename}{Fig.}

【在 m******i 的大作中提到】
: this code outputs "Figure 1: Small Box"
: is it possible to get "Fig.1. Small Box"?
:
: using the graphicx package, then
: \begin{figure}
: \centering
: %%----start of first figure----
: \begin{minipage}[t]{0.4\linewidth}
: \centering
: \includegraphics[width=1in]{graphic}

m******i
发帖数: 32
6
Thanks a lot!!

【在 k**f 的大作中提到】
:
: \renewcommand{\figurename}{Fig.}

m******i
发帖数: 32
7
one more question: \section{INTRODUCTION} --> 1 INTRODUCTION
How can I output "I INTRODUCTION" "II ..." ...?
and how to output "A INTRODUCTION" "B ..." ...?
k**f
发帖数: 372
8

http://help-csli.stanford.edu/tex/latex-sections.shtml

【在 m******i 的大作中提到】
: one more question: \section{INTRODUCTION} --> 1 INTRODUCTION
: How can I output "I INTRODUCTION" "II ..." ...?
: and how to output "A INTRODUCTION" "B ..." ...?

b*m
发帖数: 124
9
did you try subfig package?

【在 m******i 的大作中提到】
: 我有两个figure: Fig.1 和 Fig.2
: 文章格式是onecolumn的, 我想并排放这两个图,请问如何实现?
: 谢了!

m******i
发帖数: 32
10
很好很暴力!!
3ks!!!!!

【在 k**f 的大作中提到】
:
: http://help-csli.stanford.edu/tex/latex-sections.shtml

1 (共1页)
进入TeX版参与讨论
相关主题
Latex figure: can not find figure怎么让minipage里的多图竖排列并居中?
新手请问插图问题subfigure的问题。
figure caption如何让图表编号从figure x变成图x请教高手:subfig 排三个图
求教一个tex中插入eps图片的问题请教图片排版问题
插图问题请问怎么把两幅图并排放?用不同的标题?
latex单栏文档中如何双栏显示图片请教两个插图的问题
如何在table里面插入图?graph question
请看代码,如何调整上下两个图的距离?新手请教棘手问题-关于header
相关话题的讨论汇总
话题: minipage话题: figure话题: box话题: centering