blob: e289ce94f9e03af63170cbb4ff0dcf3f7e1fd0b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
\documentclass[a4paper,12pt]{article}
\usepackage[margin=1cm]{geometry}
\usepackage{pstricks}
\begin{document}
\psset{unit=1cm,gridlabels=7pt}% default value
\noindent\fboxsep=0pt
L
\hrulefill
\fbox{\begin{pspicture}(-1,-1)(1,2)
\psgrid
\end{pspicture}}%
\hrulefill
\fbox{\begin{pspicture}[shift=-1](-1,-1)(1,2)
\psgrid
\end{pspicture}}%
\hrulefill
\fbox{\begin{pspicture}[shift=-3cm](-1,-1)(1,2)
\psgrid
\end{pspicture}}%
\hrulefill
\fbox{\begin{pspicture}[shift=1.5](-1,-1)(1,2)
\psgrid
\end{pspicture}}%
\hrulefill
\raisebox{0.5\height}{\fbox{\begin{pspicture}(-1,-1)(1,2)
\psgrid
\end{pspicture}}}%
\hrulefill
R
\end{document}
|