Texlive报错LaTeX Error: File `picins.sty' not found

The first submission need to use latex template, the template for the results of journals included "picins" this package, call statement can be found in .cls file in the template directory:

%% graphics packages
\RequirePackage{graphicx,picins}

  According to various online tutorial on CTAN download, and think of ways to picins.sty other documents copied to the directory texlive, specifically Baidu. Finally, not being given, but it appears insert png images correctly, insert a blank picture eps situation.

In fact, "picins" is not made in a permission texlive, and very old package. There is no need to install this package, texlive new alternative illustration package.

  So, I am here to cls file template package needs picins deleted, you can insert map of all normal.

%% graphics packages
\RequirePackage{graphicx}

  You can test, the test code:

\documentclass[12pt]{article}  
\usepackage{graphicx} %use graph format  
 
\begin{document}  
\begin{figure}  
\centering  
\includegraphics[scale = 0.5]{test.eps}  
\caption{yes}  
\label{1}  
\end{figure}  
\end{document}  

Illustrations can be normal and not an error.

Guess you like

Origin www.cnblogs.com/li-minghao/p/10954487.html