I used the \includegraphics to insert a PDF into my latex document. The PDF is called, but its text is selectable. What can I do to make its text unselectable?
This is my code:
\documentclass[10pt,border=3mm,tikz]{standalone}
\usepackage{graphicx}
\begin{document}
\begin{figure}
\centering
\includegraphics[trim={0cm 0cm 0cm 0cm},clip,scale=0.8]{Selectable.pdf}
\caption{\small The Selectable Figure.}
\label{fig.1}
\end{figure}
\end{document}
