Code: Select all
\begin{figure}
\psfrag{x}[cl][cl][0.85]{$\Re(z)$}
\psfrag{y}[Bc][Bc][0.85]{$\Im(z)$}
\includegraphics[width=5cm]{figurehere}};
\end{figure}
Problem: I've decided to consistently use PDF files instead of EPS files for my publishing. Going between the two formats is a headache and causes many artifacts. So I've started using tikz to annotate. For example,
Code: Select all
\begin{tikzpicture}[scale=1.0, domain=-2:2]
\node(0,0){\includegraphics[height=3.5cm]{picturehere}};
\draw (0.1,1.9) node{$y$};
\draw (1.10,1.08) node{$x$};
\end{tikzpicture}
Question 1: (Manual fix) How do I adjust the size of a label of a node in tikz?
Later Edit: You can do this just by node[scale=0.8]{$x$}
Question 2: (Automatic fix) Is there an easy way to ensure that the fonts of generated tikz pictures remains consistent in the diagram? (i.e. so they are all of the same size as the document's default).