I have a difficult to include a figure in Latex version of ASME journals. Despite common version of elsevier, springer, Taylor and Francis publiser, when i insert a figure using the following package:
\usepackage{graphicx}
\graphicspath{{figures/}}
and the command
\begin{figure}[h!]
\centering
\includegraphics[width=11cm]{figures/1.pdf}
\caption{figure}
\label{fig:AAA.}
\end{figure}
The figures appears properly in the compilation of the PDF. However, for ASME journal, the figure does not appers when compiling.
In ASME journal, the userpackage is:
\usepackage{epsfig} %% for loading postscript figures
I have difficult to do eps figure with this command
\begin{figure}[t]
\begin{center}
\setlength{\unitlength}{0.012500in}%
\begin{picture}(115,35)(255,545)
\thicklines
\put(255,545){\framebox(115,35){}}
\put(275,560){Beautiful Figure}
\end{picture}
\end{center}
\caption{The caption of a single sentence does not have period at the end}
\label{figure_ASME}
\end{figure}
So who have experimented ASME latex verison and can help me to solve this issue for figure as easier and simple possible way. Thank you