Code: Select all
\newpage
\begin{figure}[c]
\hspace{-1.5cm}
\includegraphics[scale=0.9]{sz.ps}
\end{figure}
I can visualise both pictures with irfanview so I know they're ok, so what could be the problem? Could it be the .ps file size?
Code: Select all
\newpage
\begin{figure}[c]
\hspace{-1.5cm}
\includegraphics[scale=0.9]{sz.ps}
\end{figure}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
c
for LaTeX is not defined by default. It is possible that you have a package defining it, i am not aware of one though.Code: Select all
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[10pt,letterpaper]{article}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%% PACKAGES %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{geometry}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{rotating}
\usepackage{cite}
\usepackage{color}
\usepackage{fancybox}
\usepackage{pstricks}
\usepackage{pst-plot}
\usepackage{pstricks-add}
\usepackage{epsf}
\begin{document}
\newpage
\begin{figure}[]
\hspace{-1.5cm}
\includegraphics[scale=0.9]{AnaFig1.ps}
\end{figure}
\end{document}
epstopdf
script, and use it with pdfLaTeX. Possibly epstopdf
is already installed on your machine, try that command at the command line, i.e. in a terminal window.Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis