Latex中图形的引用和插入

Posted ztguang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Latex中图形的引用和插入相关的知识,希望对你有一定的参考价值。


http://blog.163.com/xiaoting_hu/blog/static/504647722013528143405/


步骤:

1. 用图形软件输出 EPS 格式的文件,或PDF格式的图形
2. 在源文件的导言中加入下面代码,这样下面几种类型的图都可以插入

   \\ifCLASSINFOpdf
   \\usepackage[pdftex]graphicx
   \\graphicspath../pdf/../jpeg/     % declare the path(s) where your graphic files are
    \\DeclareGraphicsExtensions.pdf,.jpeg,.png
    \\else
    \\usepackage[dvips]graphicx
    \\graphicspath../eps/
    \\DeclareGraphicsExtensions.eps
\\fi

3 插入浮动图形(浮动图形由latex自动指定位置,一般放在一页的最前面或最后面)

\\beginfigure
\\centering   //设置对齐格式
\\includegraphics [width=0.75,height=2.5]arch.pdf  //指定图形大小和图形名称,一般将该图形放在latex文件同一路径下就不需要指明路径
\\captionProposed Secure Systolic Montgomery modular MultiplierArchitecture 设置图形标题

 \\labelfig:arch 设置图形引用名称
\\endfigure

或者使用\\includegraphics[width=0.25\\textwidth]arch.pdf //此处width=0.25和命令\\textwidth配合可实现原图按比例缩放的功能,此处代表原图的宽度为页面的大小的25%,高度按比例自动缩放。

4.想要把图形插在自己指定位置并且需要交叉引用的话,要使用以下的格式:

\\makeatletter

\\def\\@captypefigure

\\makeatother

\\includegraphics [width=0.75,height=2.5]arch.pdf  //此处用法同3

\\caption...

\\label...

5.文中引用

In  Figure \\reffig:arch   //其中的fig:arch为定义该图时的label名

6.figure and figure*的区别

figure相对本栏,figure* 相对于通栏。 


以上是关于Latex中图形的引用和插入的主要内容,如果未能解决你的问题,请参考以下文章

latex如何在双栏中插入两张通栏的图片,即 栏1 栏2 图1 图2 在网上找了一个,不过两张图没有对齐

怎样用latex修改插入图形的大小,使图形大小一致。

latex中插入的图形与文字间距太大,怎么缩小

在LaTeX文档中插入图片的几种常用的方法

如何在LaTeX中制作这样的插图,图片+文字?

LaTeX如何插入大量图片?