jpg图片插入Latex

来源:互联网 发布:谢雨泓 王卿 知乎 编辑:程序博客网 时间:2024/05/29 15:46

转自:http://yuxiaonananshan.blog.163.com/blog/static/533775332011121105448151/


用ebb程序处理一下,就可以把JPG格式的图片插入到Latex中,得到PDF文件!否则编译时会报错:

找不到"Bounding Box“。

ebb程序在Latex系统里附带了:CTeX/texmf/miktex/bin

处理jpg文件的具体步骤:

右键点击jpg文件——>打开方式——>选择程序——>浏览——>进入目录:C:/CTeX/texmf/miktex/bin,点击ebb.exe——>确定。

然后,在tex文件中插入jpg文件就没问题了!


\begin{figure}
  \centering
  \includegraphics{my1.jpg}
\end{figure}


\begin{figure}
  \centering
   \scalebox{0.65}{\includegraphics{test.eps}} <=== 缩小成 65% 大小.
    \caption{This is a test.}
\normalsize
\end{figure}

原创粉丝点击