小舟Ferry分享 http://blog.sciencenet.cn/u/DonarF1

博文

latex

已有 4644 次阅读 2012-4-23 15:15 |个人分类:latex|系统分类:科研笔记| normal, color

1) 关于beamer的编译,如有 frame{titlepage}这一行,一直编译不下去,但如加上usepackage[english]{babel}
就没有问题

2)

/usr/local/texlive/2012/texmf-dist/tex/latex/base/fontenc.sty:100: Font T1/cmr/m/n/10=ecrm1000 at 10.0pt not loadable: Metric (TFM) file not found.<to be read again>


A: sudo apt-get install texlive-fonts-recommended

3)
vspace is a LaTeX command and vskip is a TeX command. Both can be used in LaTeX. When vspace is used within a paragraph, it inserts space after the current line. But if vskip is used within a paragraph it ends the paragraph and inserts the space immediately.



加感叹号来忽略“美学”标准。

begin{figure}[!htb]

usepackage{float}
begin{figure}[H]
插到你代码相应的位置。

1,插入并列的子图

usepackage{subfigure}


begin{figure}[H]
centering
subfigure[SubfigureCaption]{
label{Fig.sub.1}
includegraphics[width=0.4textwidth]{figurename.eps}}
subfigure[SubfigureCaption]{
label{Fig.sub.2}
includegraphics[width=0.4textwidth]{figurename.eps}}
caption{MainfigureCaption}
label{Fig.lable}
end{figure}


2,控制图片位置
如果不喜欢让Latex自动安排图片位置,可以使用float包,然后
用begin{figure}[H]。

usepackage{float}
1,插入jpg图片
在命令行环境下,使用命令:
ebb figure.jpg
生成bounding box文件figure.bb。

使用如下命令:
includegraphics[width=0.8textwidth]{figure.jpg}

可以使用Pdf Texify直接编译成pdf文件。

2,插入bmp图片
还没有找到直接插入bmp图片的方法。现在的方法是,使用
gimp将bmp转换成jpg,然后按上述方法插入。转换时不要
使用windows自带的painter,图片质量损失太多。用gimp或
fastone image viewer,将jpg质量选为最高,转换之后得到的
图片质量较好。

3,同时插入jpg和eps图片
插入的命令不变。编译时使用Latex, dvi2pdf,两种格式的
图片都可以显示。

插入eps图片
使用includegraphics[选项]{文件} 命令可以插入eps图片。下面是一个最简单的例子:

documentclass{article}
usepackage{graphicx} %使用graphicx包
begin{document}
includegraphics{file.eps} %插入图片,按图片原尺寸插入
end{document}

注意:
(1)eps文件和tex文件放在同一个文件夹,只用文件名就可以调用,不用写路径。

(2)编译时不能使用pdflatex,会出错。即使不出错,也看不到图。应使用latex编译生成dvi,然后dvi2ps,ps2pdf就可以看到图了。

使用[选项]可以指定图片大小:

includegraphics[width=3in]{file.eps}
设定图片宽度为3 inches,图片高度会自动缩放。

includegraphics[width=testwidth]{file.eps}
设定图片宽度为文本宽度。

includegraphics[width=0.8textwidth]{file.eps}
设定图片宽度为文本宽度的0.8倍

includegraphics[width=testwidth-2.0in]{file.eps}
设定图片宽度比文本宽度少2 inches。

使用[选项]指定图片旋转角度:
includegraphics[angle=270]{file.eps}
将图片旋转270度。

两个选项同时使用,中间用逗号隔开:
includegraphics[width=testwidth, angle=270]{file.eps}



https://wap.sciencenet.cn/blog-100989-562692.html


下一篇:yambo的编译安装
收藏 IP: 134.102.38.*| 热度|

0

该博文允许注册用户评论 请点击登录 评论 (0 个评论)

数据加载中...

Archiver|手机版|科学网 ( 京ICP备07017567号-12 )

GMT+8, 2024-4-27 15:58

Powered by ScienceNet.cn

Copyright © 2007- 中国科学报社

返回顶部