读研一年半了,投过了好多期刊,修改图片格式着实令人头疼,最近痛定思痛,打算一定搞懂。今天就来介绍一下不使用ps情况下,图片格式的修改。
投稿分为word和latex版的,一般word用png或者pdf,latex用pdf或者eps。今天就来介绍一下,如何使用visio画的图导出符合期刊要求的eps。因为在visio导出为eps的过程中,需要png和pdf作为过渡。所以,学会了visio转eps,也就学会了转png和pdf,就可以应用于绝大多数的投稿过程中。
1.visio画图
可以用visio直接画,也可以把matlab、python、excel等画的图复制到visio中。
2.visio导出png
点击:设计、大小、适应绘图。这样纸张大小就和图片一样大了。
点击:文件、另存为。保存类型选择可移植网络图形。点击保存。
根据期刊格式要求调整保存要求,分辨率一般调整为600x600,矢量图1200x1200。
一般单栏图片的宽度不超过84mm,双栏图片宽度不超过174mm。高度要求不太一样,差不多一般都没问题。
3.png生成pdf
右键点击png,选择转换为Adobe PDF。
当然,要提前下载这个东西,很多博客都有介绍,这里不再冗余介绍。
4.pdf生成eps
用adobe acrobat打开pdf
点击:文件、导出到、postscript。
格式选择eps
这样就导出eps了,导出效果:
怎么纸张这么大?没关系的。因为一般是latex使用eps,所以使用的时候,会自动调整好的。
放大之后,图片的清晰度也没有问题。
顺便分享一下,latex插入eps的方法:
% For one-column wide figures use
\begin{figure}
% Use the relevant command to insert your figure file.
% For example, with the graphicx package use
\includegraphics{example.eps}
% figure caption is below the figure
\caption{Please write your figure caption here}
\label{fig:1} % Give a unique label
\end{figure}
%
% For two-column wide figures use
\begin{figure*}
% Use the relevant command to insert your figure file.
% For example, with the graphicx package use
\includegraphics[width=0.75\textwidth]{example.eps}
% figure caption is below the figure
\caption{Please write your figure caption here}
\label{fig:2} % Give a unique label
\end{figure*}
如果有说的不对的,或者有更简单的办法,欢迎大佬们在评论区指正!!!
完
欢迎讨论 欢迎吐槽