diff --git a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/02.draw.pd b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/02.draw.pd
index f240e512058456b28beed6cdc8be65ee08135ad7..e207dfa205c79f8cc542726aa6c09da71bdfa2f3 100644
--- a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/02.draw.pd
+++ b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/02.draw.pd
@@ -1,9 +1,8 @@
-#N canvas 0 19 638 672 10;
+#N canvas 0 19 476 614 10;
 #X text 0 1 New Drawing Commands: draw;
 #X text 0 1 __________________________;
 #X obj 53 47 struct drawtut-one float x float y;
 #X obj 53 219 draw rect 0 0 40 40;
-#X obj 56 453;
 #X text 53 67 The first argument "drawtut-one" is a name we will associated
 with our shape.;
 #X text 53 98 The other arguments define data to associate with this
@@ -26,15 +25,16 @@ gave to the [struct] into an object box. This will create an object
 \, referred to in Pd as a "scalar". It will have data for "x" and "y"
 fields and will use the info in our [draw] object to draw itself on
 the canvas.;
-#X text 53 429 Type our [struct] name "drawtut-one" in the box below:
+#X text 53 439 Type our [struct] name "drawtut-one" in the box below:
 ;
 #X text 53 152 The field names "x" and "y" are special in Pd. Their
 values will be associated with the base x/y coordinates of what we
 draw to represent an object created from the [struct] above.;
 #X text 53 23 Let's draw something! First \, we need a [struct]:;
-#X text 53 499 That's it! To sum up: once you have a [struct] and some
+#X text 53 509 That's it! To sum up: once you have a [struct] and some
 [draw] objects \, you can create a scalar like the one above on any
 canvas in the running Pd instance. For convenience we created everything
 in the main patch \, but since there's only one [struct] per canvas
 you typically will want to keep your [struct] and any [draw] objects
 in their own subpatch.;
+#X obj 53 463;
diff --git a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/03.rect.pd b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/03.rect.pd
index 3c88a82e8a3b7138c7e1458cdb6c2cfb4bd44f38..0af3e633bf4c3728a28d4b3466b1f98b3c68dfb1 100644
--- a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/03.rect.pd
+++ b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/03.rect.pd
@@ -1,5 +1,5 @@
 #N struct drawtut-rect float x float y;
-#N canvas 0 19 638 678 10;
+#N canvas 196 51 467 625 10;
 #X text 0 1 __________________________;
 #X text 0 1 New Drawing Commands: rect;
 #X obj 53 87 struct drawtut-rect float x float y;
diff --git a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/04.attributes.pd b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/04.attributes.pd
index 9a658d6422dbe8030b3508cf987b786015a8e014..338c2ed01d490226af42ef40e913efc25435f641 100644
--- a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/04.attributes.pd
+++ b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/04.attributes.pd
@@ -1,5 +1,5 @@
 #N struct drawtut-attr float x float y;
-#N canvas 0 19 638 678 10;
+#N canvas 0 19 470 676 10;
 #X text 0 1 New Drawing Commands: attributes;
 #X text 0 1 ________________________________;
 #X text 53 23 Our shapes are pretty boring so far. Black lines around
diff --git a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/05.more.attributes.pd b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/05.more.attributes.pd
index f1b0f6fb50c1e6de1ace294dd737921122507cdd..c4968632e6a2e7bdf9f071a90e8adb76b0d1c2f0 100644
--- a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/05.more.attributes.pd
+++ b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/05.more.attributes.pd
@@ -1,5 +1,5 @@
 #N struct drawtut-attr-cont float x float y;
-#N canvas 0 19 638 678 10;
+#N canvas 0 19 601 660 10;
 #X obj 53 553 draw rect 0 0 50 50;
 #X msg 53 92 fill red;
 #X text 0 1 New Drawing Commands: attributes (continued);
diff --git a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/06.saving.attributes.pd b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/06.saving.attributes.pd
index 36d090f2b9b98e790e90091ecaa3026706971791..d03182e4549a662132c9c79f967572ab1a3bf826 100644
--- a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/06.saving.attributes.pd
+++ b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/06.saving.attributes.pd
@@ -1,5 +1,5 @@
 #N struct drawtut-attr-saving float x float y;
-#N canvas 0 19 638 678 10;
+#N canvas 0 19 606 514 10;
 #X obj 53 153 draw rect 0 0 50 50;
 #X text 0 1 New Drawing Commands: attributes (continued);
 #X text 0 1 ____________________________________________;
diff --git a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/07.line.pd b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/07.line.pd
index b105f6d97396d2d865ac61be0648dfff1c2e76ae..5855017b1c46f9885a3659c4c9ee5a06c70438be 100644
--- a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/07.line.pd
+++ b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/07.line.pd
@@ -1,5 +1,5 @@
 #N struct drawtut-line float x float y;
-#N canvas 0 19 638 634 10;
+#N canvas 0 19 453 618 10;
 #X obj 53 84 loadbang;
 #X text 0 1 New Drawing Commands: line;
 #X text 0 1 __________________________;
diff --git a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/08.circle.pd b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/08.circle.pd
index 6b039e1009f5654d7f2bb9f56efc0d6c2c54703c..4fd5bb3f18b860d769e4f53da7d100b3dfe6b13f 100644
--- a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/08.circle.pd
+++ b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/08.circle.pd
@@ -1,5 +1,5 @@
 #N struct drawtut-circle float x float y;
-#N canvas -9 19 638 554 10;
+#N canvas 0 19 439 554 10;
 #X msg 53 117 stroke blue;
 #X text 52 484 Lines are only a single stroke. They don't have any
 inner area to fill \, so none of the messages like "fill" or "fill-rule"
diff --git a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/09.ellipse.pd b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/09.ellipse.pd
index 80fbb999213156293ab946be3e1b4b8c160e4c87..2d6cc341be7a2d6fdb4ac65e35d4478df6be7ecd 100644
--- a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/09.ellipse.pd
+++ b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/09.ellipse.pd
@@ -1,13 +1,13 @@
 #N struct drawtut-ellipse float x float y;
-#N canvas 0 19 638 498 10;
+#N canvas 0 19 445 477 10;
 #X msg 53 117 stroke blue;
 #X msg 142 117 fill yellow;
 #X msg 228 117 stroke-width \$1;
 #X floatatom 228 93 5 0 0 0 - - -, f 5;
 #X obj 53 153 draw ellipse 0 0 86 42;
 #X text 259 246 <- an ellipse;
-#X text 0 1 New Drawing Commands: ellipse;
-#X text 0 1 _____________________________;
+#X text 5 1 New Drawing Commands: ellipse;
+#X text 5 1 _____________________________;
 #X text 53 23 An ellipse.;
 #X obj 53 57 struct drawtut-ellipse float x float y;
 #X scalar drawtut-ellipse 155 253 \;;
diff --git a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/11.polygon.pd b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/11.polygon.pd
index 77713d17ae42c47080901ddca01126d349773c1d..510f9b684cdf22df7671279dda06eec6caf18f9e 100644
--- a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/11.polygon.pd
+++ b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/11.polygon.pd
@@ -1,13 +1,13 @@
 #N struct drawtut-polygon float x float y;
-#N canvas -9 19 867 610 10;
+#N canvas 106 54 849 580 10;
 #X msg 53 117 stroke blue;
 #X msg 142 117 fill yellow;
 #X msg 228 117 stroke-width \$1;
 #X floatatom 228 93 5 0 0 0 - - -, f 5;
 #X obj 53 57 struct drawtut-polygon float x float y;
 #X scalar drawtut-polygon -138 117 \;;
-#X text 0 1 New Drawing Commands: polygon;
-#X text 0 1 _____________________________;
+#X text 4 1 New Drawing Commands: polygon;
+#X text 4 1 _____________________________;
 #X text 53 23 Polygons are closed shapes.;
 #X obj 53 153 draw polygon 350 75 379 161 469 161 397 215 423 301 350
 250 277 301 303 215 231 161 321 161;
diff --git a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/12.path.pd b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/12.path.pd
index aeb424cbb1f6b63427d21856fa52ad6685b51f1f..1756ac8265581cdbf898283a4c48aa15a47f4b05 100644
--- a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/12.path.pd
+++ b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/12.path.pd
@@ -1,5 +1,5 @@
 #N struct drawtut-path float x float y;
-#N canvas 0 19 867 610 10;
+#N canvas 0 19 859 563 10;
 #X text 0 1 New Drawing Commands: path;
 #X text 1 1 __________________________;
 #X text 53 23 Paths are complex drawings.;
diff --git a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/13.transform.pd b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/13.transform.pd
index 52f120119a4fc89ead18eba8ec04c90040fdfec8..76ce2512eaa1acce35c93e52dc34be9d07544446 100644
--- a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/13.transform.pd
+++ b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/13.transform.pd
@@ -1,5 +1,5 @@
 #N struct drawtut-transform float x float y;
-#N canvas -9 19 867 589 10;
+#N canvas 0 19 836 610 10;
 #X text 0 1 New Drawing Commands: transform;
 #X text 1 1 _______________________________;
 #X text 53 23 All [draw] objects understand the "transform" message.
diff --git a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/14.group.pd b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/14.group.pd
index 13f9c2eccba93eaaf9d55b5b4656b7367e6e77fb..4eaa87d37ecd99104dbfc45225bff4212ebdb359 100644
--- a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/14.group.pd
+++ b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/14.group.pd
@@ -1,5 +1,5 @@
 #N struct drawtut-group float x float y;
-#N canvas 0 19 648 502 10;
+#N canvas 0 19 657 493 10;
 #X scalar drawtut-group 54 209 \;;
 #X symbolatom 53 173 10 0 0 1 event_type - -, f 10;
 #X obj 53 148 list split 1;
diff --git a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/15.events.pd b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/15.events.pd
index ee11a4cbf6a7626187c296479d6319c29c9bf577..914605879e176c0ada462431976c62e1f5b88d8a 100644
--- a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/15.events.pd
+++ b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/15.events.pd
@@ -1,5 +1,5 @@
 #N struct drawtut-events float x float y;
-#N canvas 0 19 591 589 10;
+#N canvas 0 19 525 484 10;
 #X scalar drawtut-events 54 210 \;;
 #X text 1 1 __________________________________;
 #X text 0 1 New Drawing Commands: mouse events;
diff --git a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/16.animation.pd b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/16.animation.pd
index f0264879d03d9fda8a613ed286e1db6dbf9139f3..3bc76612e3f136d3f76312d20d95f3533c66db26 100644
--- a/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/16.animation.pd
+++ b/pd/doc/4.data.structures/pd-l2ork/ds-tutorials/16.animation.pd
@@ -1,5 +1,5 @@
 #N struct drawtut-animation float x float y;
-#N canvas -9 19 537 571 10;
+#N canvas 0 19 514 563 10;
 #X scalar drawtut-animation 47 306 \;;
 #X obj 47 271 draw rect 0 0 40 40;
 #X obj 47 135 struct drawtut-animation float x float y;