Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>The simplest way is to draw 3 boxes. You'll have to position each one on your own doing your own math to determine where to start the first one to make it centered etc. </p> <p>First position your cursor at the top left of the first box, draw it, move to the top left of the next box, draw it, and do the same for the last. Here is some code:</p> <pre><code>&lt;esc&gt;&amp;u300D&lt;esc&gt;*t300R&lt;esc&gt;*p300x300Y&lt;esc&gt;*r3U&lt;esc&gt;*v2S&lt;esc&gt;*c300a300b5P&lt;esc&gt;*p600x300Y&lt;esc&gt;*r3U&lt;esc&gt;*v3S&lt;esc&gt;*c300a300b5P&lt;esc&gt;*p900x300Y&lt;esc&gt;*r3U&lt;esc&gt;*v1S&lt;esc&gt;*c300a300b5P </code></pre> <p>Here is the explanation:</p> <pre><code>&lt;esc&gt;&amp;u300D&lt;esc&gt;*t300R -- set the Unit of Measure and Resolution (in this case 300 dpi) &lt;esc&gt;*p300x300Y -- move cursor to 300x 300y (1 inch x 1 inch) &lt;esc&gt;*r3U&lt;esc&gt;*v2S -- set the color palette to RGB and use color 2 (green) &lt;esc&gt;*c300a300b5P -- draw a box that is 300 wide and 300 tall, use current fill pattern &lt;esc&gt;*p600x300Y -- move cursor to 600x 300y &lt;esc&gt;*r3U&lt;esc&gt;*v3S -- set the color palette to RGB use color 3 (yellow) &lt;esc&gt;*c300a300b5P -- draw a box that is 300 wide and 300 tall, use current fill pattern &lt;esc&gt;*p900x300Y -- move cursor to 900x 300y &lt;esc&gt;*r3U&lt;esc&gt;*v1S -- set the color palette to RGB use color 1 (red) &lt;esc&gt;*c300a300b5P -- draw a box that is 300 wide and 300 tall, use current fill pattern </code></pre> <p>Here are the other colors and palettes, keep in mind this is the simple way, you can specify your own RGB etc.</p> <pre><code>RGB Palette &lt;esc&gt;*r3U&lt;esc&gt;*v1S - Red &lt;esc&gt;*r3U&lt;esc&gt;*v2S - Green &lt;esc&gt;*r3U&lt;esc&gt;*v3S - Yellow &lt;esc&gt;*r3U&lt;esc&gt;*v4S - Blue &lt;esc&gt;*r3U&lt;esc&gt;*v5S - Magenta &lt;esc&gt;*r3U&lt;esc&gt;*v6S - Cyan CMYK Palette &lt;esc&gt;*r-3U&lt;esc&gt;*v1S - Cyan &lt;esc&gt;*r-3U&lt;esc&gt;*v2S - Magenta &lt;esc&gt;*r-3U&lt;esc&gt;*v3S - Blue &lt;esc&gt;*r-3U&lt;esc&gt;*v4S - Yellow &lt;esc&gt;*r-3U&lt;esc&gt;*v5S - Green &lt;esc&gt;*r-3U&lt;esc&gt;*v6S - Red &lt;esc&gt;*r-3U&lt;esc&gt;*v7S - Black </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload