blob: af0c00b4c6ccb12fc1d446fe69e9bdb421b5c6ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
\input{preamble-standalone.ltx}
\begin{document}
% Ex. No. 47 (Section 7.0.11 : Utilisation d'une grille de répérage)
\begin{tikzpicture}[scale=.5]
\tikzset{xaxe style/.style ={-}}
\tkzInit[xmax=15,ymax=15]
\tkzClip
\tkzGrid[sub,color=orange]
\tkzLabelX[label= ] \tkzLabelY[label= ]
\tkzDrawXY
\node[opacity=.5] at (8,6){%
\includegraphics[scale=.5]{tiger}};
\end{tikzpicture}
\end{document}
|