Skip to content

Instantly share code, notes, and snippets.

@bomberstudios
Created July 20, 2012 11:24
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bomberstudios/3150239 to your computer and use it in GitHub Desktop.
Save bomberstudios/3150239 to your computer and use it in GitHub Desktop.
Print your own Muji dotted paper in A4 format (open in Preview.app, print at 100% scale)
%!PS-Adobe-3.0
% Title: dot grid paper, 5x5 mm
%%BeginSetup
%%BeginFeature: *PageSize A4
<< /PageSize [ 595.27 841.889 ]
/ImagingBBox null
>> setpagedevice
%%EndFeature
%%EndSetup
/mydot { gsave 0 0 moveto 0.5 0 lineto stroke grestore } def
0.5 setlinewidth
0 0 moveto
% 0:black 1:white
% (no grey with a b/w laser, only ugly checker patterns...)
% 0.8 setgray
100 { % horizontal lines
100 { % vertical lines
14.174 0 translate
mydot
} repeat
-1417.4 14.174 translate
} repeat
showpage
@bomberstudios
Copy link
Author

You can open the .ps file with Preview.app and print it or save as PDF.

@captn3m0
Copy link

captn3m0 commented Aug 3, 2014

Here's a PDF version: https://pdf.yt/d/rbe7svksRVPi70zY

@johnacs
Copy link

johnacs commented Apr 27, 2018

How to change the color of the dots to say blue?
Nevermind, found the answer

0 1 1 setrgbcolor % light blue

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment