一般支持三种格式的图片排版

%% if you use PostScript figures in your article

%% use the graphics package for simple commands

%% usepackage{graphics}

%% or use the graphicx package for more complicated commands

%% usepackage{graphicx}

%% or use the epsfig package if you prefer to use the old commands

%% usepackage{epsfig}

eps格式图片的排版举例:

首先需要在导言部分引入相关包:usepackage{epsfig}

排版效果图:

LaTex:图片排版

 

排版代码:

%Latex排版之图片排版

begin{figure*}[!htbp]

centering

psfig{file=pic/Ex4-20ga.eps,width=1.5in,origin=br,angle=-90}

psfig{file=pic/Ex4-20gb.eps,width=1.5in,origin=br,angle=-90}

%psfig{file=pic/Ex4-20gc.eps,width=1.5in,origin=br,angle=-90}

caption {Experiment result for uneven data distribution.}

label{fig:ex4}

end{figure*}

需要注意的:在论文中排版eps图片后,编译tex文件的顺序为:先运行编译TeXify LaTex:图片排版,再运行dvi2pdfLaTex:图片排版 得到pdf文件。

 

from: http://www.binghe.org/2010/03/typeset-graphics-in-latex/

相关文章:

  • 2022-01-07
  • 2021-10-09
  • 2021-09-17
  • 2021-08-18
  • 2021-05-07
  • 2021-08-15
  • 2021-06-15
  • 2021-11-14
猜你喜欢
  • 2022-01-20
  • 2021-12-31
  • 2022-12-23
  • 2021-04-12
  • 2022-12-23
  • 2021-11-15
  • 2021-11-29
相关资源
相似解决方案