blob: 41b4729807700e8f2dee899b576b7745ac298aa1 (
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. 77 (Section 10.4 : tkzSaveBB}{)
Une figure au-dessus du texte\\
\begin{tikzpicture}
\begin{scope}
\tkzSetBB(0,0)(6,2) \tkzShowBB[fill=blue!20]
\tkzSaveBB
\end{scope}
\tkzDefPoint(3,3){A}\tkzShowBB
\tkzDrawCircle[R,fill=yellow,opacity=.2](A,2cm)
\tkzRestoreBB
\end{tikzpicture}
\end{document}
|