I am using xelatex and wishing using the following command to include pictures in my document and to do a little cutting and composing operations
\includegraphics[clip=true,viewpoint=0 0 500 300]{exPict.png}
But I always get notices ``Package keyval Error: viewpoint undefined''.
Can anyone give me a way out? The following is my full illustrating file. It can be processed properly when delete the "viewpoint=0 0 500 300" option.
Code: Select all
%!TEX encoding = UTF-8 Unicode
%!TEX TS-program = xelatex
\documentclass[10pt,mathserif]{beamer}
\usepackage{graphics}
\begin{document}
\begin{frame}{}
\includegraphics[totalheight=60mm,clip=true,viewpoint=0 0 500 300]{exPict.png}
\end{frame}
\end{document}