Generate PDF files from Latex Files:

To generate the pdf file from latex file just following these tips:

                                epstopdf File_Name.eps

                                              or

                                ps2pdf File_Name.ps

        e.g. I used the command ps2pdf  fig6.ps and it generated the file from PS to PDF format. The generated file was fig6.pdf.

        Both of these command convert a figure in EPS or PS into a figure in PDF format. Now include the figures in PDF format in the place where the figures should be included in EPS or PS format. This is shown below by an example:

        A figure can be included in PS format by using the template as shown below:

                                \begin{figure}[!ht]

                                {\centering \resizebox*{3in}{3in}{\includegraphics{fig6.ps}} \par}

                                \caption{\fontfamily{ptm}\selectfont{\normalsize{Multiport Decomposition Technique}}}

                                \label{multi}

                                \end{figure}

        The change is made only in the figure format i.e. change the name of the file from fig6.ps to fig6.pdf only. This is shown below:

                               \begin{figure}[!ht]

                               {\centering \resizebox*{3in}{3in}{\includegraphics{fig6.pdf}} \par}

                               \caption{\fontfamily{ptm}\selectfont{\normalsize{Multiport Decomposition Technique}}}

                               \label{multi}

                               \end{figure}

                               pdflatex Main_Latex_File_Name.tex

        e.g. My main Latex file was Report.tex. So, I used the command pdflatex Report.tex and it generated the file Report.pdf.

You can view the files in PDF format on linux systems by giving a command xpdf i.e. xpdf Fine_Name.pdf e.g. xpdf Report.pdf.