summaryrefslogtreecommitdiff
path: root/74716-h/74716-h.htm
blob: 4d32f5bf7d9624aae9ed2b53f397c2b1bf95ab3d (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>
      Handbook on Dress and Cloak Cutting | Project Gutenberg
    </title>
    <link rel="icon" href="images/cover.jpg" type="image/x-cover">
    <style>

a {
    text-decoration: none;
}

body {
    margin-left: 10%;
    margin-right: 10%;
}

h1,h2 {
    text-align: center;
    clear: both;
}

h3,h4 {
    text-align: center;
}

h2.nobreak {
    page-break-before: avoid;
}

hr.chap {
    margin-top: 2em;
    margin-bottom: 2em;
    clear: both;
    width: 65%;
    margin-left: 17.5%;
    margin-right: 17.5%;
}

img.w100 {
    width: 100%;
}

div.chapter {
    page-break-before: always;
}

p {
    margin-top: 0.5em;
    text-align: justify;
    margin-bottom: 0.5em;
    text-indent: 1em;
}

p.dropcap {
    text-indent: 0em;
}

img.dropcap {
    float: left;
    margin: 0 0.5em 0 0;
}

img.dropcap2 {
    float: left;
    margin: -2.5em 0.5em 0 0;
}

p.dropcap:first-letter {
    color: transparent;
    visibility: hidden;
    margin-left: -0.9em;
}

table {
    margin: 1em auto 1em auto;
    max-width: 40em;
    border-collapse: collapse;
    border-top: double black;
    border-bottom: thin solid black;
}

th {
    padding: 0.25em;
    font-weight: normal;
    font-size: 90%;
    border-bottom: thin solid black;
    border-right: thin solid black;
}

td {
    padding-left: 2.25em;
    padding-right: 0.25em;
    vertical-align: top;
    text-indent: -2em;
    border-right: thin solid black;
}

th:last-child, td:last-child {
    border-right: none;
}

.tdr {
    text-align: right;
    padding-right: 1em;
}

.tdr .frac {
    margin-right: 1em;
}

.blockquote {
    margin: 1.5em 10%;
}

.caption p {
    text-align: center;
    margin-bottom: 1em;
    font-size: 90%;
    text-indent: 0em;
}

.center {
    text-align: center;
    text-indent: 0em;
}

.copyright {
    margin: 5em auto auto auto;
    max-width: 20em;
    font-size: smaller;
    border-top: thin solid black;
    border-bottom: thin solid black;
}

.figcenter {
    margin: auto;
    text-align: center;
}

.figleft {
    float: left;
    clear: left;
    margin-left: 0;
    margin-bottom: 1em;
    margin-top: 1em;
    margin-right: 1em;
    padding: 0;
    text-align: center;
}

.figright {
    float: right;
    clear: right;
    margin-left: 1em;
    margin-bottom: 1em;
    margin-top: 1em;
    margin-right: 0;
    padding: 0;
    text-align: center;
}

.figmulti {
    display: inline-block;
}

.noindent {
    text-indent: 0em;
}

.pagenum {
    position: absolute;
    right: 4%;
    font-size: smaller;
    text-align: right;
    font-style: normal;
}

.smaller {
    font-size: 80%;
}

.smcap {
    font-variant: small-caps;
    font-style: normal;
}

.titlepage {
    text-align: center;
    margin-top: 3em;
    text-indent: 0em;
}

.x-ebookmaker img {
    max-width: 100%;
    width: auto;
    height: auto;
}

.x-ebookmaker .blockquote {
    margin: 1.5em 5%;
}

.x-ebookmaker img.dropcap {
    display: none;
}

.x-ebookmaker p.dropcap:first-letter {
    color: inherit;
    visibility: visible;
    margin-left: 0;
}

/* Illustration classes */
.illowp100 {width: 100%;}
.illowp16 {width: 16%;}
.x-ebookmaker .illowp16 {width: 100%;}
.illowp21 {width: 21%;}
.x-ebookmaker .illowp21 {width: 100%;}
.illowp24 {width: 24%;}
.x-ebookmaker .illowp24 {width: 100%;}
.illowp28 {width: 28%;}
.x-ebookmaker .illowp28 {width: 100%;}
.illowp30 {width: 30%;}
.x-ebookmaker .illowp30 {width: 100%;}
.illowp31 {width: 31%;}
.x-ebookmaker .illowp31 {width: 100%;}
.illowp32 {width: 32%;}
.x-ebookmaker .illowp32 {width: 100%;}
.illowp33 {width: 33%;}
.x-ebookmaker .illowp33 {width: 100%;}
.illowp37 {width: 37%;}
.x-ebookmaker .illowp37 {width: 100%;}
.illowp40 {width: 40%;}
.x-ebookmaker .illowp40 {width: 100%;}
.illowp42 {width: 42%;}
.x-ebookmaker .illowp42 {width: 100%;}
.illowp47 {width: 47%;}
.x-ebookmaker .illowp47 {width: 100%;}
.illowp48 {width: 48%;}
.x-ebookmaker .illowp48 {width: 100%;}
.illowp51 {width: 51%;}
.x-ebookmaker .illowp51 {width: 100%;}
.illowp52 {width: 52%;}
.x-ebookmaker .illowp52 {width: 100%;}
.illowp53 {width: 53%;}
.x-ebookmaker .illowp53 {width: 100%;}
.illowp54 {width: 54%;}
.x-ebookmaker .illowp54 {width: 100%;}
.illowp55 {width: 55%;}
.x-ebookmaker .illowp55 {width: 100%;}
.illowp58 {width: 58%;}
.x-ebookmaker .illowp58 {width: 100%;}
.illowp64 {width: 64%;}
.x-ebookmaker .illowp64 {width: 100%;}
.illowp66 {width: 66%;}
.x-ebookmaker .illowp66 {width: 100%;}
.illowp68 {width: 68%;}
.x-ebookmaker .illowp68 {width: 100%;}
.illowp72 {width: 72%;}
.x-ebookmaker .illowp72 {width: 100%;}
.illowp75 {width: 75%;}
.x-ebookmaker .illowp75 {width: 100%;}
.illowp77 {width: 77%;}
.x-ebookmaker .illowp77 {width: 100%;}
.illowp80 {width: 80%;}
.x-ebookmaker .illowp80 {width: 100%;}
.illowp85 {width: 85%;}
.x-ebookmaker .illowp85 {width: 100%;}
.illowp87 {width: 87%;}
.x-ebookmaker .illowp87 {width: 100%;}
.illowp88 {width: 88%;}
.x-ebookmaker .illowp88 {width: 100%;}
    </style>
  </head>
<body>
<div style='text-align:center'>*** START OF THE PROJECT GUTENBERG EBOOK 74716 ***</div>

<p><span class="pagenum"><a id="Page_1"></a>[1]</span></p>

<h1>HANDBOOK<br>
<span class="smaller">ON</span><br>
DRESS AND CLOAK CUTTING,</h1>

<p class="titlepage"><span class="smaller">BY</span><br>
CHAS. HECKLINGER.</p>

<p class="titlepage">1884.</p>

<p class="titlepage">NEW YORK:<br>
<span class="smaller">PETER DE BAUN, PRINTER, 101 AND 103 FULTON STREET.</span></p>

<div class="copyright">

<p>Entered according to an Act of Congress in the
year 1884, by</p>

<p class="center"><span class="smcap">Charles Hecklinger</span>,</p>

<p class="noindent">in the Office of the Librarian of Congress, at Washington, D. C.</p>

</div>

<p><span class="pagenum"><a id="Page_2"></a>[2]</span></p>

<hr class="chap x-ebookmaker-drop">

<div class="chapter">

<p><span class="pagenum"><a id="Page_3"></a>[3]</span></p>

<h2 class="nobreak" id="PREFACE">PREFACE.</h2>

</div>

<div>
<img class="dropcap2" src="images/dropcap-t1.jpg" alt=" " width="100" height="225">
</div>

<p class="dropcap">The following pages contain the author’s Improved System of Dress and Cloak
Cutting, fully explained, with the intention of helping those students who,
desirous to follow this branch of industry, are met on the very threshold by a
difficulty—the choice of a suitable System.</p>

<p>The System given has been found to give the greatest security in its
results, with the least trouble, it being easy to learn, readily used, and gives the
greatest satisfaction to the large number of those using it. Everything in illustrating
and explaining has been omitted which might tend to complicate or retard the student in
acquiring it. Every point needed to make it clear has been carefully put down—in its
illustrations, in the simple description, and in grouping the separate articles in their correct
places—making it at once easy to comprehend and perfect as a whole.</p>

<figure class="figcenter illowp100" id="deco1" style="max-width: 18.75em;">
  <img class="w100" src="images/deco1.jpg" alt=" ">
</figure>

<p><span class="pagenum"><a id="Page_4"></a>[4]</span></p>

<figure class="figcenter illowp68" id="illus01" style="max-width: 31.25em;">
  <img class="w100" src="images/illus01.jpg" alt=" ">
</figure>

<hr class="chap x-ebookmaker-drop">

<div class="chapter">

<p><span class="pagenum"><a id="Page_5"></a>[5]</span></p>

<h2 class="nobreak" id="PROPORTIONATE_SYSTEM">PROPORTIONATE SYSTEM.</h2>

</div>

<div>
<img class="dropcap" src="images/dropcap-m.jpg" alt=" " width="75" height="75">
</div>

<p class="dropcap">Most Systems of proportion, thus far issued, are projected on the
breast-measure. It will be evident, on investigating the proportions
of the human figure, that a System based only on one size of the body, and
that its width, can never lead to the best results.</p>

<figure class="figleft illowp28" id="illus02" style="max-width: 9.375em;">
  <img class="w100" src="images/illus02.jpg" alt=" ">
</figure>

<p>When the height and width are equal it is immaterial which we use.
But this is only the case on normal sizes, from 34 to 38 breast, as all deviations
from these sizes are different in their proportions of heights to the
widths.</p>

<p>The problem to be solved in using a proportionate system is to arrange
the lengths so that they agree with a certain breast size and use it for the
heights.</p>

<p>In practice we find that the average forms, measuring from 34 to 38
breast, require and can be cut by the full breast-measure, as the lengths
agree, in the majority of cases, with this size; but in larger and smaller sizes this breast-measure
will either be too small or too large, therefore, in drafting any other sizes than
those indicated, we must use the quantities as given in the following Table, as set opposite
the full breast-measure, in order that the pattern in its length may be of correct size, and
neither too small or too large.</p>

<h3>Table of Sizes.</h3>

<table>
  <tr>
    <th><span class="smcap">Breast.</span></th>
    <th><span class="smcap">Size to Draft<br>One-Half<br>Breast-Measure.</span></th>
    <th><span class="smcap">Waist.</span></th>
  </tr>
  <tr>
    <td class="tdr">30</td>
    <td class="tdr">15½</td>
    <td class="tdr"><span class="frac">22</span></td>
  </tr>
  <tr>
    <td class="tdr">31</td>
    <td class="tdr">15⅞</td>
    <td class="tdr">22½</td>
  </tr>
  <tr>
    <td class="tdr">32</td>
    <td class="tdr">16¼</td>
    <td class="tdr"><span class="frac">23</span></td>
  </tr>
  <tr>
    <td class="tdr">33</td>
    <td class="tdr">16¾</td>
    <td class="tdr">23½</td>
  </tr>
  <tr>
    <td class="tdr">34</td>
    <td class="tdr">17¼</td>
    <td class="tdr"><span class="frac">24</span></td>
  </tr>
  <tr>
    <td class="tdr">35</td>
    <td class="tdr">17⅝</td>
    <td class="tdr">24½</td>
  </tr>
  <tr>
    <td class="tdr">36</td>
    <td class="tdr"><span class="frac">18</span></td>
    <td class="tdr"><span class="frac">25</span></td>
  </tr>
  <tr>
    <td class="tdr">37</td>
    <td class="tdr">18½</td>
    <td class="tdr">25½</td>
  </tr>
  <tr>
    <td class="tdr">38</td>
    <td class="tdr"><span class="frac">19</span></td>
    <td class="tdr"><span class="frac">26</span></td>
  </tr>
  <tr>
    <td class="tdr">39</td>
    <td class="tdr">19½</td>
    <td class="tdr">26½</td>
  </tr>
  <tr>
    <td class="tdr">40</td>
    <td class="tdr"><span class="frac">20</span></td>
    <td class="tdr"><span class="frac">27</span></td>
  </tr>
  <tr>
    <td class="tdr">41</td>
    <td class="tdr">20¼</td>
    <td class="tdr"><span class="frac">28</span></td>
  </tr>
  <tr>
    <td class="tdr">42</td>
    <td class="tdr">20¾</td>
    <td class="tdr"><span class="frac">29</span></td>
  </tr>
  <tr>
    <td class="tdr">43</td>
    <td class="tdr">21⅛</td>
    <td class="tdr"><span class="frac">30</span></td>
  </tr>
  <tr>
    <td class="tdr">44</td>
    <td class="tdr">21⅝</td>
    <td class="tdr">31½</td>
  </tr>
  <tr>
    <td class="tdr">45</td>
    <td class="tdr"><span class="frac">21</span></td>
    <td class="tdr"><span class="frac">33</span></td>
  </tr>
  <tr>
    <td class="tdr">46</td>
    <td class="tdr">21⅞</td>
    <td class="tdr">34½</td>
  </tr>
  <tr>
    <td class="tdr">47</td>
    <td class="tdr">22¼</td>
    <td class="tdr"><span class="frac">36</span></td>
  </tr>
  <tr>
    <td class="tdr">48</td>
    <td class="tdr">22¾</td>
    <td class="tdr">37½</td>
  </tr>
  <tr>
    <td class="tdr">49</td>
    <td class="tdr"><span class="frac">23</span></td>
    <td class="tdr">38½</td>
  </tr>
  <tr>
    <td class="tdr">50</td>
    <td class="tdr">23¼</td>
    <td class="tdr"><span class="frac">39</span></td>
  </tr>
</table>

<p><span class="pagenum"><a id="Page_6"></a>[6]</span></p>

<p>In considering the human body it must be allowed that sufficient and marked
characteristics exist between a young girl and the full-grown woman—the slender, and
the large, fleshy form. All these tend to establish that the first elements of a good System
for constructing garments is a good proportionate standard.</p>

<figure class="figright illowp28" id="illus03" style="max-width: 9.375em;">
  <img class="w100" src="images/illus03.jpg" alt=" ">
</figure>

<p>In strict accordance with this we have given diagrams, illustrating the system by
which the art of cutting is thoroughly attained; we also give the system as it should be
used in drafting by measure.</p>

<h3>Table of Sizes for Children.</h3>

<table>
  <tr>
    <th><span class="smcap">Age.</span></th>
    <th><span class="smcap">Breast.</span></th>
    <th><span class="smcap">Waist.</span></th>
    <th><span class="smcap">Length of<br>Back to<br>Natural Waist.</span></th>
  </tr>
  <tr>
    <td class="tdr">2</td>
    <td class="tdr"><span class="frac">22</span></td>
    <td class="tdr"><span class="frac">22</span></td>
    <td class="tdr"><span class="frac">9</span></td>
  </tr>
  <tr>
    <td class="tdr">3</td>
    <td class="tdr">22¾</td>
    <td class="tdr">22¼</td>
    <td class="tdr">9½</td>
  </tr>
  <tr>
    <td class="tdr">4</td>
    <td class="tdr">23½</td>
    <td class="tdr">22½</td>
    <td class="tdr"><span class="frac">10</span></td>
  </tr>
  <tr>
    <td class="tdr">5</td>
    <td class="tdr">24¼</td>
    <td class="tdr">22¾</td>
    <td class="tdr">10½</td>
  </tr>
  <tr>
    <td class="tdr">6</td>
    <td class="tdr"><span class="frac">25</span></td>
    <td class="tdr"><span class="frac">23</span></td>
    <td class="tdr"><span class="frac">11</span></td>
  </tr>
  <tr>
    <td class="tdr">7</td>
    <td class="tdr">25¾</td>
    <td class="tdr">23¼</td>
    <td class="tdr">11½</td>
  </tr>
  <tr>
    <td class="tdr">8</td>
    <td class="tdr">26½</td>
    <td class="tdr">23½</td>
    <td class="tdr"><span class="frac">12</span></td>
  </tr>
  <tr>
    <td class="tdr">9</td>
    <td class="tdr">27¼</td>
    <td class="tdr">23¾</td>
    <td class="tdr">12½</td>
  </tr>
  <tr>
    <td class="tdr">10</td>
    <td class="tdr"><span class="frac">28</span></td>
    <td class="tdr"><span class="frac">24</span></td>
    <td class="tdr"><span class="frac">13</span></td>
  </tr>
  <tr>
    <td class="tdr">11</td>
    <td class="tdr">28¾</td>
    <td class="tdr">24¼</td>
    <td class="tdr">13½</td>
  </tr>
  <tr>
    <td class="tdr">12</td>
    <td class="tdr">29½</td>
    <td class="tdr">24½</td>
    <td class="tdr"><span class="frac">14</span></td>
  </tr>
  <tr>
    <td class="tdr">13</td>
    <td class="tdr">30¼</td>
    <td class="tdr">24¾</td>
    <td class="tdr">14½</td>
  </tr>
  <tr>
    <td class="tdr">14</td>
    <td class="tdr"><span class="frac">31</span></td>
    <td class="tdr"><span class="frac">25</span></td>
    <td class="tdr"><span class="frac">15</span></td>
  </tr>
  <tr>
    <td class="tdr">15</td>
    <td class="tdr"><span class="frac">32</span></td>
    <td class="tdr"><span class="frac">25</span></td>
    <td class="tdr">15½</td>
  </tr>
</table>

<hr class="chap x-ebookmaker-drop">

<div class="chapter">

<p><span class="pagenum"><a id="Page_7"></a>[7]</span></p>

<div class="figcenter">

<figure class="figmulti illowp40" id="figure01" style="max-width: 20.3125em;">
  <img class="w100" src="images/figure01.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 1.</p></figcaption>
</figure>

<figure class="figmulti illowp31" id="figure02" style="max-width: 15.625em;">
  <img class="w100" src="images/figure02.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 2.</p></figcaption>
</figure>

</div>

<h2 class="nobreak" id="THE_MEASURES">THE MEASURES.</h2>

</div>

<div>
<img class="dropcap" src="images/dropcap-t2.jpg" alt=" " width="75" height="75">
</div>

<p class="dropcap">The measures required are few, and only such as give correct results (<a href="#figure01">See Fig. 1</a>).</p>

<p>Have a tape which fastens around the waist in such a manner that it will be level.</p>

<p>Measure from socket bone at top of back, point O, to waist I below the tape to B, for
the highest part of hip, and to the full length of garment wanted.</p>

<p>Take next the width of back from E to D, being careful to see whether the dress worn<span class="pagenum"><a id="Page_8"></a>[8]</span>
has this width in the correct place. Should it be either too narrow or too wide modify
your measure as seems right.</p>

<p>Take the measure around the arm-hole; then move the arm forward to allow you to
put the tape directly under the arm to seam of sleeve at F, and measure down to bottom
of tape at J.</p>

<p>Next, put the tape under the arm, close up, and measure the length of the sleeve
down to the wrist.</p>

<p>Turn to Fig. 2, and measure, as shown, from back of neck, point O, past the front of
arm, to bottom of tape at J. This measure must be taken easy, and should run straight
down in front of arm.</p>

<p>Measure next from front of arm to centre of back. To take this measure, a little
square, having a tape attached, is very handy to use.</p>

<p>Take the breast-measure over the fullest part of the bosom and shoulder blades,
then the waist-measure, always taken close, and the hip-measure.</p>

<p>These are all the measures required for a dress-waist, a jacket, or a long garment.
For a skirt we take the length on the side, from the hip down to the floor. For a circular
take the width around the shoulders.</p>

<h3>FIG. 3 AND 4. THE WAIST PATTERN.</h3>

<p>Commence by drawing line O on the edge of a sheet of paper from point O to F, and
one line C at right angles with it from O to N.</p>

<p>From O go down three-fourths of an inch for the actual top of back.</p>

<p>From O to C is one-quarter of the breast-measure, which for a 36 bust would be
9 inches, and from C over to 16 draw line D (<a href="#figure04">see Fig. 4</a>) at right angles with the back line.</p>

<p>Next, measure from ¾, or the top of back down to F, the length of back, from socket
bone to the natural waist and from F draw a line over to the front at T.</p>

<p>From F go in 1½ inch, and draw a line for the centre of the back, from ¾ at top to 1½
at the bottom.</p>

<p>From O over on the top line, place 2 inches to the point marked ⅛. This will be
about right for all medium sizes. For large sizes, over 40 breast, make it 2¼ inches to 2½ inches
and for sizes under 30 breast-measure let it be 1½ to 1¾ inches. It will make no difference
in the fit what this width may be, as it only affects the appearance of the shoulder-seam.
A little practice, however, will enable any one to apply the right width.</p>

<p>In the middle, between O and E (<a href="#figure04">see Fig. 4</a>), fix point B, and in the centre, between
B and E, locate point C, and draw lines B and G from both points.</p>

<p>Starting at E, measure over to S one-third of the breast, which is 6 inches for a 36;
and add to it one inch, which fixes S; and from S to H place one-fourth, or 4½ inches.
All fractions and divisions that we use in explanation are based on the breast-measure, and
are found already divided on the square.</p>

<p>At S and H draw lines up, as shown. Where lines S-J and B-J cross, begin by
drawing another to the top, at A.</p>

<p><span class="pagenum"><a id="Page_9"></a>[9]</span></p>

<p>Now, curve from ¾ to A, and from A to G, which last point is one-half inch above J.
Commencing at G curve past J to R, going a trifle inside of straight line, then from R past
X to V.</p>

<p>From R draw a straight line to 1½, and curve the back seam from R by going only a
little inside of straight line at 19, thence to 2. Point 2 is 1½ inches from centre 1½.
From 2 to 1 place 1 inch, then curve the side-body from 19 to 1.</p>

<p>Next, measure from the centre of the back at Z, on the line under the arm, to get the
point D in front. This should be one-half of the breast-measure (18). Point D being
placed, draw a line from there up and down to N and to U, at right angles with the line
under the arm.</p>

<figure class="figcenter illowp85" id="figure03" style="max-width: 37.5em;">
  <img class="w100" src="images/figure03.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 3.</p></figcaption>
</figure>

<p>To form the neck we take one-sixth of the breast and place it from N to P, and, using
N as a pivot, sweep from P to 15. One-quarter inch inside of front line at 15 we start
to draw the curved front line to the bottom, by going outside of D one-half inch and coming
back to straight line again, near U.</p>

<p>One and a half inches below the waist-line, at U, draw a line from T over to 12.</p>

<p>From P to B draw a straight line; then take the length of the back shoulder, from A
to G, and place the same from P towards 17, and where this reaches is point 17.</p>

<p>Having located 17, curve from it above the line of shoulder at 21, and drop one-fourth
inch below it at 20; and, also, from 20 draw the arm-hole past 18 to X; but do not quite
touch A, and drop below V one-fourth inch.</p>

<p><span class="pagenum"><a id="Page_10"></a>[10]</span></p>

<p>Point V is midway between S and H; from it draw a straight line to 4; curve a little
on both sides of it; that is, starting from V, keep following the line for two inches, then
gradually separate towards the waist-line, so that you will have two curves, which will be
apart one-fourth inch near waist, but coming together again at 4.</p>

<p>About one-half inch more forward than the middle, between 19 and V, fix point X;
and in the centre, between 1 and 4, locate 3; then draw a line from X to 3 and curve it.</p>

<p>In the middle, between H and D, mark point 12, and in the middle, between 12 and
H, point 13.</p>

<p>Measure the distance from front, at U, to 1, and from 2 to 1½; on this draft it will be
16 inches. Now deduct from this the size of waist, 12 inches, and the remainder, 4 inches,
must be taken out in darts. We put them in as follows: From U to 5 place a distance
of 2 inches for all average medium sizes; from 5 to 6 is one dart of 2 inches, and between
the darts, from 6 to 7, is three-fourths inch, then from 7 to 8 is another dart of 2 inches.</p>

<p>Take two-thirds of the distance under the arm and place it upwards from 7 towards 13
for the height of the back dart, and let the front one start one-half inch lower; then draw
them, as shown, from 22 and 23 to 9, 10, 11 and 12.</p>

<p>Now, at one-fourth inch below 1, curve the lower line past 3, and a trifle above it, to
12, drop point 12 a little below the line; also drop 10 a little below it; from 9 to T remain
on the line straight across.</p>

<p>The draft is now finished by proportion, and we can assure our readers that, with the
use of the sizes on our Proportionate Table, it is applicable to all forms, the manner of
drafting remaining the same in all cases.</p>

<p>All our figures, unless otherwise stated, are drafted without seams. We do this because
it is far easier to add the amount necessary on different material than to draft it on
the pattern.</p>

<h4>THE WAIST, BY MEASURE.</h4>

<p>The measures we shall use are the following: Breast, 36; waist, 24; length of natural
waist, 15; height under arm, 7; front of arm, 10½; width of back, 6½; front length, 18½.</p>

<p>In drafting this we drop proportion altogether and use only the measures as stated
above to get all points on the draft. All the lines and curves will come out in similar
manner to the previous draft. Fig. 4 starts by drawing a line O-F and O-N; go down
from O three-fourths of an inch, and in from O, to A, two inches, and curve from ¾ to A.</p>

<p>From ¾ down, measure the length of back 15 inches to F, and at F draw a line over to
the front and go in 1½ inches and mark a point.</p>

<p>From ¾ to this last point draw a straight line for the centre of the back.</p>

<p>Up from F measure the height under arm 7 inches to E, and from E draw a line to
the front.</p>

<p>From Z to D is one-half of the breast-measure, and draw the front line up and down.
Also measure from Z to S, the actual width of the back, and from Z to H, the front of the
arm, 10½ inches, or the blade measure which is taken from the front of the arm over the
blade to the centre of the back. At S and H draw lines up.</p>

<p><span class="pagenum"><a id="Page_11"></a>[11]</span></p>

<p>In the middle between O and E mark point B, and in the middle between B and E
point C, and draw the lines across as shown. (<a href="#figure04">See Fig. 4.</a>)</p>

<p>From where the lines cross at J, draw one across to top of back at A, and curve from
A to G which point is one-half inch above J.</p>

<p>Beginning at G curve arm-hole past J, a trifle inside of line between J and R, and from
thence to V. This last is midway between S and H.</p>

<p>Make the bottom of the back 1½ inches wide. This is only a medium, as it can be made
1 inch or 2 inches, which only places the seam either further back or more to the front.
Then from R draw a straight line to 1½ and slightly curve a line drawn to 19 and to 2.
Between 19 and 2 curve more towards centre of back. A few trials will enable you to make
a nice shaped curve.</p>

<figure class="figcenter illowp77" id="figure04" style="max-width: 43.75em;">
  <img class="w100" src="images/figure04.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 4.</p></figcaption>
</figure>

<p>From 2 on back to side body at 1 is 1 inch, and curve from 19 to 1.</p>

<p>From V, straight down, draw a line to 4 and curve a trifle on either side of it, also
separate side-body from X to 3. Point X is midway between line R and V and the distance
between 3 and 4 is about ½ inch more than X to V.</p>

<p><span class="pagenum"><a id="Page_12"></a>[12]</span></p>

<p>Take ⅙ of the breast, equal to 3 inches, and place it from point N to P and use point N
as a pivot and sweep from P to 15.</p>

<p>At a point on waist-line directly under H, measure up past P, shoulder point, the front
length, which is in our measure 18½, deducting the width of top of back, and wherever it
reaches to is point P. This may, sometimes, when the person is erect, reach above the
line; and again, on hollow or stooping shoulders, be below it. Wherever it reaches is the
shoulder point, and when it goes above we sweep at a point above N even with shoulder
for neck, and of course, should it be below the line, at a point below N, so that the neck
will keep its shape to harmonize with the height of shoulder point.</p>

<figure class="figright illowp42" id="illus04" style="max-width: 12.5em;">
  <img class="w100" src="images/illus04.jpg" alt=" ">
</figure>

<p>Wherever point P is located by measure, above or below, or on the line, start to draw
the line to B, on back, for height of shoulder, and place the width of back shoulder from A
to G on this line from P to get point 17. Then from 17 curve above it about one-quarter
inch to P, and also draw the arm-hole, going inside of line H, but never over one-half inch,
to V, as shown on the diagram. Drop a trifle from 17 to 20.</p>

<p>At the front, draw the line starting inside of straight line of 15 one-quarter of an inch,
gradually curving out till at D we have one-half inch curve, and thence going in again to
the line at waist, point U. From U go down 1¼ inch to T, and draw a line across to 12.</p>

<p>Measure the distance F to U, leaving out the opening between 1 and 2, which in this
case will be 16 inches. Now, one-half of waist-measure, 12 inches, from 16 leaves 4 inches,
which must be taken out in darts.</p>

<p>To produce the darts in the right place we proceed as follows: first locate a point in the
middle between H and D which gives 12, and in the centre between H and 12, another
which is marked 13.</p>

<p>From U to 5 place 2 inches, as we never wish to have the first dart any nearer to the
front, then from 5 to 6 is one dart of 2 inches or one-half of
the amount to be taken out. Between the darts leave
three-fourths inch, and then place another dart of 2 inches
from 7 to 8. In the centre of each dart mark a point and
draw lines from these to 12 and 13.</p>

<p>One-third of the height under arm from 13 locates 23
while 22 is one-half inch lower, and starting from each of
the last points curve the darts as shown.</p>

<p>It will be seen that they are drawn very pointed at top,
and that below the waist-line they run straight down without
any spring being given.</p>

<p>From 1 curve to 3 and 4; but between 3 and 4 it runs
a trifle above waist-line, and then from 4 to 12 on lower
line. Point 10 is a little lower than the line, while it rests
on line, from 9 to T.</p>

<p>This finishes the draft by measure, and we have only to
add that this, as well as the preceding, requires the adding
of seams according to material used.</p>

<p><span class="pagenum"><a id="Page_13"></a>[13]</span></p>

<h3>FIG. 5. LARGE SIZE WAIST.</h3>

<p>In using this by measure, draft in the same way as explained in another article, the
difference being only that the measure will be larger. We will explain this by the Proportionate
Method: Breast, 44 inches; waist, 31½; drafting size, 21⅝, or equal to a breast-measure
of 43¼ inches.</p>

<p>It should be understood that this last size of breast is used only for the height, while
the original breast-measure must always be used for the width.</p>

<p>First draw line O-C, mark point O, and draw a line at right angles with O-C, to A;
from O go down three-fourths inch to point 7, the top of back. From 7 to C is the length
of the waist, 15½ or 16 inches.</p>

<figure class="figcenter illowp87" id="figure05" style="max-width: 43.75em;">
  <img class="w100" src="images/figure05.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 5.</p></figcaption>
</figure>

<p>At the waist go in 1½ inch from C; draw a straight line from 7 to 1½ for the centre of
the back.</p>

<p>From O go down to point B, one-quarter of the drafting size, which is, in this case,
10⅝ inches; this is one-quarter of 43⅛, as on large sizes the length is reduced in the
shoulders to the drafting size. Now draw a line from B to H, and one from C to J.</p>

<p>Point D is in the centre between O and B; then from D draw a line over to K.</p>

<p>From B to G is one-third and 1 inch, equal to 8⅛ inches, and from G draw a line up.</p>

<p>From G to E is one-fourth, equal to 5¼ inches; here also draw a line up.</p>

<p>From N, on the back line, to H, place one-half of the full breast-measure, which is<span class="pagenum"><a id="Page_14"></a>[14]</span>
22 inches; and at this point draw a line up and down, thus making the front line A-J.</p>

<p>From O to 6 is one-eighth of breast, 2⅝ inches. From 7 curve to 6, for the top of back,
at neck; from K to 6 draw a line, and at 6 begin to curve the line for shoulder, raising it
one-half inch above K to 8. Also commence to curve the arm-hole from 8, going inside of
line one-eighth inch at 16, and thence past 15 and 4 to E.</p>

<p>Midway between K and G is point 16. Start to make the seam for the back from 16,
past 17 to 1; the last point is 1½ inch from 1½. When it is desired to produce a narrow
shoulder, raise the seam above 8 one-half inch, and back from 8 fully 1 inch, and draw the
arm-hole from 18 to 16.</p>

<p>To draw the first side-body, place 1 inch from 1 to 2, and curve the line from 16 to 17;
thence separate and curve nicely to 2.</p>

<p>In the centre, between G and E, mark point 4, and draw a line straight down, which
will be 5; and, in the middle, between 17 and 4, fix point 15. Also take the distance from 2
to 5, and fix a point in the centre, which will be 3, and then draw a line from 15 to 3; curve
a little on each side of these two lines, as shown.</p>

<p>In producing the front, be very careful to follow the instructions as here given: From
A to F is one-sixth of the breast-measure, 3½ inches; and the same amount from A to I;
now, sweep from F to I, using A as pivot; from F to D draw a straight line, and place the
same distance, as on the back shoulder from 6 to 8, on to F to 9, and then curve it a little
above the line at 20; finish the arm-hole by curving it from 19 downwards past E. It will
be seen that it runs over and in front of line E, and one-fourth inch below breast-line at 4.</p>

<p>For the front edge, commence one-fourth inch inside of straight line at I, and go
gradually out to one-half inch at H, and in again until it touches line at J and 14.</p>

<p>Now to manage to fix the darts: Measure from 1½ to 1-2, to 3, and 3 to J; this will
give 19½ inches. But as the measure is only 15¾, one-half of 31½, we take out the difference
between these two widths in darts. This amounts to 2¾ inches, which we take out in two
darts of 1⅞ inch each.</p>

<p>First find the centre between H and E, which fixes point R; and the centre, also, between
R and E, which gives point P. This first dart commences 2¼ inches from J. Then
put in one dart of 1⅞; inch. Between the darts, let the space be 1 inch, and then place the
width of the other dart, which is also 1⅞ inch, and fix a centre in each dart.</p>

<p>From R draw a line through the centre of the first dart, and from P one through the
centre of the second; then curve the lines of both darts like those on the diagram. The
darts are started two-thirds of the distance up under the arm, but the front one is made
one-half inch shorter.</p>

<p>From J go down 1½ inch and draw a line across to 10.</p>

<p>The bottom of the waist is straight from 14 to 13. At 12 begin one-fourth inch below
and draw to the line at 11. From 10, also one-fourth inch below, draw a curved line to 5,
raising to 3, and back to 2.</p>

<p>When the back has been narrowed on the shoulders it becomes necessary, also, to
conform the front to it; as we have raised above 8 to 18 one-half inch, therefore, we<span class="pagenum"><a id="Page_15"></a>[15]</span>
must reduce the shoulder on the front the same amount we added, and it will bring it to 19.
Then the waist is finished. Let it again be stated that seams must be added, except in
the neck and arm-hole.</p>

<h3>FIG. 6. LOW NECK DRESS WAIST.</h3>

<p>It will be seen that the general arrangement of this draft is the same as all produced
by this System.</p>

<p>The pointed basque-like shape at bottom is made to whatever length desired, only, it
will be noticed, they are made short on the side just over the hips.</p>

<figure class="figcenter illowp75" id="figure06" style="max-width: 37.5em;">
  <img class="w100" src="images/figure06.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 6.</p></figcaption>
</figure>

<p>In making these waists low in the neck, the first point to be considered is that they
reach down lower on the shoulders, and, therefore, we have to draft them so as to meet
this requirement.</p>

<p>From S, the original shaped draft, we go out to 10, on line D-10, 1 to 1½ inch, according
to the lowness of opening; the same is added from Q to R, and the arm-hole drafted
from these two last points.</p>

<p>Now, decide how low it should be open, and draw the curved lines from T to Q, and<span class="pagenum"><a id="Page_16"></a>[16]</span>
from B to 9. The strap on shoulder can be made 1 or 2 inches wide. If a short sleeve
is wanted flatten the sleeve-head about the same amount as was added to the shoulder
over S to 10.</p>

<h3>FIG. 7. BASQUE PATTERN.</h3>

<p>This figure represents a short pointed basque as it can be produced by this System—whether
by proportion or by measure. We have already fully explained the manner of
producing all the upper portions of the draft in previous articles, and it is not necessary to
go over it here again, it being the same as any other waist.</p>

<figure class="figcenter illowp58" id="figure07" style="max-width: 34.375em;">
  <img class="w100" src="images/figure07.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 7.</p></figcaption>
</figure>

<p>From the waist down we place whatever length is wanted in the back to get point J<span class="pagenum"><a id="Page_17"></a>[17]</span>
or line B. From 1 and 1½ lines are drawn down,
and whatever is put on from S to back line must
be also added from line at 30 to 28.</p>

<figure class="figright illowp30" id="illus05" style="max-width: 12.5em;">
  <img class="w100" src="images/illus05.jpg" alt=" ">
</figure>

<p>On a short basque the back line does not
touch point J, it having less spring, and therefore
the width of back, at S, is only a little more than
at the waist, or about one-half inch on each side
of the straight lines.</p>

<p>From J to 28 curve up, to taste. If wanted
with a high curve at side, over the hips, it may
reach above 28; and when desired straight around
the bottom draw it along bottom line, or similar
to a jacket, as shown on other Figures.</p>

<p>The side-body at bottom must start at S,
level with 28, rising up towards R.</p>

<p>Q is even with R, and from it to O draw the
line a little lower.</p>

<p>Point P is also level with O; thence, forward,
it is drawn so that the front point is either level
with the back or longer pointed, as shown on the
Figure, where it is two inches lower.</p>

<p>The darts are placed the same as on a waist.
But below the waist line F they curve, as shown.
The best way to produce a good result is to draw
straight lines down from 11, 12, 13 and 14, drawing
them inside or outside of these lines, as shown.
It will thus be seen that 23 comes nearly in the
centre of the second dart, because more curve is
here needed for the hips, while the space between
the darts is drawn so that the distance between 24
and 25 is only a little more than at 12 to 13. In
this way, when the darts are sewn up they will
take the shape, or the seams will shape themselves like the centre-piece between the darts.</p>

<p>When dividing the side-body, from 18 to 19, directly under the arm draw a straight line
down and let the spring on each side of this line be equal, as P and O. Also take out
about one-fourth inch above the waist-line along the side-body seams, to curve them more
to the shape.</p>

<p>From 15 to 20 a straight line is also drawn, and an equal amount is put each side of
this line, over the hips, to R and O.</p>

<p>It will be noticed that point 18 is in the middle, between line E and the line K,
or point S on Fig. 4; and point 15 is midway between 18 and line K; the width of the
side-body, at the waist, is made wider; the line from 18 is always drawn straight down,
then divide the distance from point 19 and 2, the centre of which is 20; and from 15
through 20 draw the other line.</p>

<p><span class="pagenum"><a id="Page_18"></a>[18]</span></p>

<h3>FIG. 8. POLONAISE.</h3>

<p>This is drafted in the same manner as the one given in Fig. 7. As, however, this is a
long garment the amount of drapery must be increased; therefore below the hip line D we
spring out till at bottom, point F, it amounts to one inch. At 4 there is one inch over line;
at 6, on side-body, one inch; there draw a straight line from 4 down, through this inch, and
curve the one-half inch over it. On the side, from 5 to 7, is 1½ inches, the same at bottom.</p>

<figure class="figcenter illowp58" id="figure08" style="max-width: 43.75em;">
  <img class="w100" src="images/figure08.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 8.</p></figcaption>
</figure>

<p><span class="pagenum"><a id="Page_19"></a>[19]</span></p>

<p>Where 3 and X, of fore-part, are located lay the side-body on top of it, 1 resting on 3,
and point 3, of side-body, resting on X, then finish the line from X to 14, by the way the
side-body lays, and fix the length also by the side-body. Put in two darts, letting them
run only 4 inches below the hip line.</p>

<h3>FIGS. 9 AND 10. THE SLEEVE.</h3>

<figure class="figright illowp32" id="figure09" style="max-width: 18.75em;">
  <img class="w100" src="images/figure09.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 9.</p></figcaption>
</figure>

<p>Commence by drawing lines O-E and O-F.
Use the arm-hole size to produce the sleeve, and go
down from O to B one-fourth of this; A is in the
middle between O and B. Draw lines across.</p>

<p>From O to F is one-half of arm-hole, and from
there draw a line down to K.</p>

<p>From B to F draw a straight line and halve it,
which will be point H; and from this last also draw
a short line at right angles with the diagonal line
from H to J.</p>

<p>Measure the length of line B-F and take one-third
of it and place it from H to J.</p>

<p>Now, using J as pivot, sweep from line at top,
point 4, around to the front and the back; from B
curve line past 5 to this sweep. Where the sweep
crosses line at G draw a line down to K.</p>

<p>Go down from B to C three-fourths of an inch,
and from here measure the length of arm to E.</p>

<p>Mark a point midway between B and E, which
gives D, and draw a line across.</p>

<p>In the middle, between the two parallel lines at
back, mark a point <i>f</i>.</p>

<p>Now lay the square in such a position on the
pattern that 5 inches will touch point E and the long
arm will touch <i>f</i>, then draw along the bottom, from
E to N, and to <i>f</i>.</p>

<p><span class="pagenum"><a id="Page_20"></a>[20]</span></p>

<figure class="figright illowp33" id="illus06" style="max-width: 12.5em;">
  <img class="w100" src="images/illus06.jpg" alt=" ">
</figure>

<p>Begin to curve from C, past L to <i>f</i>, and curve
to N.</p>

<p>Go in from D 1½ inch and draw the front-seam of
the sleeve.</p>

<p>From X, where the curve strikes line B, begin to
draw the under-sleeve parallel with upper part 6 to 1.</p>

<p>Measure from B around the sleeve-head to C, and
apply number of inches obtained to X, and measure
past 1 towards 3, the measure of arm-hole, and 2 inches
more. If the upper-sleeve measures 11 inches place 11
on to X and measure 16 inches, adding 2 inches more to
line at 3 for a 16-sleeve. Wherever point 3 is located
begin to draw back arm-seam to bottom by running
straight down, curving out to 2, or as much inside of
line 7 as <i>f</i> is outside of it.</p>

<h3>FIG. 10.</h3>

<p>Draw the line O-G and O-F. From O to C go
down one-third, less one-half inch, and draw line over
to K. In the middle, between C and O, draw also a
line from B to H.</p>

<figure class="figleft illowp37" id="figure10" style="max-width: 15.625em;">
  <img class="w100" src="images/figure10.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 10.</p></figcaption>
</figure>

<p>From O to G is one-half
of arm-hole size, and
draw a line from G downwards.</p>

<p>From C begin to curve the sleeve-top past I to H, touching
the top line at I. From L to E apply the length of
sleeve. Make F 1¼ inches lower down than E.</p>

<p>From E to N is an average of 5 inches. Draw a line
from H past K to M and N, curving it inside of K about
one-half inch and curve the line only a trifle below the
elbow. Go in from D 1½ inch, and draw the inside seam
from C to E.</p>

<p>This finishes the upper-sleeve. For the under-sleeve
draw from C, curving under straight line to L, thence to J.
Point J is 1 inch inside of H. From J draw down to within
one-half inch of M and to N.</p>

<p>The front-seam is the same as the upper-sleeve from C
to E and N.</p>

<p>In drawing any sleeve use the measure of the arm-hole,
and bear in mind that this manner of drafting has the seams
already included.</p>

<p><span class="pagenum"><a id="Page_21"></a>[21]</span></p>

<h3>FIG. 11. SKIRTS.</h3>

<p>Cutting and making a dress skirt, of any style and kind, is sometimes considered of
very little importance. By many dressmakers the work is entrusted to inexperienced
hands and blocked out by a pattern which will not fit the form. Many fine costumes lack
style because the laws of cutting skirts for the different figures have not been observed.</p>

<p>The fashion for the present, and for some time past, requires the skirt to be fitted with
as much care as any other part of the dress. All fullness must be so arranged as to fall
into the back breadths of the train. The sloping of the bottom must be proportionate, so
as to give a straight even effect across the front and sides and allow the train to suddenly
spring out at the lower part of the back widths.</p>

<figure class="figcenter illowp75" id="figure11" style="max-width: 43.75em;">
  <img class="w100" src="images/figure11.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 11.</p></figcaption>
</figure>

<p>The careful sloping of the gores at the sides causes the train to fall into a fan-like
sweep. The necessity of fine slopes, and a difference of those in different costumes, as
well as for different figures, will be readily appreciated when we observe the use for which
the dress is intended.</p>

<p><span class="pagenum"><a id="Page_22"></a>[22]</span></p>

<p>In a walking dress, as it should be to be in harmony with style and the present
demands of fashion, the skirts should adhere closely all around the front and sides, leaving
whatever fullness there may be at the back. In order to gain this, darts are required
between the breadths, which reduce the size needed over the hips down to the size at waist.
As the hips proportionately increase at a given ratio at the sides it must be evident that,
in order that the skirt may fall down fairly over the hips, these darts at side must be
larger there, while towards the front they must be smaller.</p>

<p>The bottom should have a regular sweep. This sweep can be gained the easiest by
laying the gores in a closing position on the table, drawing a straight line along the centre
of the front and extending upwards about the same length as the skirt. At the centre of
the back breadth another line is drawn far enough up to cross the first line. In this shape
the two lines would represent a cone; at the point attach a string to a pin driven into the
table, and extending this string to the lower length of the skirt sweep around the bottom—this
will produce a correct effect in every case.</p>

<p>The front width is now cut wide enough so that only one additional width is needed
at each side. As we have already said, much depends upon goring the sides as regards
fitting the hips, but on stout ladies extra care must be taken that the front be also sufficient
to cover the round form of the body. The defect liable to occur in this point has the same
result as not sloping enough at the side for large hips, namely, the skirt will hitch-up on
the waist-band.</p>

<p>Putting on a skirt to the band is of equal importance. A dart in the apron or front
width gives sufficient fullness over the round of the body in front; so also do darts at side.
All the rest of the fullness should be pleated or gathered into the few inches left of the
band after the front and sides have been sewed to the band.</p>

<p>We should not advise any one to cut out a skirt, whether short or with train, with
out a good pattern, unless they understand how to draft one and know the points of
the different shapes in gores.</p>

<p>Such skirt patterns we are prepared to forward to any address, on application, but in
order that students may acquire an idea of how to cut them, Fig. 11 will show the general
form and shape of them.</p>

<p>Draw line A, and make it 45 inches long, and mark off all the distances on the line, as
shown by the number of inches given at all these points; draw lines across at right angles
to line A.</p>

<p>Draw a line from point 6 to 12 and curve it to within one-half inch of 6, and then
curve slightly one-half inch below line at centre to 6½ on line A. This finishes top of front
breadth; connect 12 and 45, which finishes the bottom.</p>

<p>Finish the top of side-breadth by drawing lines from 7 to 11, curving these lines
like Figure; at the bottom, curve from 12 to 42.</p>

<p>Connect points 32 and 42, also 22 and 12, by straight lines, which finishes the back
part; this will give a skirt 38 inches long and the prevailing width.</p>

<p>Lay the front part, line A, on the fold of the goods.</p>

<p>In sewing to the band the front and side-breadths are left plain while the back is
pleated in three or four large pleats.</p>

<p><span class="pagenum"><a id="Page_23"></a>[23]</span></p>

<h3>FIGS. 12, 13, 14. SACK JACKET.</h3>

<p>It will be seen that every shape and style of garment must be drafted in the same
manner as the principle employed in the construction of the waist-body or basque.</p>

<p>We first commence to draw the back line B and O to F (Fig. 12).</p>

<div class="figcenter">

<figure class="figmulti illowp24" id="figure12" style="max-width: 14.0625em;">
  <img class="w100" src="images/figure12.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 12.</p></figcaption>
</figure>

<figure class="figmulti illowp32" id="figure13" style="max-width: 18.75em;">
  <img class="w100" src="images/figure13.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 13.</p></figcaption>
</figure>

</div>

<p>From O down, on the first line, place three-fourths of an inch, and from O over to F,
one-eighth of the breast-measure, or simply 2 inches, on average size.</p>

<p>Starting at ¾, measure down to C, the length of natural waist, and to D, the full parts
of the hips; also to E the length wanted.</p>

<p><span class="pagenum"><a id="Page_24"></a>[24]</span></p>

<p>From C up to B place the height under the arm. Now at every one of these points
draw lines across, all at right angles with the first line.</p>

<p>Go in from C to N 1½ inch, and then draw a line from ¾, at top, to N, and from the
last point to E, and curve the back-line, as shown from ¾, past R.</p>

<p>From N to M make the width of back, at waist, 2 inches or more, as desired.</p>

<p>Starting at R, place the width of back to G and draw a line up to S.</p>

<p>In the middle, between O and B, fix point A, and from there draw a line over to J.</p>

<p>From the point where lines A-J and G-S cross draw a line to F.</p>

<p>Raise above J one-half inch to S and curve the shoulder from F to S; then from S
go inside of line at J and curve the arm-hole of the back to I. This last point is midway
between J and G.</p>

<p>From I draw a line to N, then commence at I and draw line for the side-seam to 8,
going inside of straight line a trifle and thence with a decided curve to M.</p>

<p>Draw a right-angle line with the waist-line F down to 3 from N, and to 4 from 2.</p>

<p>Now whatever the distance E is drawn from 3 must be placed from 4 to 5, and the
back may be finished by drawing the line from 2 to 5.</p>

<p>In case it is desired to make a narrow back, point E may be nearer to 3; in such case
point 5 would also be nearer to 4.</p>

<p>Cut the back out, and in order to draw the side-body lay it on the paper in such a
manner that there will be room enough to cut it out without piecing.</p>

<h4>THE SIDE-BODY.—FIG. 13.</h4>

<p>Lines D-F and O are extended over. From 2 to 10 is 1 inch in every case.</p>

<p>Draw from I, along the back, to 8, and from thence begin to separate from the back
and curve to 10 and down to 6, which is the point on the back where line O and the line
from 2 downwards cross. From 6 down give this line a nice curve, not springing out too
much nor making it too flat—a medium is what is desired.</p>

<p>From B to K is one-fourth of the breast-measure.</p>

<p>Curve from I to H and K.</p>

<p>About 1 inch inside of K draw a line down to L, which should make the side-body
as wide from 8 to H as 10 to L.</p>

<p>At right angles with waist-line draw one down from 10 to 3, and another from L to 4.</p>

<p>Now whatever the distance is from 3 to 5 should be placed from 4 to 6, and then the
seam from L is drawn past 11 to 6.</p>

<p>Make the length at bottom one-half inch longer at 5 to 6; also notice that the distance
from 7 to 11 may be a little more than that from 9 to 6, as more ease over the hip, at side,
is desirable.</p>

<h4>THE FRONT.—FIG. 14.</h4>

<p>All the lines are extended over on the paper, and the side-body and back are laid in
the position as when they were drafted, and as shown.</p>

<p>First measure from B to V, one-half the breast-measure, and draw line A up and down.</p>

<p><span class="pagenum"><a id="Page_25"></a>[25]</span></p>

<p>From B to R is the measure to the front of the arm, where a line is drawn up. From
P back, place one-sixth of the breast to N, here draw a line up and down, as shown.</p>

<figure class="figcenter illowp52" id="figure14" style="max-width: 37.5em;">
  <img class="w100" src="images/figure14.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 14.</p></figcaption>
</figure>

<p>Measure up from star on side, marked Z, to line at N, the front length less the width
of the top of back, and where this reaches on the line fix the height.</p>

<p>From this height draw a line to A, which gives the height of shoulder.</p>

<p>From P as pivot sweep from N to 21 for neck. Place the length of back shoulder from
F to S on to N, on line N, and where it reaches will be point 22.</p>

<p><span class="pagenum"><a id="Page_26"></a>[26]</span></p>

<p>Drop one-half inch below line and curve from 22 to 23, which is one-fourth above the
line, to N. Also curve arm-hole from 22 through R to H.</p>

<p>Draw the front line one-half inch inside at 21, curving outside one-half inch near V,
coming back to line at U, and outside one-half inch at bottom to point 20.</p>

<p>From H, through L, draw line to 11.</p>

<p>Whatever the distance from 11 to 24 is place over from 11 to 13 and then curve from
L, through 12, to 13. Sweep the bottom from 13 by a point 1 inch back of N and flatten
this curve near 14.</p>

<p>Midway between R and V fix point 2, and midway between 2 and R point 1.</p>

<p>Measure the distance from the front at U to 10 and from 2 to C.</p>

<p>Deduct the half size of waist from this last and the remainder is taken out in darts.</p>

<p>From U to 12 is 2 inches.</p>

<p>From 12 to 9 is one-half of what is to be taken out in darts.</p>

<p>From 9 to 8 is always three-fourths of an inch.</p>

<p>From 8 to 7 is another dart.</p>

<p>Fix a point in the centre of the darts and draw a straight line from 1 and 2 to 6 and 5;
and at right angles with waist-line draw lines from centre of dart down to the bottom.
Now, one-third of the height under arm, down, fix point 3, and make 4 one-half inch more.</p>

<p>Draw the darts from 3 and 4 through the points, as shown, to 15 and 14.</p>

<h3>FIG. 15. DOUBLE-BREASTED SACK JACKET.</h3>

<figure class="figleft illowp37" id="illus07" style="max-width: 9.375em;">
  <img class="w100" src="images/illus07.jpg" alt=" ">
</figure>

<p>Draft by measure—breast, 36; waist, 24; and hip, 40. Length to
waist 14½, and full length, 26.</p>

<p>By using these measures we will endeavor to show how to draft
a jacket, each piece separately, thus doing away with the over-lapping
of patterns as it occurs when it is drafted altogether, as in our
previous articles on proportionate cutting. It is the same principle,
but more practical, as a pattern can thus be cut whole in the skirt.</p>

<p>Commence by drawing the back construction line from O to L
and O to P.</p>

<p>From O down is three-fourths inch to T.</p>

<p>From O to E is one-fourth of breast—9 inches.</p>

<p>From T measure down to the waist 14½ inches, and the full
length to L, 26 inches, and from O over on top line to 5 two inches,
and curve the top, T, to 5.</p>

<p>B is midway between O and E.</p>

<p>K is 6 inches below the waist; now draw all the lines across.</p>

<p>At F go in 1½ inch to back, and draw a curved line from the centre seam of the back,
from T to 1½, and spring out three-fourths inch at 9, thence to L.</p>

<p>From E to 7 is one-third and one inch, equal to 7 inches. Draw a line up from 7 to
3, and one from 5 to 3.</p>

<p><span class="pagenum"><a id="Page_27"></a>[27]</span></p>

<p>Raise above 3 one-half inch to 4, then curve the shoulder-seam of the back; form also
the curved line from 4 to 6.</p>

<p>Point 6 is midway between 3 and 7. Make the width of the back at waist 2 inches,
and from 2 draw a straight line down to the bottom.</p>

<p>Now curve the side seam from 6 past 2 to 10 at bottom, which point is three-fourths
of an inch outside of the straight line, also connect L and 10 by a line.</p>

<figure class="figcenter illowp66" id="figure15" style="max-width: 39.0625em;">
  <img class="w100" src="images/figure15.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 15</p></figcaption>
</figure>

<h4>THE SIDE-BODY.</h4>

<p>Cut out the back and lay it on the paper in such a manner that the breast-line will lay
on the same line further towards the front, so that there will be sufficient room at the<span class="pagenum"><a id="Page_28"></a>[28]</span>
bottom to draft out the side-body whole. Now, first draw along the edge of the back from
6 to 2; go in at 2 one inch, and curve from the blade down to 13.</p>

<p>At 13 draw a straight line down, and curve out from 13 to 18; this last will be exactly
underneath point 8 of the back, and from here to the bottom draw it with a slight curve
to 20, which is the same length as point 10 of the back.</p>

<p>From 14 to 13 is 2 inches, and make the distance from 11 to 12 the same; now draw
a straight line from 12 to 14, and down to the bottom.</p>

<p>Go out from 15 to 16 one inch, and curve seam from 14 to 19, which should not be
over 1½ inch outside of straight line. Draw line from 20 to 19.</p>

<h4>THE FRONT.</h4>

<p>Lay the side-body on breast-line and back in position against side-body, so that the
breast-line of each lays correct and straight, then measure from I on centre of the back to
the centre of the front D, half-breast, or 18 inches;
at this last point draw a line up and down for front
line.</p>

<figure class="figleft illowp30" id="illus08" style="max-width: 12.5em;">
  <img class="w100" src="images/illus08.jpg" alt=" ">
</figure>

<p>Point 12 of the side-body will now be the same as
point 21 of the front; draw down to 27 a line with a
slight curve to shape in at waist; also draw a straight
line down from 27 to 35 at bottom.</p>

<p>From P to C is one-sixth, or 3 inches, and the
same to 23, now sweep the neck from P.</p>

<p>From C, which is one-half inch above the top line
for erect or ordinary builds, on the line draw one to B
on the back.</p>

<p>Now measure the length of shoulder on the back
from 5 to 4, and place the same from C to 22, and
curve a little above it, as shown in Fig. 15. From G
on side-body forward to front of arm is one-fourth, or
4½ inches, where a line is drawn from H; then finish
arm-hole from 22 to H and 21.</p>

<p>Finish the side-seam by going out at 31 1 inch to
33, and curve seam to 34; also locate the length by
laying the side-body, point 12, on 21, and where 19
comes is 34.</p>

<p>From C, by 34, sweep the bottom of front and
straighten this some in the centre.</p>

<p>At the centre of breast-line, beyond D, put one-half
of breast, and curve the front line from 23 to waist at
S, where it comes back to the straight line, and thence
to the bottom at 30, where it is one-half inch outside of
it. For a double-breasted jacket make the lap 2½ inches<span class="pagenum"><a id="Page_29"></a>[29]</span>
at breast, 2 at waist, and 2¼ at bottom. Whatever the size of the draft at waist, from
points S to 1½ on back, exceeds the actual measure must be taken out in darts.</p>

<p>In this Figure we take out one dart only, starting in the centre, J, which is between H
and D, and take out between points 25 and 26, the full amount which will be about 2½
or 3 inches, starting the dart at 24, two-thirds above 25, and finishing about 4 inches
below the hip-line.</p>

<p>In case two darts are preferred they are put in as already shown in previous Figures.</p>

<h3>FIG. 16. SACK JACKET.</h3>

<p>This shows the manner of drafting a jacket with
an extra piece under the arm and only one dart in the
front. The correctness of the lines, and the simplicity
of the process, will be of much benefit to our students.
This method is the same as we have given in several
different styles, and therefore it is drafted in a similar
manner. It requires only one method to draft all
kinds of garments, and our aim in giving the different
shapes is to familiarize our readers with its application
to a variety of shapes and styles, so that whatever garment
they may be called to cut they will be able
to do it.</p>

<figure class="figright illowp30" id="illus09" style="max-width: 12.5em;">
  <img class="w100" src="images/illus09.jpg" alt=" ">
</figure>

<p>Let us take a size—36 breast, 24 waist, with a
length of 30 inches, and a waist reaching down from
neck 15½ inches.</p>

<p>In drafting, first draw the line O-F.</p>

<p>From O go down three-fourths inch for the top of
the back.</p>

<p>From the top of the back to D is the length to the
waist, 15½ inches; from the same point down to the
bottom of the garment measure 30 inches to F.</p>

<p>At D go in to point 14 1½ inch. Then from the top
of the back to 14 draw a straight line, and also draw
one from 14 to F, curve slightly over the line below
14, past 20, to F. Make the width from 14 to 2 two
inches, and run a line parallel with back-line from
2 to 29, and curve it a trifle, as shown on the Figure.</p>

<p>From O go down to C one-quarter of the breast,
which is 9 inches, and draw a line across. Draw a line
from O over to K at right angles with the back-line.</p>

<p>In the middle, between O and C, fix a point marked B and draw a line over to N.
From C to G is one-third breast and 1 inch, equal to 7 inches, and draw a line at right<span class="pagenum"><a id="Page_30"></a>[30]</span>
angles with line C-G. From G to H is one-fourth breast, equal to 4½ inches, there draw
a line at right angles with the one under arm.</p>

<p>From 1, centre of back, to J, at the front of the breast, place one-half of the breast-measure,
equal to 18 inches, and at J draw a right angle line up and down like line K-J
and S. From O to 13 is 2 inches.</p>

<p>From N to 13 draw a line, and then, commencing at 13, curve the shoulder, letting it
rise above the last line one-half inch to 14.</p>

<p>Starting three-fourths inch inside of line G begin to curve the arm-hole past 12 to
17 and H. In the middle, between N and G, fix the point to start seams from for the
back. Draw line from thence past 19 to 2 and 29—this makes the back with narrow shoulders.</p>

<p>To draw the first side-body place from 2 to 3 one inch, curve the line from 19 to 3,
gradually beginning to separate below 19 without curving too much, care being taken to
get a neat curve. Below 3 curve toward the back till at hip, 21, it will meet the back, and
thence downwards, till at the bottom it will over-lap the back 1 inch to 30.</p>

<p>Make the width of side-body at the top any distance desired, say 3 inches, and make
it the same at waist, or from 3 to 4, 3 inches. Then curve from 17 to 4.</p>

<p>Lay a long straight-edge, closing at 17, and three-fourths inch from point 4; while in
this position mark a line along it from the hip-line downward, and connect it by a curve
from 4 to 24.</p>

<p>Go in from 4 to 5 a distance of three-fourths inch, and curve from 17 to 5, but be
careful to commence to separate side-body only 1½ inch below 17. Lay a straight-edge, as
before, at 17, and three-fourths inch from 5, so that it will lay towards front, then from hip
downwards draw a line to the bottom and finish by curving from 5 to meet this at hip, 23.</p>

<p>From 17 to 18 may be only 1½ or 2 inches, according to the size—2 inches will be
sufficient for a 36 breast.</p>

<p>Draw a straight line to 6 and take out a slight curve to shape it to the form. Again,
lay a straight-edge against 18, and three-fourths inch from 6, and mark along it from the
hips downward; curve from 6 to hip.</p>

<p>Commencing at 18, curve the front to 7, taking out one-half inch, then lay a straight-edge
against 18, and three-fourths inch from 7 mark along it below the hips and finish the
curve from 7 to 25.</p>

<p>To produce the front, place from K to P one-sixth of breast, equal to 3 inches, also the
same from K to 16. From P to B draw a line, then place the same distance as on the
back shoulder from 13 to 24 on to P to produce point 15, or the length of front shoulder,
curve it above this line, and at 15 drop it one-half inch below. At 15 curve the arm-hole
to H, going outside of the line enough to give the arm-hole a good shape, but under no
consideration go beyond point H—rather go inside.</p>

<p>Curve the front-line one-fourth inch inside of 16, and outside at J one-half inch, and
coming back to R, where it should spring out to the bottom one-half inch at S.</p>

<p>Add beyond last curve 1 inch for the lap, on a single-breasted jacket, all the way down.</p>

<p>Measure from 14 to 2, 3 to 4, 5 to 6, and 7 to R, which will be about 15 inches; but as
the waist must be 12 inches, or one-half of 24, we must take out the difference in a dart,<span class="pagenum"><a id="Page_31"></a>[31]</span>
which is 3 inches. Divide the space between H and J which gives point I, and from this
draw a straight line down. Go down from I 2 inches to 17. On each side of the line at 9
place one-half of the dart, 1½ inch, then curve from 17 to 8, 27 and 35; also from the same
point to 10, 28 and 36. At the bottom it should be three-fourths inch.</p>

<figure class="figcenter illowp53" id="figure16" style="max-width: 31.25em;">
  <img class="w100" src="images/figure16.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 16.</p></figcaption>
</figure>

<p>The bottom of the first side-body must be one-half inch longer than the back; the
second the same length as the first; and the front must start at the same length as the
second, and curve forward 1 inch below line 33 to 37.</p>

<p><span class="pagenum"><a id="Page_32"></a>[32]</span></p>

<h3>FIG. 17. SHORT JACKET.</h3>

<p>This gives a short jacket, of a neat, peculiar shape. As regards the darts all points
are the same as given in Fig. 18, except that instead of putting in two side-bodies we only
cut a dart out under the arm, and one across the front, both being equal, of a size required
to make the waist lay close. The dart in front is started from H and runs into the pocket.</p>

<figure class="figcenter illowp53" id="figure17" style="max-width: 31.25em;">
  <img class="w100" src="images/figure17.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 17.</p></figcaption>
</figure>

<p>The back is made 4 inches wide at the waist and wide enough at the bottom to
harmonize with it. Point F is the hip. Any sleeve cut to the size of arm-hole will go
with this.</p>

<p><span class="pagenum"><a id="Page_33"></a>[33]</span></p>

<h3>FIG. 18. JERSEY BLOUSE.</h3>

<p>Draw line O-J and O-F. From O to D is one-fourth of breast. From O to 20 is
three-fourths inch. From O to D take one-half the distance to get point B, and in the
centre, between B and D, is point C. From 20 to E is length of back and to F the full length.</p>

<figure class="figcenter illowp53" id="figure18" style="max-width: 31.25em;">
  <img class="w100" src="images/figure18.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 18.</p></figcaption>
</figure>

<p>Go in from E 1½ inch and draw the back-line from 20 to 1½ and to F. From O is
2 inches for top of back to 2. From D is one-third of breast and 1 inch to G. Draw a line
up from G to 6. From 6 draw one to 2 and curve 1 inch above it at 1.</p>

<p>Curve arm-hole from 1 through 9 to 10. From G to H is one-fourth of breast—4½
inches on a 36 breast. Draw a line up. From back, near D, to K is one-half of breast.<span class="pagenum"><a id="Page_34"></a>[34]</span>
Draw line up and down. From J back to I is one-sixth of breast, and the same down to 3.</p>

<p>From I to 6 draw a line. Curve above line at 18 one-half inch for front shoulder,
and curve the arm-hole from 18 to 17, and H to 10. Point 10 is about 1½ inch from G.</p>

<p>Make the width of back 5½ inches from 1½ and 9½ inches to point 10, and 10 inches
at bottom. Then curve the side-seam at 10 to 5½ and U. From N, at front of the waist,
go in 3 inches, to 16 4½ inches, and to 4 6 inches.</p>

<p>Draw a straight line up and down through 16, and form the dart, from 20, through
3 and 4, to 5 and 6.</p>

<p>Lay the back on the front to meet at 10, 5½ on V, 8 on U, to get the right curve for
the side seam.</p>

<p>Measure the waist and make the distance at V to correspond with it. Using I as
pivot sweep from 8 for the bottom of the front.</p>

<p>Add one-half inch button-stand, and 1 inch on the side the buttons are sewed on.
Buttons should be 1 inch apart.</p>

<p>The Jersey is finished with standing collar.</p>

<p>This pattern is intended only for goods which are elastic—like stockinet or tweed.</p>

<p>The seams in the dart and at side should be stretched somewhat in pressing, thus
allowing them to fit closer to the form.</p>

<h3>FIG. 19. GIRL’S SACK.</h3>

<figure class="figleft illowp37" id="illus10" style="max-width: 9.375em;">
  <img class="w100" src="images/illus10.jpg" alt=" ">
</figure>

<p>This is a sack for a young girl of size 31 breast, close-fitting.
The figure illustrates a very jaunty and comfortable jacket.</p>

<p>For the Fall Season it should be made of heavy ribbed cloaking, of
a dark shade of grey, and an extra neat finish is obtained by binding it
with a braid of a darker shade, and buttons to match the braid.</p>

<p>It has eight buttons in front, is cut single-breasted, with a very
small turn-over lapel, which allows it to be buttoned up close to the
neck.</p>

<p>A side edge is imitated on the back by braid, and three buttons put
on it.</p>

<p>The full-size pattern may be cut by following the Figure, as represented,
using inches for every number marked out.</p>

<p>In order that this may be readily understood we will go over this
manner of doing it again, so that our readers who desire to take them off
may not make any mistakes.</p>

<p>First draw a line on the edge of paper, and draw out the back first, by fixing a point
at the top.</p>

<p>O is the starting point. From O go down in inches as indicated by the points
marked ¾, 2¾, 5¾, 13, 20 and 34.</p>

<p>Draw lines across from these points and apply the numbers on the Figure to these<span class="pagenum"><a id="Page_35"></a>[35]</span>
lines. When all these points are fixed connect the points by lines, which will form the
outlines of the back.</p>

<p>For the side-body use the same process and you will have the full size. It can be
made double-breasted by adding 1½ inch in front of the breast all the way down.</p>

<figure class="figcenter illowp48" id="figure19" style="max-width: 37.5em;">
  <img class="w100" src="images/figure19.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 19.</p></figcaption>
</figure>

<p><span class="pagenum"><a id="Page_36"></a>[36]</span></p>

<h3>FIG. 20. BRAIDED JACKET.</h3>

<p>This Figure represents a fashionable style of close-fitting jackets for Spring wear.
They are made single-breasted, having the buttons close together, and have the appearance
of a Jersey. The same may be made double-breasted by the addition of 2 inches
to the front. In trimming they may be plain, with nothing but small flat lasting, or a
round crochet button. Braid in military style may be used, or a simple binding.</p>

<p>The Figure is drawn from a pattern of a 36 breast, 25 waist; the length may be regulated
to taste. In drafting this pattern use inches for all the figures on the draft.</p>

<figure class="figcenter illowp88" id="figure20" style="max-width: 51.5625em;">
  <img class="w100" src="images/figure20.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 20.</p></figcaption>
</figure>

<p><span class="pagenum"><a id="Page_37"></a>[37]</span></p>

<h3>FIG. 21. DOUBLE-BREASTED CUT-AWAY JACKET.</h3>

<p>This gives an elegant and very stylish jacket. The front is double-breasted towards
the top with a broad, sharp lap, while at the waist only one button is used.</p>

<p>In order to enlarge the draft to full size, which is a 36 inch breast-measure, use inches
for all the figures on the draft.</p>

<p>The jacket itself is finished at the neck with a collar, which is put on to the cape.
The front, at the neck, is held together by an agraffe ornament. This garment, as it
should appear, may be seen by the illustration.</p>

<figure class="figcenter illowp80" id="figure21" style="max-width: 46.875em;">
  <img class="w100" src="images/figure21.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 21.</p></figcaption>
</figure>

<p><span class="pagenum"><a id="Page_38"></a>[38]</span></p>

<h3>FIG. 22. LADY’S JACKET.</h3>

<p>These drafts illustrate a new style of lady’s jacket, which will be acceptable to many
for street wear. The style and general effect at once denote the character of the garment.
The jacket is well adapted for outdoor wear. It is made with a moderate addition
for double-breasted added on to the fore-part, and the button holes are worked in close
together, as the buttons now used are so very small; therefore, on this jacket, they are
placed only one inch apart.</p>

<p>The waist is medium length, and the skirt can be made to suit the height of the lady.
A lap-over is made at the centre of the back skirt, finished off with small buttons put close
together.</p>

<p>The pockets may be put in at the side like a coat pocket, or only a flap put on,
leaving the top edge unfastened, which forms the opening. In the latter case it can be
ornamented with buttons. Pockets, however, are only put in when it is cut longer than
Figure.</p>

<p>The sleeves are narrow, finished by a row of buttons, and can be regulated in width
by the measure of the arm. This is very essential, as ladies now-a-days like the sleeve
as close as possible.</p>

<p>The darts are cut down to the bottom, which is more preferable to running them to a
point, as a seam looks better which runs continuously to the bottom. Cutting the dart so
that it reaches only to the hip, will, unless carefully made, rise up in a puff at its lower end.
It must always be borne in mind that the spring must be allowed to rise at the side-seam.<span class="pagenum"><a id="Page_39"></a>[39]</span>
The sudden rise of a lady’s hip, and the marked
difference between the size of the waist and of the
body but a few inches below, make it extremely
difficult to obtain the necessary amount of freedom
for the prominence of the
figure at this part of the
body.</p>

<p>The bottom edge of this
jacket should be edged on
the inside by a facing of
silk, which is held on tight
so that the edge may cling
close to the dress-skirt.</p>

<p>The collar is cut like a
coat-collar and the lapel
rolls short. A narrow binding
one-half inch wide is
put on the edge on all
goods with a close and firm texture,
while on heavy, loose material,
the stitching looks more
appropriate.</p>

<figure class="figcenter illowp55" id="figure22" style="max-width: 43.75em;">
  <img class="w100" src="images/figure22.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 22.</p></figcaption>
</figure>

<p>The button-holes run down to
the bottom of the skirt. This form
of jacket makes up well in fine
diagonal or brocaded velvet.</p>

<p>For heavy winter wear, rough
suiting will make very stylish garments.</p>

<p>The lower edge of this jacket
may be drawn straight across instead
of curving up over the hips
as on the Figure, and then it is
equally as well adapted to be worn
with any dress, as in the shape we
illustrate.</p>

<p><span class="pagenum"><a id="Page_40"></a>[40]</span></p>

<h3>FIG. 23. SINGLE-BREASTED LONG SACK.</h3>

<p>Figure 23 represents a long, close-fitting, single-breasted sack, consisting of back, side-body,
front and sleeve. They are all drawn by measuring the lines, and placing the
number of inches on each line as designated by the numbers shown on the Figure.
Thus, for the back draw a straight line from O, then apply each measure as shown, and
draw the lines across at right angles with the line O. When these figures are all located,
finish by drawing the outlines.</p>

<p>Draw the straight line O down to the desired length for the side-body; at 28½ apply
the figures on the lines—when these are all fixed curve the outlines.</p>

<p>For the front, draw the straight line down from O, and mark the number of inches for
both length and width; when these are all fixed finish the outlines.</p>

<figure class="figcenter illowp87" id="figure23" style="max-width: 43.75em;">
  <img class="w100" src="images/figure23.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 23.</p></figcaption>
</figure>

<p>The sleeve is drawn from O down to the required length, applying the number of
inches for length as well as width, as shown; after these have all been found, and the
line drawn at right angles with the line O, draw the outlines. After the upper part of<span class="pagenum"><a id="Page_41"></a>[41]</span>
the sleeve has been drawn cut it out; then locate the points for the under-sleeve, and lay
the back of upper-sleeve against the points of the back part of the under-sleeve, and draw
it like the back of upper-sleeve; fix the points in front, and lay the upper-sleeve on and
draw for the front of sleeve, then finish for top, as shown.</p>

<h3>FIG. 24. JACKET OR CLOAK—FROM A WAIST PATTERN.</h3>

<p>The method which is explained below is one of the most handy, as well as the easiest,
that can be used, and will invariably produce good results. It is evident, in the first place,
that the original pattern must have the essential qualities of fit and good lines, otherwise it
would be of little value as a base or guide to produce another garment. In order to get
such a waist pattern one must be able to design it, or have it on hand; in the latter case
we are prepared to furnish these patterns when ordered.</p>

<h4>THE BACK:</h4>

<p>In drafting a jacket pattern, first draw a line (like O-G) on the edge of your paper.
Lay the back against the line at O and within 1½ inch of the line at the waist, then
trace along the centre seam from O to 5. Now move it one-fourth inch away, this is for
seam; then the same quantity is allowed above at neck from 1 to 2 and from 2 to 3.</p>

<p>Along the arm-hole, from 3 to 4, trace close to the pattern. Measure next the length
wanted from O to 5 and 9 and draw a line over to 10. From 5 to 9 draw a straight line,
and then curve outside of this, at point 8, about one-half inch, as shown on Figure.</p>

<p>Make the width of waist any size desired, say 3 inches, which establishes point 7, and
from this point draw a line down to 10. This line should be no further away from the first
line at 10 than at 7, or the distance from the line 9 to 10 should be the same as at waist,
from 1½ to 7. Now, starting at 4, slightly curve to 7 and go one-half inch outside of
straight line to 10.</p>

<h4>THE SIDE-BODY.</h4>

<p>In this case, as on the back, the first thing we do is to draw a straight line from
O to 10. Now lay the side-body against it, at O, and swing it away from the line at the
waist 1¼ inch. Trace along the pattern from O to 1¼. Then move the pattern one-fourth
inch away from the last line, which would leave from 1 to 3 just one-fourth inch for
the seam. From 5 to 6 go in one-half the distance allowed over and above the allowance
on the back, as from 6 to 7. Now curve the side-body from 2 to 5, keeping as nearly
as possible the same shape as the original. Then from 5 draw a line down parallel with
the first line which runs from O to 10. Now apply the back from 2 to 9 and regulate the
length, which is point 9; then from 5 curve one-half inch outside of straight line at 8 to 9.
At 9, square across to 10, and also draw a straight line from 1¼ to 10, and begin to curve
from 3, past 7, to 10. This curve should be more round near hip, or begin to curve closer
to the waist. The curves on the back and on the side seam, from 5 to 8, may be gradual,
as it thus has the appearance of being longer waisted than it actually is.</p>

<p><span class="pagenum"><a id="Page_42"></a>[42]</span></p>

<h4>THE FRONT.</h4>

<figure class="figcenter illowp72" id="figure24" style="max-width: 43.75em;">
  <img class="w100" src="images/figure24.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 24.</p></figcaption>
</figure>

<p>First draw the straight line like O-B. Lay the fore-part of the pattern against this
line, touching at the centre of the breast, B, and trace along it at the front from 1 to the
bottom at 3. Next move the pattern back one-half inch to B. Trace along the arm-hole
without any allowances, but on the top of shoulder add one-fourth inch, also a trifle at
neck. On the side-seam, from 15 to 20, add one-fourth inch; then lay the finished side-body
on top of the front, touching point 15, and at the waist at 20, and finish the balance<span class="pagenum"><a id="Page_43"></a>[43]</span>
from 20 to 22 by the side-body. Now from the top of the shoulder-point, by the bottom,
point 22, sweep the bottom to the front at B. From 3 to B draw a straight line, and
for a double-breasted jacket, as the Figure given, add on to the front, at B, 3 inches, at waist
2½ inches, at the bottom 3 inches, and shape it as shown. At the bottom, after it has been
curved by a sweep, straighten it one-half inch above the sweep in the centre. Instead of
two darts at the back only one is used, as shown, and this one can be increased one-half
inch, and a cut is also taken out under the arm from 16 to 17.</p>

<p>It is evident that two darts can be put in as well as
one, or when the same is intended for plush goods the
darts can be left out altogether without altering the balance
in any manner.</p>

<p>To produce a collar for this jacket draw a line from
C, where it is intended to roll, to E, which is one-half inch
from curved line of neck; then drop down from this line
at 13 to 11 one inch and curve the break, as shown from
11 to E. From 11 to 12 is ¾ inch; curve this also to neckline
at F, and thence along the neck to the front. From
11 to 13 make the part of collar which is to turn over 1½
to 2 inches wide, and shape to the front at G.</p>

<p>Sleeves for this jacket are cut similar to those already
explained.</p>

<h3>FIGS. 25 AND 26. WALKING COAT.</h3>

<figure class="figright illowp21" id="figure25" style="max-width: 10.9375em;">
  <img class="w100" src="images/figure25.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 25.</p></figcaption>
</figure>

<p>By using a sack pattern, cut to the measure, a walking-coat
can be cut in the most ready manner.</p>

<p>The back is the same as a sack-jacket. We only
measure from the top down to the length of open skirt A.
From here add the lap for pleats; single pleats require
only 1¼ inch; box pleats, according to size, 2 to 4 inches.</p>

<p>The side-body is cut off at a length to correspond to 2
on back, plus one-half inch, and curved up some towards
side seam.</p>

<p>The front is made as long as the side-body, and the
bottom swept from the shoulder-point. When cut it will
leave the skirt in pieces as 1, 2, 3 and 4.</p>

<p>Now take these pieces and lay them down, closing at
hip, so that the opening will be no more at bottom than at
top; they lay close together at 12, 13 and 14.</p>

<p>Now draw along the skirt at back from 4 to 15. From
4 draw towards 5, raise one-half inch above the pattern to
10, curving pattern at front.</p>

<p><span class="pagenum"><a id="Page_44"></a>[44]</span></p>

<p>Put in a dart at 7. From 11 to 16 trace along the front, and also along the bottom.
Add the pleat behind.</p>

<p>The side-body in this Figure is laid in a closing position at side, point 2, to show that
the seam must have a continuous curve from 1 and 2 to the front.</p>

<p>The distance from 1 and 2 to 3, and from there to the front, is noted, and the skirt
from 4 to 5-7 and 11 should be just the same
with 1 inch more added, which is pressed in before
the skirt is seamed on to the fore-part. It
will be noticed that in laying the pieces of the
of the skirt together they close at 14, 12 and
13, but at the top and bottom they are separated,
equal distances, the cut at 7 reduces
one opening, and 1 inch fullness equalizes
the amount the fullness is greater at 9 and
forward. The addition for single and double-breasted
is made by adding on
in front of the fore-part and also
on to the skirt: for a single-breasted
1 inch is enough, but
for a double-breasted from 2 to
3 inches is required.</p>

<figure class="figcenter illowp54" id="figure26" style="max-width: 37.5em;">
  <img class="w100" src="images/figure26.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 26.</p></figcaption>
</figure>

<p><span class="pagenum"><a id="Page_45"></a>[45]</span></p>

<h3>FIG. 27. DOUBLE-BREASTED NEWMARKET JACKET.</h3>

<figure class="figcenter illowp58" id="figure27" style="max-width: 34.375em;">
  <img class="w100" src="images/figure27.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 27.</p></figcaption>
</figure>

<p>Commence this by drafting on the same principle as all drafts—by the Proportionate
System—by drawing line from O to F. From O go down to 11 three-fourths of an inch,
and to 10 2 inches; from 11 to 10 curve the top of the back, and measure from the top of
the back, at 11, to C, the length of waist 15 inches, to D 18 inches and to F the full length,
32 inches; at C, O and F draw right angle lines across. From C to the back is 1½ inch;
Draw a line from 11 to 1½, and one from 1½ to F; make the width of back from 1½ to<span class="pagenum"><a id="Page_46"></a>[46]</span>
2 inches wide. From O to B is one-fourth of the breast-measure, 9 inches in a 36 inch
breast, and A is midway between these two points; draw lines over from A and B. From
B to G is one-third of breast and 1 inch, equal to 7 inches; from G to H is one-fourth of
breast, or 4½ inches. From Y to J is one-half of breast, 18 inches; draw lines up from G,
H and J, also down from J to N.</p>

<p>Where line A crosses line G, at M, draw another line from M to 10; raise one-half
inch above M to V, and draw a curved line from 10 to V.</p>

<p>Commence to curve the arm-hole from V to M and H, dropping one-fourth inch below
breast-line at 15.</p>

<p>In the centre, between M and G, begin to draw the back to 2 at waist, and from there,
with a slight curve, to Z at the bottom, so that the distance from F to Z will be about
equal to that from C to 2.</p>

<p>Go in from 2 to 3 one inch and shape the side-body from line under the arm to 3 and
S, where it touches the back; make the side-body any width desired, say 2 inches to 14,
the same from 3 to 4, curve the seam under the arm and spring it out below 4 to 21, to
give it ease over the hips; also draw the curve for the piece under the arm from 14 to 4
and 20. From S curve up to 21, which latter point is 1½ inch above the line S-18. Point
20 is on the same level as 21, the line runs straight across to the front seam which runs
down from 5. The piece under the arm is 1½ inch wide at top, from 14 to 15, and 2 inches
from 4 to 5; this should be shaped somewhat like draft.</p>

<p>From L to I is one-sixth of the breast, 3 inches, and the same down from L to T.
Curve the neck; from I to A draw a straight line, and place the length of shoulder from
10 to V on the front from I to U; shape the front of shoulder by dropping below line at
U one-half inch, and raise slightly above it at 12.</p>

<p>Finish drawing the arm-hole from U to H, going out beyond the line H at 13 about
one half inch.</p>

<p>Draw from T, at the front, outside of J one-half inch, thence to K at waist, going
inside of front line one-fourth inch at K and N to point P at bottom.</p>

<p>In the middle, between J and H, locate a point for the dart, and in the centre, between
this and H, fix another point for the back dart. From K to 1½, across the waist, measure
the distance, taking out 1 inch between 2 and 3, which will be 16 inches; deduct the
size of waist, 12 inches, from 16 inches and the remainder, 4 inches, is to be taken out in
darts; therefore, put in two darts of 2 inches each. From K to 9 is 2 inches; from 9 to 8
is one dart; from 8 to 7, between the darts, is three-fourths inch; from 7 to 6 is another
dart of 2 inches. About 2½ inches below the waist-line begin to draw the darts past 9, 8, 7
and 6, nearly straight down from waist-line. From 21 curve lower seam to 19, 18 and N;
at N it is one-half inch below straight line.</p>

<p>Make the lapel straight on its inside edge, and 2 inches at waist, and 3 inches at
centre of breast, in width, and shape like Figure.</p>

<p>To draw the skirt lay a straight-edge from 3 to S against the side-body, and draw a
line to R, then curve it about one-half inch more over the hips. Regulate the length by
the back. From S draw the upper edge of the skirt to within one-half inch of side-body<span class="pagenum"><a id="Page_47"></a>[47]</span>
at 21, thence to N; from N forward add the width of lapel and draw straight down; also
put in two cuts on the hip, of one-half inch each, and the skirt will be right to fit the body.
Should it, on measuring, be a little too wide, take the extra width off in front; whatever
overlaps on the side-body will equalize the loss of the darts.</p>

<p>A flap can be put on over the hips. An ordinary coat-collar will suit this jacket.</p>

<h3>FIG. 28. TRAVELING ULSTER.</h3>

<figure class="figcenter illowp75" id="figure28" style="max-width: 43.75em;">
  <img class="w100" src="images/figure28.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 28.</p></figcaption>
</figure>

<p>A Spring and Fall garment for traveling or outdoor wear is represented by this
Figure and is a reduced copy of the pattern of a 38 size breast, and can be readily enlarged
by simply using inches for the numbers marked upon it. The draft is a close-fitting
traveling paletot, double-breasted, and buttons down to the bottom, and has a collar which<span class="pagenum"><a id="Page_48"></a>[48]</span>
turns over, as represented by Fig. 5. This collar should be well stretched with the hot
iron, at the lower edge, before it is sewed on, in order that it may cling around the neck
nicely. This way of making and sewing on a collar is far superior to the usual custom of
dressmakers, and is always adopted by tailors in making jackets or other ladies’ garments.</p>

<p>The back has at its centre, below the waist, a lap, which can be put in a box-pleat or
lapped over like a coat, and at the side it has a simple pleat.</p>

<p>The front has a large dart cut in one piece—that is, like a sack coat, having the skirt
attached to the body—but the side-body is sewed in as cut, in a separate piece. Over
the hips pockets are put in covered with liberal flaps.</p>

<p>For use as a traveling garment it will be well to make it out of waterproof cloth, but
it makes a handsome street paletot when made out of diagonal cloth or melton.</p>

<p><span class="pagenum"><a id="Page_49"></a>[49]</span></p>

<h3>FIGS. 29 AND 30. NEWMARKET.</h3>

<figure class="figcenter illowp48" id="figure29" style="max-width: 28.125em;">
  <img class="w100" src="images/figure29.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 29.</p></figcaption>
</figure>

<p>This style of Newmarket has only one dart. Proceed to make a full size draft in
accordance with the directions. First draw a straight line O, and mark off the number
of inches down from O, as given on the Figure; at these points draw lines across, and on
these lines mark the number of inches as given, in like manner proceed to draw each
part of the garment.</p>

<figure class="figcenter illowp51" id="figure30" style="max-width: 37.5em;">
  <img class="w100" src="images/figure30.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 30.</p></figcaption>
</figure>

<p><span class="pagenum"><a id="Page_50"></a>[50]</span></p>

<h3>FIG. 31. RIDING-HABIT.</h3>

<figure class="figcenter illowp47" id="figure31" style="max-width: 37.5em;">
  <img class="w100" src="images/figure31.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 31.</p></figcaption>
</figure>

<p><span class="pagenum"><a id="Page_51"></a>[51]</span></p>

<p>The demand and orders for these garments have, so far, been considerable in the
leading houses, and a few hints are always seasonable, not only to those who make them
for the highest fashionables, but especially to those who are located in smaller towns and
who are not often called upon to make this style of garment. There are now many ladies
who have a horse at their disposal, and whose chief enjoyment is in equestrian exercise,
and it is quite necessary, not only for the tailor but the dressmaker, to know how a riding-habit
should be cut and made. At one time it was thought impossible for anyone but
a tailor to make a stylish riding-habit, but now many ladies have them made by their
dressmakers.</p>

<figure class="figcenter illowp52" id="illus11" style="max-width: 21.875em;">
  <img class="w100" src="images/illus11.jpg" alt=" ">
</figure>

<p>The first thing necessary is a good measure of the form, by which a correct pattern
must be cut, as a well-setting,
comfortable riding-habit cannot
be made without it.</p>

<p>The jacket has a few peculiarities:</p>

<p>There should be no seam
down the middle of the back;
the front, side-body and back
are cut one inch below the
natural waist.</p>

<p>The skirt and back form a
pleat like the skirt-pleat of a
coat.</p>

<p>The buttons should be small
and round. The sleeves are
tightly buttoned up at wrist.</p>

<p>The inside of jacket should
be lined with silk, carefully
wadded and stitched in close
rows. It should have a belt inside,
stitched to each seam at
waist, which is to close it tight
to the form.</p>

<p>The Figures we give show to
advantage some of these
peculiarities. The draft
is a good model of such
a habit, and is universally
adopted, being both
suitable and elegant. It
“looks quite English”<span class="pagenum"><a id="Page_52"></a>[52]</span>
and very pretty. A plain standing collar of
white linen should be worn with it and a gentleman’s
cravat of black silk, or if the jacket is
made with the lapels turning down a flat scarf
is more appropriate.</p>

<figure class="figcenter illowp85" id="illus12" style="max-width: 25em;">
  <img class="w100" src="images/illus12.jpg" alt=" ">
</figure>

<p>We add to this an article published in
“Munster’s Gazette of Fashion” on riding-habits.
This will enable our readers to be
more fully posted, not only on what is worn
here but what is in keeping with London styles:</p>

<div class="blockquote">

<p>“We have devoted one of the plates issued with the current number of our
publication to the representation of the newest and most fashionable
style of a lady’s riding-habit in wear. The lengthening of the waist,
which we reported last year, has been maintained, although it has not
been increased; and the jacket-skirt is about the same in length. It
is fastened up to the throat by buttons and holes, and with a small
stand-collar rounded off at the front. The jacket-skirt is cut in
one piece instead of two, as heretofore, and at front runs off at an
angle from the bottom of the front edge of the fore-part, and is lined
with cloth, or interlined with some article of substance, to give it
a firmness. The edges of the back skirts terminate in a point at the
bottom. A small square tab, with two holes in it, is sewn across under
the bottom of the back, and is fastened on to two buttons sewn on the top
of the back part of train. The edges are usually trimmed with a narrow
silk braid, sewn on flat, and the body and the sleeves lined with light
colored silk. Ball buttons and fancy silk buttons are generally used.
Five or six buttons are sewn on at the hind-arm; the two lower holes only
are worked open.</p>

<p>Some ladies affect a certain tone of severity in their riding-habits, and
eschewing all fictitious aids by way of adornment to the bodies have made
them perfectly plain, with the edges turned in and stitched, and smoked
pearl or vegetable ivory shank buttons.</p>

<p>Veils are no longer considered correct, no doubt because they may
be considered too effeminate in character and out of place with the
“billy-cock” hat.</p>

<p>The train, as now worn, is only cut a few inches longer than the walking
length. It is turned up at the bottom, with a narrow hem only, and the
V’s taken out at the seams are covered with ribbon.</p>

<p>Colored habits are being worn in rich shades of brown, olive and
green—not too light. Blue and black are also worn. The small diagonal
elastic coating and Venetian cloth are preferred on account of their
making up so satisfactorily. Dress meltons and tweeds are also worn, but
the makes are not so appropriate.</p>

<p>One inevitable consequence of short and scanty trains is the necessity
for every lady, taking equestrian exercise, to wear riding trousers. They
are usually made of the same cloth as the habit, with a fly-front open
to leg-seam, or with a long opening at each side-seam and a button and
button-hole in the centre, and a narrow strap at bottom.”</p>
</div>

<p>In order to produce Figure 31 use inches for all numbers on the draft. But in drafting
it to measure use the same principle as laid down for waists, and lengthen the skirt as
on Figure 7 and draw the skirt like that on last Figure.</p>

<h3>FIG. 32. CIRCULAR.</h3>

<p>Draw lines O-5 and O-J. From O to J is one-fourth of breast. From O to H is
one-third of breast. Lay the pattern of the back against H and 1½ inch inside of line at
the waist. Lay also the pattern of the front against the shoulder of the back near F and<span class="pagenum"><a id="Page_53"></a>[53]</span>
touching front-line at J. Draw along the top of the back from H to 1, and add to the
pattern at 1, for seams, one-half inch. Draw from 1 to F and from 2, on the front shoulder,
to F. From J, along the front of the body-pattern, draw a straight line to 4. Now from
1 and 2 draw a line and make a point in the centre at 3. Apply the length from H to 5
for full length of what the garment should be, and using point 3 as a pivot sweep from
5 to the front for the lower or bottom edge; then square the bottom at 5, and in front
at 4, as shown in the Figure.</p>

<figure class="figcenter illowp80" id="figure32" style="max-width: 43.75em;">
  <img class="w100" src="images/figure32.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 32.</p></figcaption>
</figure>

<p>If a seam is wanted draw a line through the centre from F and take out about
3 inches at bottom, starting from 6 to 7 and 6 to 8.</p>

<p>For a close back, curve from H along the back to 1½ and thence to 5 at bottom.</p>

<p><span class="pagenum"><a id="Page_54"></a>[54]</span></p>

<h3>FIGS. 33 AND 34. RUSSIAN CIRCULAR.</h3>

<p>In making a pattern of this garment we first draw a line on the edge of paper and
make a point on the right end, as O. From O down place three-fourths of an inch. From
O to I is one-half of breast measure, or 9 inches, for a 36 size. Between O and I is
J. H and I are at right angles with first back-line. From I over on the line place one-third
of breast, equal to 6 inches, and add 1 inch, making in all
7 inches, and draw a line up to 5. Next, from O on top line
place 2 or 2½ inches and curve from ¾ to 2½.</p>

<figure class="figleft illowp16" id="figure33" style="max-width: 9.375em;">
  <img class="w100" src="images/figure33.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 33.</p></figcaption>
</figure>

<p>Measure down from ¾ to D, the length of waist, say 15 inches,
and the whole length to R. Go in from straight line at D 1½ inch
and curve the right back-seam from ¾ to 1½ and R.</p>

<p>Make the back, at waist, 4 inches wide and curve from
5 through waist at 11 to 12 at bottom. The run of this line
should be nearly straight past V and curving at 11, and should
also be wider at bottom, about 1 inch more than from D to 11.
From 2½ draw a line raising it one-half inch at 5.</p>

<p>For the front (Figure 34) draw a straight line from O to J.
From O down to a is one-eighth of breast, equal to 2¼ inches.
From O to B is one-sixth of breast, or 3 inches. From O to K is
one-fourth of breast, or 9 inches. Square lines across at all these
points. From O to A, the neck, is one-sixth of breast.</p>

<p>Lay the back on to the point A and extreme shoulder resting
on the line at C. Now draw along the back shoulder while it is
in this position, and also curve from C to 12, which should only
be 4 inches below C.</p>

<p>From K go out to H one-quarter of the breast, less 1 inch,
equal to 8 inches. Having established this we can curve the
shoulder easier, as seen by dotted lines. Measure from K over
on the line one-half of breast, equal to 18 inches, and one-third of
breast, or 6 inches, added.</p>

<p>Now lay the back-line against this last point in such a way
that point 5 of the back will rest on line A-13, and so that it will
be placed as seen in Figure 35. Then carefully measure to see if
the distance from K-H and to the back-line will be exactly one-halt
and one-third of breast, or 27 inches. Then curve from 12 to
13 to 14 down the back and reducing it at the bottom about
4 inches from the position as it would be when the back is laid
as stated.</p>

<p>Now by the length of the back regulate that of the front, and
then sweep by the point of shoulder A from 10 to J. This latter
point, and part of this round, as produced by the sweep, should<span class="pagenum"><a id="Page_55"></a>[55]</span>
be shortened about 1 inch. Curve the neck from A to B, and add 1 inch all along the
front for a turn-in hem.</p>

<p>From where the back lies against the wing, at O, draw the curve to 13 on the top of
sleeve head.</p>

<p>The upper part of the sleeve-head should be gathered-in considerable, and at O a
notch should be placed to facilitate the sewing in, for notch should be sewn on notch. (<a href="#figure35">See
Figure 35.</a>)</p>

<figure class="figcenter illowp53" id="figure34" style="max-width: 26.5625em;">
  <img class="w100" src="images/figure34.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 34.</p></figcaption>
</figure>

<p><span class="pagenum"><a id="Page_56"></a>[56]</span></p>

<h3>FIG. 35. CLOSED CIRCULAR.</h3>

<p>After this has been drawn the same as the Russian circular, lay it against the front
and cut without a seam from O down to the bottom. For this shape, after the shoulders
are seamed up, gather in the round of sleeve from O forward. The same can be cut like
the circular; also cut off in front from top, past V, to the bottom, in a straight line down
from B. This makes a wrap with a back wing and a front. When cut in this manner an
opening can be left for the hands to go through, as shown on the Figure, below E.</p>

<figure class="figcenter illowp75" id="figure35" style="max-width: 37.5em;">
  <img class="w100" src="images/figure35.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 35.</p></figcaption>
</figure>

<p>A short cape, such as have been worn for some time in Europe, and are just making
their appearance here, is cut like this, reaching, however, only to the waist. This same<span class="pagenum"><a id="Page_57"></a>[57]</span>
wrap can be cut from a dolman pattern by laying the sleeve
of a dolman on to front so that the front notches come
together and the two patterns close together some distance
above, or till within 4 or 5 inches of the top of the shoulder,
then draw along sleeve-top past the back of the sleeve.</p>

<p>If a line is drawn through the shoulder-point, next to
the sleeve, at right angles with the front, and the back
shoulder-point laid on this line and closing against the
sleeve at blade, it will represent exactly this circular cape,
and will be one of the easiest ways to make it. The Figure
shows the outline of the dolman sleeve by the dotted line
from E forward, as it appears when lying in position.</p>

<p>These several wraps can be made of silk, and fur-lined,
or they may be of brocade, velvet, or seal, and are
handsome in shape and outline when correctly cut. As
they are so different from the old circular they will be much
sought after, because of the
newness of design and that
the sleeve can be raised on
the shoulder to harmonize
with the increased prevalence
of gathered and high
style of sleeve-heads.</p>

<div class="figcenter">

<figure class="figmulti illowp37" id="illus13" style="max-width: 12.5em;">
  <img class="w100" src="images/illus13.jpg" alt=" ">
</figure>

<figure class="figmulti illowp37" id="illus14" style="max-width: 12.5em;">
  <img class="w100" src="images/illus14.jpg" alt=" ">
</figure>

</div>

<h3>FIGS. 36, 37, 38, 39, 40. DOLMAN.</h3>

<p>Draw a line O-H; from O, down, mark three-fourths
of an inch. From O draw a short line over to 3, and
make it 2½ inches. From O down to B is one-fourth of
breast, equal to 9 inches on a 36 breast. Point F is in
the centre, between O and B; from ¾ to D is the length
of the waist, and to H the full length of garment. Draw
lines across at F, B and D. Between F and B, directly in
the centre, make a mark C, and draw a line across.</p>

<p>Go in at the waist 1⅓ inch from line at D; draw line
from ¾ to 1½ for the centre of back, and curve below D to
H. From 1½, at waist, measure in to 4 3½ inches to 4
inches.</p>

<p>On line C make the width of back one-third of breast
and one inch and draw a line up.</p>

<p>On the top of shoulder draw a line from 3 to 14, and
raise it one-half inch above 14; commencing there, exactly<span class="pagenum"><a id="Page_58"></a>[58]</span>
at the crossing of the lines, begin to curve past 16 and 4 to 1 at bottom. Having
finished the back, first make a line across in the middle, between ¾ and F, from E over;
next lay a sleeve pattern, of regular size, on 15 as when sewn in the arm-hole; holding it
at 15, swing it down till the upper part of the sleeve-head rests about one-half inch
below line E, at 13, and when in this position draw along the round of the sleeve, which
will give exactly the round as shown on the Figure from 15, past 13, to 2.</p>

<figure class="figcenter illowp64" id="figure36" style="max-width: 37.5em;">
  <img class="w100" src="images/figure36.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 36.</p></figcaption>
</figure>

<p><span class="pagenum"><a id="Page_59"></a>[59]</span></p>

<p>Next, placing the width over from B on the back line, measure to 10, 24 inches, and
curve the sleeve from 2 to 10, running below the line 2 inches. Point G is about 12 inches
below the waist, and from this place 1 inch more than one-quarter of the hips to 8, and
draw from 6, which is one-quarter of hip from D, a line through 8 to 9; then finish the
curve at bottom, and shape the round of front of sleeve to any desired shape. The front
is constructed by drawing a line from O down the front edge or centre of front.</p>

<figure class="figcenter illowp53" id="figure37-38" style="max-width: 31.25em;">
  <img class="w100" src="images/figure37-38.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 37. Fig. 38.</p></figcaption>
</figure>

<p>From O over to shoulder point is one-sixth breast, the same down to 3; also go down
one-eighth breast and draw a line across; curve the neck from ⅙ to 3, and apply the same
width of shoulder as the back on the front, ⅙ to 10. From O down is one-half breast to E,
there draw a line over to 8 and make last point, from E, one-fourth breast less 1 inch.</p>

<p><span class="pagenum"><a id="Page_60"></a>[60]</span></p>

<p>Measure the distance on the back, from B to H, and place it from E to P, then sweep
the bottom of the front by the shoulder-point, which gives line P to K. Make the distance
over from H to J one-quarter of the hips, and 1 to 1½, inch more; draw a line from
K through J to L. Next measure the back from 6 to 9 and place the same from K up
to L; curve arm-hole from 10 through 8 to L. Add 3 inches for a lap of double-breasted
style; mark and space the buttons.</p>

<figure class="figleft illowp37" id="illus15" style="max-width: 12.5em;">
  <img class="w100" src="images/illus15.jpg" alt=" ">
</figure>

<p>The under-sleeve is cut like the upper part from 2 to 10 and 11, like the outside curve.
The inside curve from 2 to 7 is short, just as much as is needed to sew in the front—to
find how much this should be we make a notch opposite 14 and one at 2, which is about
10 inches from 14. This measure, less 1 inch, is marked from 10 to 16, and at that
point make another notch. What is left from 16 to L must be placed from 2 to 7, and this
curve should be like curve on front. Lastly, draw a line from 7 to the star, which finishes
the whole garment.</p>

<p>In order to draft a dolman pattern which will fit well and hang with a good balance
the same manner of drafting as that which produces a good shaped sack should be used,
then the balance and hang of the garment will be equally as good as in a tight-fitting
sack, and a dolman can then be cut as close as a sack, if so desired.</p>

<p>The manner of drafting the back, side-body and front, are, in fact, just like a sack, the
main difference being in the shape of the sleeve. The sleeve, even in the upper part,
must be like an ordinary coat-sleeve, while the lower part
may be any of the various shapes in fashion.</p>

<p>In drafting make a line to start on from O to F
(Figure 37); from O down is three-fourths inch, and from
O over to top line is 2¼ inches to 1. From O to B is one-fourth
of breast, 9 inches of a 36 size. Point D is in the
middle, between O and B, and point 6 is in the middle, between
O and D. From ¾, which is the top of the back,
measure down to C 15 inches, and to F 40 inches, the full
length. Point E is 6 inches, or one-third of breast, below
the waist-line at C. At all these points draw lines across.
From B to H is one-third and 1 inch, equal, on 36 breast,
to 7 inches; draw a line up to J; in the middle, between I,
the point where the two lines cross and H, mark point K.
At the waist-line go in from straight line C to 3 one and
one-half inches, then draw line down from ¾ to 3 and from
3 to F. Also draw a straight line at right angles with
waist-line from 3 to 6 at bottom.</p>

<p>Make the width at waist, from 3 to 4, about 3 inches,
and draw also a line down to 7. Now curve back-seam, as
shown, and whatever amount there is from 6 to F place
from 7 to 8, and curve from 4 past 5 to 8.</p>

<p>Draw a line from I to 1, raise above I to J three-fourths<span class="pagenum"><a id="Page_61"></a>[61]</span>
inch, and curve the shoulder. Starting from J up upright line, curve back seam to
4 and 8; also mark a dim line from J past I, K to G, just like in a sack back—the dotted
line shows that. Point G is one-fourth of breast, or 9 inches, from B.</p>

<p>Notice that the curve on the back, from C to 3, is a trifle outside of the straight line,
and that below 3 it runs a shade inside to give an appearance of a long waist, and below
E it curves outside again to F.</p>

<figure class="figcenter illowp58" id="figure39" style="max-width: 34.375em;">
  <img class="w100" src="images/figure39.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 39.</p></figcaption>
</figure>

<p>The inside seam from J past breast-line should be very nearly straight, and begin to
curve only near the waist, and from 5 down it must have the same curve as outside line
below point E to F.</p>

<p>Now have a sleeve cut for a 36 size and lay this on to K, as shown, so that the sleeve-head
rests against the line from K to I; then in the centre, between I and K, find point 2
and stick a pin.</p>

<p>Now turn to Figure 38: In the middle, between line A and D, draw line E; keeping
it pinned at 2, move the lower part of the sleeve towards the back till the top of the sleeve-head<span class="pagenum"><a id="Page_62"></a>[62]</span>
just touches line E at 10. While it lays thus draw
along the top from 2 to 10 and 9, also down from 9, in front of
sleeve pattern, to line B. This gives the outline of the
sleeve, but we modify it by drawing a corrected line from
10, inside of point 9 of sleeve, down to 12.</p>

<figure class="figright illowp37" id="illus16" style="max-width: 12.5em;">
  <img class="w100" src="images/illus16.jpg" alt=" ">
</figure>

<p>Figure 39 gives the balance of the sleeve. First draw
a line in the centre, between lines B and C, which places
line D.</p>

<p>Then take out the pin which was placed in the sleeve at
point 2, and without moving the sleeve stick a pin at point U;
this point is found two-thirds of the width of the sleeve forward.
When this is done take hold of the sleeve at its lower
point and move it upwards, till point T of sleeve rests on
line D at N, and then curve from 16 to N. To produce this
curve just right take the distance from line B at 18 to line D
at 17, and place the same from 17 to 19, and draw a straight
line from 19 to 18, then curve line from 16, resting on line
at 20, thence to N. From N curve form of sleeve to 21
and 15, and to 13 for one style of sleeve, or from U to 21
and 14 for another style.</p>

<p>Go in from 4 to 5 three-quarters of an inch; curve from
10, past 2, touching the back, and along it past line B, and
thence separate from the back to 5 and 14—this last line must
touch at point 13 on the straight line which was drawn down from point 4 on Fig. 37 and
is marked 5 on the same.</p>

<h4>THE FRONT—FIG. 40.</h4>

<p>Lay the back down on paper and extend all the lines across, line A, B, C, D and
bottom line. Measure from Z to A on line B, one-half of breast, or 18 inches; from B to
H is one-third of breast and 1 inch; H to P is one-fourth of breast, equal to 4½ inches.
Draw a line up at P, and one up and down at A. Mark line A also. From K to L is
one-sixth of breast, equal to 3 inches, and K to 7 is the same, 3 inches; curve neck.</p>

<p>Draw a line from L to D and place the width of the top of shoulder on the back from
L to 8, and curve from 8 upwards above the line one-fourth inch; draw from 8 down in
front of line P to 9. This will be three-fourths inch in front of line P. Let this curve of
the arm-hole extend below line B, or nearly down to midway between lines B and C, and
curve to 6. From 6 draw down to 5, which is three-fourths inch from 4 to 15 and 17; at
the last point it should be about 1¼ inch over the straight line drawn down from 4 on the
back.</p>

<p>From point G, which, as before stated, is one-fourth of the breast-measure, 9 inches
from B, draw a straight line down. Curve from G to 12, 13 and 18; the last point is 2 inches
from T; also curve from G to 12, 14 and 19. Point 19 is the same distance from T as 18.</p>

<p><span class="pagenum"><a id="Page_63"></a>[63]</span></p>

<p>Draw bottom line from 19 to 30 at front, where curve three-fourths inch below
the line. Add in front over F line, for double-breasted 3 inches, and for single-breasted
1½ inches.</p>

<figure class="figcenter illowp42" id="figure40" style="max-width: 25em;">
  <img class="w100" src="images/figure40.jpg" alt=" ">
  <figcaption class="caption"><p>Fig. 40.</p></figcaption>
</figure>

<p>Now we have only to show how the under-sleeve is produced. This is done by
measuring first the sleeve-head from O, where point J of the back is sewn on, to 16, which
point is in middle, between 9 and 18. This will measure 10½ inches; as we put in 1 inch
of fullness in the sleeve-head it leaves us only 9½ inches, which is measured down the
front from 8 to 10 and notched. Lay sleeve notch, marked 16, on to notch on the fore-part
10, hold it there with a pin, move it till line on sleeve, marked C, will lay parallel with<span class="pagenum"><a id="Page_64"></a>[64]</span>
any of the lines, as C or B on fore-part. Then mark on the fore-part along the sleeve,
from notch at 10 to N of sleeve, and from N to 21; the sleeve will now be marked on the
fore-part line 10 to O, P and A, and will be cut the same shape as the arm-hole from 10 to
A, and can be traced off on another sheet of paper.</p>

<p>The principle as given in this article is suitable, and the only thing necessary, to produce
any style of dolman. The change necessary for the short or long pointed sleeve, or for
any shape of arm-wing, does not alter the principle. Pleated backs, or very much fullness
in the top of the sleeve, must be met by putting enough extra goods in to meet the amount
required for pleats or fullness.</p>

<p>When a regular pattern is cut addition is made where pleats are wanted. When
more fullness is wanted in the sleeve the easiest and most correct plan is to cut the sleeve
in two, from the highest part of the sleeve-head, and opened as far as required, about
1 or 2 inches, and a little more round put on the top.</p>

<p>The principle, as shown in this book, will produce for every style of garment a correct
fit, and yet it may be urged upon all using it, that in order to produce new styles, or garments
of such styles that contain pleats or ornaments laid on the cloth, the reader’s own
judgment must necessarily help to carry him through.</p>

<p>In conclusion, let me say—that any point or measuring that does not seem clear, by
addressing me I will always be ready to enlighten to the best of my ability.</p>

<figure class="figcenter illowp100" id="deco2" style="max-width: 21.875em;">
  <img class="w100" src="images/deco2.jpg" alt=" ">
</figure>

<div style='text-align:center'>*** END OF THE PROJECT GUTENBERG EBOOK 74716 ***</div>
</body>
</html>