我是靠谱客的博主 还单身硬币,最近开发中收集的这篇文章主要介绍如何将pdf转换为eps,并插入到tex文件中将pdf转换为eps将eps插入到tex中,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

将pdf转换为eps

github上有个工具可以用一下:https://github.com/syneart/pdf2eps
在这里插入图片描述

将eps插入到tex中

1、添加宏包

  usepackage{graphicx} %use graph format
  usepackage{epstopdf}

2、将.eps图片和.tex文件放在一个路径下,使用以下代码:

begin{figure}
centering
includegraphics[height=2cm,width=3cm]{exp.eps}
caption{yes}
label{1}
end{figure}

一个简单完整的示例代码如下:

documentclass[12pt]{article}
usepackage{graphicx} %use graph format
usepackage{epstopdf}
begin{document}
begin{figure}
centering
includegraphics[height=2cm,width=3cm]{exp.eps}
caption{yes}
label{1}
end{figure}
end{document}

最后

以上就是还单身硬币为你收集整理的如何将pdf转换为eps,并插入到tex文件中将pdf转换为eps将eps插入到tex中的全部内容,希望文章能够帮你解决如何将pdf转换为eps,并插入到tex文件中将pdf转换为eps将eps插入到tex中所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(35)

评论列表共有 0 条评论

立即
投稿
返回
顶部