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 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093
|
% \iffalse meta-comment
%
% Copyright (C) 2014--2016 by Diego Sejas Viscarra <dsejas.mathematics@gmail.com>
% Copyright (C) 2014--2016 by Alexey Balakin <mathgl.abalakin@gmail.com>
%
% This program is free software: you can redistribute it and/or modify it
% under the terms of the GNU General Public License as published by the
% Free Software Foundation, either version 3 of the License, or (at your
% option) any later version.
%
% This program is distributed in the hope that it will be useful, but
% WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
% Public License for more details.
%
% You should have received a copy of the GNU General Public License along
% with this program. If not, see <http://www.gnu.org/licenses/>.
%
% \fi
%
% \iffalse
%
%<package>
%<package>\NeedsTeXFormat{LaTeX2e}
%<package>\ProvidesPackage{mgltex}[2016/04/26 v4.2 Embed MGL scripts into LaTeX documents]
%<package>
%
%<*driver>
\documentclass[10pt]{ltxdoc}
\usepackage{color}
\usepackage{mgltex}
\DeclareRobustCommand\mglTeX{mgl\kern-0.04em\TeX}% Otherwise, incompatibility with \CharacterTable
\IfFileExists{hyperref.sty}{%
\usepackage[hidelinks]{hyperref}%
}{}
\EnableCrossrefs
\CodelineIndex
\RecordChanges
\widowpenalty=10000
\clubpenalty=10000
\begin{document}
\DocInput{mgltex.dtx}
\end{document}
%</driver>
% \fi
%
% \CheckSum{0}
%
%
% \CharacterTable
% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z
% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z
% Digits \0\1\2\3\4\5\6\7\8\9
% Exclamation \! Double quote \" Hash (number) \#
% Dollar \$ Percent \% Ampersand \&
% Acute accent \' Left paren \( Right paren \)
% Asterisk \* Plus \+ Comma \,
% Minus \- Point \. Solidus \/
% Colon \: Semicolon \; Less than \<
% Equals \= Greater than \> Question mark \?
% Commercial at \@ Left bracket \[ Backslash \\
% Right bracket \] Circumflex \^ Underscore \_
% Grave accent \` Left brace \{ Vertical bar \|
% Right brace \} Tilde \~}
%
% \bgroup%
% \makeatletter%
% \gdef\MGL@set@pseudo@verb@env{%
% \if@minipage\else\vskip\parskip\fi%
% \setlength{\labelsep}{1em}%
% \@beginparpenalty\predisplaypenalty%
% \leftskip\@totalleftmargin\rightskip\z@%
% \parindent\z@\parfillskip\@flushglue\parskip\z@%
% \itemsep\z@%
% \@@par%
% \def\par{%
% \if@tempswa%
% \leavevmode\null\@@par\penalty\interlinepenalty%
% \else%
% \@tempswatrue%
% \ifhmode\@@par\penalty\interlinepenalty\fi%
% \fi%
% }%
% \ttfamily%
% \frenchspacing%
% }%
% \makeatother
% \egroup
%
% \def\doccommand#1{\texttt{\textbackslash#1}}
%
% \changes{\textbf{v1.0 ------------}}{2014/09/27}{Initial version}
%
%
% \changes{\textbf{v2.0 ------------}}{2014/11/23}{Possible bugfix by adding \doccommand{expandafter} to commands to ignore/write lines of MGL code}
% \changes{\textbf{v2.0 ------------}}{2014/11/23}{Add environment \texttt{mglsignature} that adds a comment to every MGL script}
% \changes{\textbf{v2.0 ------------}}{2014/11/23}{Eliminate line ignoring commands to create more elegant scripts, due to the a new command that adds comments to the scripts}
% \changes{\textbf{v2.0 ------------}}{2014/11/23}{Move the MGL \emph{stop} command from the \texttt{\textbackslash{}AtEndDocument} command to the \doccommand{mgl@func} buffer}
%
%
% \changes{\textbf{v3.0 ------------}}{2015/03/29}{Add detection of changes in MGL scripts to speed up compilation time (only changed scripts are recompiled)}
% \changes{\textbf{v3.0 ------------}}{2015/03/29}{Add command \doccommand{mgldir}, \doccommand{mglscriptsdir}, \doccommand{mglgraphicsdir} and \doccommand{mglbackupsdir} to specify a main directory for \textsf{\mglTeX} and directories for the creation of scripts, graphics and backups}
% \changes{\textbf{v3.0 ------------}}{2015/03/29}{Add the \doccommand{mglquality} command to specify a default quality}
% \changes{\textbf{v3.0 ------------}}{2015/03/29}{Add the \doccommand{mglwidth} and \doccommand{mglheight} commands to specify the default size of the images produced}
% \changes{\textbf{v3.0 ------------}}{2015/03/29}{Add the \doccommand{mglsettings} command to configure behavior of the package}
% \changes{\textbf{v3.0 ------------}}{2015/03/29}{Improve environment \texttt{mglsignature} by adding the possibility of using \LaTeX{} commands inside it}
%
%
% \changes{\textbf{v4.0 ------------}}{2015/08/17}{Complete rewrite of \textsf{\mglTeX}}
% \changes{\textbf{v4.0 ------------}}{2015/08/17}{\textsf{\mglTeX} now depends of the \textsf{verbatim} package}
% \changes{\textbf{v4.0 ------------}}{2015/08/17}{All environments write their contents \emph{verbatim}}
% \changes{\textbf{v4.0 ------------}}{2015/08/17}{Add package options \texttt{0q}, \ldots, \texttt{8q} to specify quality}
% \changes{\textbf{v4.0 ------------}}{2015/08/17}{Add the \doccommand{mglpaths} command to add directories to the search paths for MGL scripts}
% \changes{\textbf{v4.0 ------------}}{2015/08/17}{Add the \doccommand{mglname} command to force clousure of the current main script, its compilation, and the opening of a new main script}
% \changes{\textbf{v4.0 ------------}}{2015/08/17}{Add the option \texttt{label} to the \texttt{mgl} environment in order to override the automatic naming of the script and corresponding image}
% \changes{\textbf{v4.0 ------------}}{2015/08/17}{Add the option \texttt{label} to the \texttt{mglverbatim} environment to name the verbatim code}
% \changes{\textbf{v4.0 ------------}}{2015/08/17}{Add the option \texttt{separator} to the command \doccommand{mglplot} to brake the code into different physical text lines}
% \changes{\textbf{v4.0 ------------}}{2015/08/17}{Add the option \texttt{path} to the commands \doccommand{mglgraphics} and \doccommand{mglinclude} to force a path to search MGL scripts}
% \changes{\textbf{v4.0 ------------}}{2015/08/17}{Verbatim-like environments and \doccommand{mglinclude} command are more visually elegant now}
% \changes{\textbf{v4.0 ------------}}{2015/08/17}{Numbering in verbatim-like environments is optional now}
% \changes{\textbf{v4.0 ------------}}{2015/08/17}{Add the command \doccommand{listofmglscripts} to create a list of all MGL scripts included verbatim in the document}
% \changes{\textbf{v4.0 ------------}}{2015/08/17}{Add the command \doccommand{mglTeXwVer} that prints the name of the package with its version in a coherent manner, and separated by an unbreakable space}
% \changes{\textbf{v4.0 ------------}}{2015/08/17}{Verbatim-like environments and the \doccommand{mglinclude} command have starred versions wich prevent the command \doccommand{listofmglscripts} to list them}
% \changes{\textbf{v4.0 ------------}}{2015/08/17}{Remove \texttt{mglsignature} environment for being considered useless, and to avoid interference with the detection of changes in MGL scripts, to speed up script writing and to make the package less resource-consuming}
% \changes{\textbf{v4.0 ------------}}{2015/08/17}{Remove the \doccommand{mglwidth} and \doccommand{mglheight} commands for being considered useless}
% \changes{\textbf{v4.0 ------------}}{2015/08/17}{Many improvements, including, but not limited to, speed up, increased coherence and cleanness of the code, less resource consumption}
% \changes{\textbf{v4.0 ------------}}{2015/08/17}{Many bugfixes}
%
%
% \changes{\textbf{v4.1 ------------}}{2016/01/28}{Add the command \doccommand{mglimgext} to specify locally the extension to save the generated graphics}
% \changes{\textbf{v4.1 ------------}}{2016/01/28}{Add the command \doccommand{mglswitch}, which replaces \doccommand{mgltexon} and \doccommand{mgltexoff}}
% \changes{\textbf{v4.1 ------------}}{2016/01/28}{Rename the commands \doccommand{mgltexon} as \doccommand{MGL@switch@on} and \doccommand{mgltexoff} as \doccommand{MGL@switch@off} in order to avoid the user from unpurposely overwriting them}
% \changes{\textbf{v4.1 ------------}}{2016/01/28}{The command \doccommand{mglcomments} has been reimplemented to accept one mandatory argument: \doccommand{mglcomments\{on\}} replaces the old \doccommand{mglcomments}, while \doccommand{mglcomments\{off\}} replaces the old \doccommand{mglnocomments}}
% \changes{\textbf{v4.1 ------------}}{2016/01/28}{Remove the command \doccommand{mglnocomments} (rendered useless by the new implementation of \doccommand{mglcomments})}
% \changes{\textbf{v4.1 ------------}}{2016/01/28}{Remove the command \doccommand{mglTeXwVer} (rendered useless by the implementation of the starred version of \doccommand{mglTeX})}
% \changes{\textbf{v4.1 ------------}}{2016/01/28}{Restore the command \doccommand{mglsettings}, which was unintentionally deleted in version~4.0}
% \changes{\textbf{v4.1 ------------}}{2016/01/28}{Expand the key-val list family for the command \doccommand{mglsettings}}
% \changes{\textbf{v4.1 ------------}}{2016/01/28}{Reimplement the \doccommand{@MGL@comments@} switch}
% \changes{\textbf{v4.1 ------------}}{2016/01/28}{A starred version of the command \doccommand{mglTeX} has been implemented, which prints the version of the package besides its name}
%
%
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{New package options \texttt{gray}, \texttt{color} to activate/deactivate gray-scale mode for graphics}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{New package options \texttt{0v}, \texttt{1v}, \texttt{2v} to select variant of arguments in MGL scripts}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{New package option \texttt{9q} for setting quality to \texttt{9} (for testing purposes of the author)}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{New commands: \doccommand{mglgray} (to activate/deactivate) gray-scale mode locally, and \doccommand{mglvariant} (to set variant of arguments in MGL scripts locally)}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{Rename environment \texttt{mglcommon} to \texttt{mglsetupscript} (\texttt{mglcommon} is still available, but deprecated)}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{Rename command \doccommand{mglcommonscriptname} to \texttt{mglsetupscriptname}}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{Rename command \doccommand{MGL@graph@ext} to \doccommand{MGL@imgext}}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{Rename family \texttt{MGL@keys} as \texttt{MGL@gr@keys} for consistency}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{Reorganize and update documentation}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{\mglTeX{} now depends on the \texttt{ifpdf} package}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{The MGL code line \texttt{setsize~600~400} is now automatically written to the main script in order for the scaling options and commands to work}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{Remove the \doccommand{MGL@setkeys} command, since it isn't needed as first thought}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{Some minor bugfixes}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{Change definition of \doccommand{mglcommentname} from \emph{MGL comment} to \emph{\mglTeX{} comment}}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{Rename \doccommand{MGL@document@scripts} to \doccommand{MGL@doc@scripts}}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{Rename \doccommand{MGL@script@name} tp \doccommand{MGL@script}}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{Introduce the concept of \emph{global}, \emph{local} and \emph{private} settings in the documentation}
%
% \GetFileInfo{mgltex.sty}
%
% \DoNotIndex{\def,\bgroup,\egroup,\newcommand,\newenvironment,\\,\@onlypreamble,\@undefined,\@vobeyspaces,\list}
% \DoNotIndex{\if,\else,\fi,\begingroup,\endgroup,\end,\edef,\xdef,\gdef,\scapechar,\active,\arabic,\catcode,\bfseries}
% \DoNotIndex{\@flushglue,\@for,\@ifnextchar,\@makeother,\{,\},\ ,\AtBeginDocument,\AtEndDocument,\centering}
% \DoNotIndex{\closein,\closeout,\csname,\endcsname,\CurrentOption,\DeclareGraphicsExtensions,\define@key,\DeclareOption}
% \DoNotIndex{\detokenize,\do,\dospecials,\endlinechar,\endlist,\escapechar,\ExecuteOptions,\expandafter,\footnotesize}
% \DoNotIndex{\framebox,\Huge,\ifeof,\IfFileExists,\ifx,\immediate,\include,\includegraphics,\item,\itemsep}
% \DoNotIndex{\itshape,\jobname,\labelsep,\leftskip,\let,\long,\mbox,\newcounter,\newread,\newtoks,\newwrite,\noexpand}
% \DoNotIndex{\obeyspaces,\openin,\openout,\PackageError,\PackageWarning,\parfillskip,\parindent,\parskip}
% \DoNotIndex{\PassOptionsToPackage,\ProcessOptions,\read,\relax,\RequirePackage,\rightskip,\setcounter,\setkeys,\setlength}
% \DoNotIndex{\space,\stepcounter,\string,\TeX,\the,\vbox,\verbatim@font,\write,\z@,\z@skip,\newif,\PackageInfo,\today}
% \DoNotIndex{\obeylines,\or,\ifcase,\small,\vskip,\section,\refstepcounter,\protect,\pretolerance,\penalty,\ttfamily}
% \DoNotIndex{\@@par,\@@,\@M,\@addtofilelist,\@auxout,\@bsphack,\@dottedtocline,\@empty,\@esphack,\@fornoop,\@fortmp}
% \DoNotIndex{\@gobble,\@ifundefined,\@mkboth,\@namedef,\@nil,\@nnil,\@noitemerr,\@plus,\@pnumwidth,\@secpenalty}
% \DoNotIndex{\@startsection,\@starttoc,\@tempdima,\@tempswatrue,\@totalleftmargin,\@unknownoptionerror,\@xobeysp}
% \DoNotIndex{\^,\addcontentsline,\addpenalty,\addvspace,\advance,\begin,\c@tocdepth,\center,\chapter,\cleaders}
% \DoNotIndex{\endcenter,\everypar,\fbox,\fboxrule,\frenchspacing,\g@addto@macro,\global,\hb@xt@,\hbadness,\hfil,\hfill}
% \DoNotIndex{\hrule,\hskip,\hss,\if@minipage,\if@tempswa,\ifhmode,\ifnum,\interlinepenalty,\itemindent,\kern,\l@chapter}
% \DoNotIndex{\l@section,\large,\leavevmode,\MakeUppercase,\newdimen,\nobreak,\nopagebreak,\normalfont,\null,\numberline}
% \DoNotIndex{\p@,\par,\unpenalty,\usecounter,\@ifstar,\^,\iffalse,\iftrue,\ifpdf}
%
% \title{The \textsf{\mglTeX} package\thanks{This document corresponds to \textsf{\mglTeX}~\fileversion, dated \filedate.}}
% \author{Diego Sejas Viscarra\\\texttt{dsejas.mathematics@gmail.com}}
%
% \maketitle
%
% \begin{abstract}
% \noindent MathGL is a fast and efficient library by Alexey Balakin for the creation of high-quality publication-ready scientific graphics. Although it defines interfaces for many programming languages, it also implements its own scripting language, called \emph{MGL}, which can be used independently. With the package \textsf{\mglTeX}, MGL scripts can be embedded within any \LaTeX{} document, and the corresponding images are automatically created and included.
%
% This manual documents the usage of the commands and environments of~\textsf{\mglTeX}.
% \end{abstract}
%
% \tableofcontents
%
% \section{Introduction}
% \noindent MathGL is a fast and efficient library by Alexey Balakin for the creation of high-quality publication-ready scientific graphics. It implements more than $50$ different types of graphics for 1d, 2d and 3d large sets of data. It supports exporting images to bitmap formats (PNG, JPEG, BMP, etc.), or vector formats (EPS, \TeX, SVG, etc.), or 3d image formats (STL, OBJ, XYZ, etc.), and even its own native 3d format, MGLD. MathGL also defines its own vector font specification format, and supports UTF-16 encoding with \TeX-like symbol parsing. It supports various kinds of transparency and lighting, textual formula evaluation, arbitrary curvilinear coordinate systems, loading of subroutines from .dll or .so libraries, and many other useful features.
%
% MathGL has interfaces for a wide variety of programming languages, such as C/C++, Fortran, Python, Octave, Pascal, Forth, and many others, but it also defines its own scripting language, called \emph{MGL}, which can be used to generate graphics independently of any programming language. The \textsf{\mglTeX} package adds support to embed MGL code inside \LaTeX{} documents, which is automatically extracted and executed, and the resulting images are included in the document.
%
% Besides the obvious advantage of having available all the useful features of MathGL, \textsf{\mglTeX} facilitates the maintenance of your document, since both code for text and code for graphics are contained in a single file.
%
% \subsection{Conventions and notations}
% \noindent For what's left of this manual, the symbols ``$\langle$'' and ``$\rangle$'' will enclose the description of an object that should be placed in that location; this is called a \emph{meta-variable}. For example, $\meta{text}$ is a meta-variable that indicates that in that location should be placed any form of text.
%
% In order to save space and time, some special conventions should be applied to meta-variables:
% \begin{enumerate}
% \item Any meta-variable that contain the word \emph{directory} indicates the name of a directory, in the form of an absolute or relative path, ending with the slash (``/'') character.
% \item Any meta-variable that contain the word \emph{subdirectory} indicates a relative path ending with the slash (``/'') character.
% \item \meta{$x_1\vert x_2\vert\ldots\vert x_n$} indicates that any of the values $x_1$, $x_2$, \ldots, $x_n$ can be placed there. A special case is \meta{$x_1\vert x_2\vert\ldots$}, where no upper limit is set.
% \item The possible values of a meta-variable could also be indicated by a property. For example \meta{$x:x>0$} indicates that any positive value can be used in that location.
% \item A meta-variable of the form \meta{list of something} or \meta{something list} indicate a comma-separated list of values of type $\meta{something}$; if only one value is used, no comma is needed.
% \item A meta-variable with underscores (``|_|'') in its description indicate that spaces should not be used in that location.
% \item \meta{key-val list} refers to a list of \meta{key}=\meta{value} pairs of options, where \meta{key} is a keyword name for an option and \meta{value} is a value assigned to it.
% \end{enumerate}
%
% As is conventional for \LaTeX{} packages, the environments and commands defined by \textsf{\mglTeX} accept optional commands inside brackets ("|[|" and "|]|"), and mandatory arguments inside curly braces ("|{|" and "|}|").
%
% While reading the following, it must be noted that most of \textsf{\mglTeX} settings have three modes: global, local and private. A setting is \emph{global} if it applies to the whole document, it is \emph{local} if it applies to the document from one point onwards, and it is \emph{private} if it applies only to a particular MGL script. Global settings are set thorugh package options or with the command |\mglsettings| (explained later), local settings have associated commands (subsection \ref{local setts}), and private settings are specified as optional arguments for environments and commands. An example of this would be the package option |4q|, the command |\mglquality{4}|, and the optional argument for environments and commands |quality=4|, to set the quality for graphics to |4| in the three different modes, respectively.
%
% \section{Usage}
% \noindent The simplest way to load \textsf{\mglTeX} to a \LaTeX{} document is to write the command
% \begin{center}
% |\usepackage{mgltex}|
% \end{center}
% in the preamble. Alternatively, one can pass a number of options to the package by means of the syntax
% \begin{center}
% |\usepackage|\oarg{options list}|{mgltex}|,
% \end{center}
% where \meta{options list} can contain one or more of the following options:
% \begin{itemize}
% \item \textbf{draft:} The generated images won't be included in the document. This option is useful when fast compilation of the document is needed.
% \item \textbf{final:} Overrides the |draft| option.
% \item \textbf{on:} To rewrite, recompile and include the changed MGL scripts and/or corresponding graphics.
% \item \textbf{off:} To avoid creation, compilation and/or inclusion of the MGL scripts and corresponding images.
% \item \textbf{comments:} To allow the contents of the |mglcomment| environments to be shown in the \LaTeX{} document.
% \item \textbf{nocomments:} To avoid showing the contents of the |mglcomment| environments in the \LaTeX{} document.
% \item \textbf{gray:} To create the MGL graphics in gray-scale mode.
% \item \textbf{color:} To create the MGL graphics in color mode.
% \item \textbf{1x, \ldots, 9x:} To specify the scale for the creation of graphics (|1x| is normal scaling, |2x| is twice as bigger, etc).
% \item \textbf{0q, \ldots, 9q:} To specify the quality for the creation of graphics. An info message indicating the characteristics of the chosen quality is printed in the .log file according to the following table:
% \begin{center}
% \DeleteShortVerb{\|}
% \begin{tabular}{|c|l|}
% \hline
% Quality & Description\\
% \hline
% \hline
% $0$ & No face drawing (fastest)\\
% \hline
% $1$ & No color interpolation (fast)\\
% \hline
% $2$ & High quality (normal)\\
% \hline
% $3$ & High quality with 3d primitives (not implemented yet)\\
% \hline
% $4$ & No face drawing, direct bitmap drawing (low memory usage)\\
% \hline
% $5$ & No color interpolation, direct bitmap drawing (low memory usage)\\
% \hline
% $6$ & High quality, direct bitmap drawing (low memory usage)\\
% \hline
% $7$ & High quality with 3d primitives, direct bitmap drawing\\
% & (not implemented yet)\\
% \hline
% $8$ & Draw dots instead of primitives (extremely fast)\\
% \hline
% $9$ & No drawing (for testing purposes)\\
% \hline
% \end{tabular}
% \MakeShortVerb{\|}
% \end{center}
% \item \textbf{0v, 1v, 2v:} To set the default variant of arguments for the MGL commands.
% \item \textbf{png, jpg, jpeg:} To export images to a bitmap format.
% \item \textbf{eps, epsz:} To export to uncompressed/compressed vectorial EPS format.
% \item \textbf{bps, bpsz:} To export to uncompressed/compressed bitmap EPS format.
% \item \textbf{pdf:} To export to 3D PDF format.
% \item \textbf{tex:} To export to \LaTeX{}/\emph{tikz} document.
% \end{itemize}
% If two or more mutually exclusive options are specified, only the last one will be used by \textsf{\mglTeX}. For example, if one specifies the options |0q|, |3q| and |8q|---in that order---, then the quality will be set to $8$.
%
% Observe the |off| option is similar to the |draft| option, with the exception that |draft| deactivates inclusion of graphics for the \textsf{\mglTeX} and \textsf{graphicx} packages simultaneously, while the |off| option only deactivates \textsf{\mglTeX} functionalities (creation and/or inclusion of scripts and graphics), not affecting \textsf{graphicx}. This could be useful to recognize which images are created with MGL, and which are only included. Another possible use for this option is to avoid recompilation of scripts when they must be constantly changed until their final version.\footnote{\textsf{\mglTeX} has a convinient recompilation-decision algorithm that enables recompilation for changed scripts only (see subsection \ref{subsection: recompilation decision}).}
%
% There are two ways to compile a document with \textsf{\mglTeX}: The first way is to run
% \begin{center}
% |latex --shell-escape |\meta{document}|.tex|
% \end{center}
% three times, since the first run will detect changes in the scripts; the second run will extract the MGL code, execute it and include some of the resulting graphics, while the third run will include the remaining graphics. The second way is to run
% \begin{center}
% |latex |\meta{document}|.tex|
% \end{center}
% twice to detect changes in MGL code and to extract it, then compile the generated scripts with the program |mglconv| (part of MathGL bundle), and execute |latex |\meta{document}|.tex| once more to include the graphics.\footnote{If no changes were made to scripts intended to create graphics, only one \LaTeX{} run is needed.} (More on the recompilation-decision mechanism of \textsf{\mglTeX} can be found in subsection~\ref{subsection: recompilation decision}.)
%
% \subsection{Warning for the user}\label{subsection: warning}
% Before we continue the description of the package, it must be pointed out that \textsf{\mglTeX} assummes that the command |\end{|\meta{MGL environment}|}|, that ends the corresponding \meta{MGL environment}, occupies its own physical line of \LaTeX{} code. So the correct forms of use of environments are the following:
% \begin{quote}
%|\begin{|\meta{MGL environment}|}|\\
%\meta{contents of the environment}\\
%|\end{|\meta{environment}|}|
% \end{quote}
% and
% \begin{quote}
%|\begin{|\meta{MGL environment}|}|\meta{contents of the environment}\\
%|\end{|\meta{environment}|}|
% \end{quote}
% The following form will cause problems:
% \begin{quote}
%|\begin{|\meta{MGL environment}|}|\meta{contents of the environment}|\end{|\meta{MGL environment}|}|
% \end{quote}
%
% \textsf{\mglTeX} depends on the \textsf{verbatim} package to define its environments. One of the characteristics of \textsf{verbatim} is that it transcripts everything contained between the begining and the end of an environment, including spaces before an |\end{|\meta{MGL environment}|}| command. This should not be a problem, except for the fact that \textsf{\mglTeX} has a mechanism to detect changes in MGL scripts in order to recompile them (see subsection \ref{subsection: recompilation decision}), and the mentioned spaces in the scripts and their counterparts in the \LaTeX{} document can't be recognized properly as identical when compared, causing the package to recompile the scripts even when they haven't changed, rendering the mechanism useless.\footnote{It is currently unknown for the author why this spaces aren't detected properly. Help would be appreciated.} In order to avoid this glitch, the facilities provided by \textsf{verbatim} have been adapted to ignore everything before |\end{|\meta{MGL environment}|}|, including spaces and, unfortunately, MGL code.
%
% It should also be pointed out that the default behavior of the |verbatim| package makes the following form to ignore the \meta{text} after the |\end|\meta{MGL environment}, issuing a warning.
% \begin{quote}
%|\begin{|\meta{MGL environment}|}|\\
%\meta{contents of the environment}\\
%|\end{|\meta{MGL environment}|}|\meta{text}
% \end{quote}
%
% \subsection{Environments for MGL code embedding}
% \DescribeEnv{mgl}\noindent The main environment defined by \textsf{\mglTeX} is |mgl|. It extracts its contents to a main script, called \meta{main\_script\_name}.mgl, where \meta{main\_script\_name} stands for a name specified by the user with the |\mglname| command (explained later), or the name of the \LaTeX{} document being executed otherwise; this script is compiled, and the corresponding image is included.
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\begin{mgl}|\oarg{key-val list}\\[0.5em]
% \hss\meta{MGL code}\hss\\[0.5em]
% |\end{mgl}|\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
% Here, \meta{key-val list} can have the following optional arguments:
% \begin{itemize}
% \item \textbf{bb, bbllx, bblly, bburx, bbury, natwidth, natheight, hiresbb, viewport, trim, angle, origin, width, height, totalheight, keepaspectratio, scale, clip, draft, type, ext, read, command:} These are the same options of the |\includegraphics| command from the \textsf{graphicx} package.
% \item \textbf{gray:} Can be used to activate (|gray=on| or |gray=1|) or deactivate (|gray=off| or |gray=0|) gray-scale mode privately (only for the current graphic).
% \item \textbf{mglscale:} Any positive value for this option is used to physically scale the resulting image file, i.g., |mglscale=2| will create an image file twice as bigger.
% \item \textbf{quality:} Sets the quality of the current graphic. Valid values are integers between |0| and |9|.
% \item \textbf{variant:} Sets the variant of argument for the commands in the current script.
% \item \textbf{imgext:} Can be used to set the extension for the current image.
% \item \textbf{label:} Can be used to indicate a name for the corresponding graphic (otherwise, an automatic naming will be applied)
% \end{itemize}
%
% \DescribeEnv{mgladdon} This environment adds its contents to the document's main script, but it doesn't produce any image. It doesn't require any kind of arguments. It is useful to add ``complementary code'', like instructions to load dynamic libraries, set default size for the graphics, etc.
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\begin{mgladdon}|\\[0.5em]
% \hss\meta{MGL code}\hss\\[0.5em]
% |\end{mgladdon}|\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
%
% \DescribeEnv{mglfunc} Is used to define MGL functions within the document's main script. It takes one mandatory argument, which is the name of the function, plus one optional argument, which specifies the number of arguments of the function (the default is $0$). The environment needs to contain only the body of the function, since the lines ``func \meta{function\_name} \meta{number of arguments}'' and ``return'' are appended automatically at the beginning and the end, respectively. The resulting code is written at the end of the document's main script, after the |stop| command, which is also written automatically.
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\begin{mglfunc}|\oarg{number of arguments}\marg{function\_name}\\[0.5em]
% \hss\meta{MGL function body}\hss\\[0.5em]
% |\end{mglfunc}|\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
%
% \DescribeEnv{mglcode} It has the same function as the |mgl| environment, but the corresponding code is written to a separate script, whose name is specified as mandatory argument. It accepts the following optional arguments:
% \begin{itemize}
% \item \textbf{bb, bbllx, bblly, bburx, bbury, natwidth, natheight, hiresbb, viewport, trim, angle, origin, width, height, totalheight, keepaspectratio, scale, clip, draft, type, ext, read, command:} These are the same options of the |\includegraphics| command from the \textsf{graphicx} package.
% \item \textbf{gray:} Can be used to activate (|gray=on| or |gray=1|) or deactivate (|gray=off| or |gray=0|) gray-scale mode privately (only for the current graphic).
% \item \textbf{mglscale:} Any positive value for this option is used to physically scale the resulting image file, i.g., |mglscale=2| will create an image file twice as bigger.
% \item \textbf{quality:} Sets the quality of the current graphic. Valid values are integers between |0| and |9|.
% \item \textbf{variant:} Sets the variant of argument for the commands in the current script.
% \item \textbf{imgext:} Can be used to set the extension for the current image.
% \end{itemize}
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\begin{mglcode}|\oarg{key-val list}\marg{script\_name}\\[0.5em]
% \hss\meta{MGL code}\hss\\[0.5em]
% |\end{mglcode}|\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
%
% \DescribeEnv{mglscript} The code within |mglscript| is written to a script whose name is specified as mandatory argument, but no image is produced. It is useful for creation of MGL scripts which can be later post-processed by another package, like \textsf{listings} or \textsf{pygments}.
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\begin{mglscript}|\marg{script\_name}\\[0.5em]
% \hss\meta{MGL code}\hss\\[0.5em]
% |\end{mglscript}|\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
%
% \DescribeEnv{mglsetupscript} This is used to create a common ``setup'' script to define constants, parameters, etc. that will be available to the others.
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\begin{mglsetupscript}|\\[0.5em]
% \hss\meta{MGL code}\hss\\[0.5em]
% |\end{mglsetupscript}|\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
% If called more than once, it will overwrite the setup code. Also note that it should be used only to define constants, parameters and things like that, but not graphical objects like axis or grids, because the |mgl| environment clears every graphical object before creating the image.\footnote{This problem occurs only with the \texttt{mgl} environment, so you could use \texttt{mglcommon} to create many graphics with the same axis, grid, etc., with environments like \texttt{mglcode}, but in that case the best option is to use the \texttt{mglsetup} environment together with the \texttt{\textbackslash{}mglplot} command.}
%
% For example, one could write
% \begin{quote}
% |\begin{mglsetupscript}|\\
% |define gravity 9.81 # [m/s^2]|\\
% |\end{mglsetupscript}|
% \end{quote}
% to make the constant \emph{gravity} available to every script.
%
% \DescribeEnv{mglcommon} This is a synomyn for the |mglsetupscript| environment. It is and will always be kept in \textsf{\mglTeX} for backwards compatibility with older versions of the package, but its use is \emph{deprecated}.
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\begin{mglcommon}|\\[0.5em]
% \hss\meta{MGL code}\hss\\[0.5em]
% |\end{mglcommon}|\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
%
% \subsection{Fast creation of graphics}
% \noindent\textsf{\mglTeX} defines a convenient way to work with many graphics that have exactly the same settings (same rotation angles, same type of grid, same lighting, etc.): instead of writing repetitive code every time it's needed, it can be stored inside a |mglsetup| environment, and then can be used when needed with the |\mglplot| command.
%
% \DescribeEnv{mglsetup} This environment is defined as a special case of the |mglfunc| environment. It accepts one mandatory argument, which is a keyword (name) associated to the corresponding block of code (MGL function body).
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\begin{mglsetup}|\marg{key\_word}\\[0.5em]
% \hss\meta{MGL code}\hss\\[0.5em]
% |\end{mglsetup}|\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
%
% \DescribeMacro{\mglplot} This command is used for fast generation of graphics with default settings, and can be used in parallel with the |mglsetup| environment. It accepts one mandatory argument which consists of MGL instructions, separated by the symbol ``:'', and can span through various text lines. It accepts the following optional arguments:
% \begin{itemize}
% \item \textbf{bb, bbllx, bblly, bburx, bbury, natwidth, natheight, hiresbb, viewport, trim, angle, origin, width, height, totalheight, keepaspectratio, scale, clip, draft, type, ext, read, command:} These are the same options of the |\includegraphics| command from the \textsf{graphicx} package.
% \item \textbf{gray:} Can be used to activate (|gray=on| or |gray=1|) or deactivate (|gray=off| or |gray=0|) gray-scale mode privately (only for the current graphic).
% \item \textbf{mglscale:} Any positive value for this option is used to physically scale the resulting image file, e.g., |mglscale=2| will create an image file twice as bigger.
% \item \textbf{quality:} Sets the quality of the current graphic. Valid values are integers between |0| and |9|.
% \item \textbf{variant:} Sets the variant of argument for the commands in the current script.
% \item \textbf{imgext:} Can be used to set the extension for the current image.
% \item \textbf{label:} Can be used to indicate a name for the corresponding graphic (otherwise, an automatic naming will be applied)
% \item \textbf{setup:} Specifies a keyword associated to a |mglsetup| block, which will be executed before the code in the mandatory argument.
% \item \textbf{separator:} Specifies a text symbol that will break the code in the mandatory argument into a new physical line in the main script every time is encountered.
% \end{itemize}
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\mglplot|\oarg{key-val list}\marg{MGL code}\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
%
% \subsection{Verbatim-like environments}
% \noindent The main purpose of these environments is to typeset their contents to the \LaTeX{} document, elegantly separated from the rest of the text. They have two versions: an unstarred version which can be listed later with the |\listofmglscripts| command (explained later), and a starred version which won't be listed.
%
% Although these environments are intended to mimic the behavior of the |verbatim| environment from \LaTeX{}, there is an important difference, namely, long lines will be broken when the page margin is reached. This intended behavior is set because a language like MGL can easily have very long lines of code, like textual formulas, vectors input as lists of values, etc. Of course, no hyphenation will be performed, but the code will be indented in the second, third, etc. continuation lines by an amount specified by |\mglbreakindent| (explained later).
%
% \DescribeEnv{mglblock}\DescribeEnv{mglblock*} Besides typesetting its contents to the document, |mglblock| creates a script whose name is specified as mandatory argument. It accepts one optional argument:
% \begin{itemize}
% \item \textbf{lineno:} Used to activate (|lineno=true| or simply |lineno|) or deactivate (|lineno=false|) line numbering inside the environment.
% \end{itemize}
% By default, each line of code is numbered.
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\begin{mglblock}|\oarg{key-val list}\marg{script\_name}\\[0.5em]
% \hss\meta{MGL code}\hss\\[0.5em]
% |\end{mglblock}|\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\begin{mglblock*}|\oarg{key-val list}\marg{script\_name}\\[0.5em]
% \hss\meta{MGL code}\hss\\[0.5em]
% |\end{mglblock*}|\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
% The ouput looks like this:
% \begin{quote}
% \makeatletter
% \MGL@set@script@name{example_script}%
% \refstepcounter{MGL@verb@no}%
% \addcontentsline{lms}{MGL@script}{\protect\numberline{\theMGL@verb@no.}{\ttfamily\protect\detokenize{\MGL@script.mgl}}}%
% \setcounter{MGL@line@no}{0}%
% \list{\mgllinenostyle\arabic{MGL@line@no}.}{}%
% \MGL@set@pseudo@verb@env
% \fboxrule=\mgllinethickness%
% \item[\MGL@line@sep]\fbox{\bfseries\ttfamily\expandafter\detokenize\expandafter{\MGL@script.mgl}}\hskip\labelsep\MGL@line@sep\par\par%
% \stepcounter{MGL@line@no}%
% \item new x 50 40 '0.8*sin(pi*x)*sin(pi*(y+1)/2)'
% \stepcounter{MGL@line@no}%
% \item new y 50 40 '0.8*cos(pi*x)*sin(pi*(y+1)/2)'
% \stepcounter{MGL@line@no}%
% \item new z 50 40 '0.8*cos(pi*(y+1)/2)'
% \stepcounter{MGL@line@no}%
% \item title 'Parametric surface' : rotate 50 60 : box
% \stepcounter{MGL@line@no}%
% \item surf x y z 'BbwrR'
% \item[\MGL@line@sep]\hskip-\labelsep\MGL@line@sep%
% \endlist%
% \end{quote}
%
% \DescribeEnv{mglverbatim}\DescribeEnv{mglverbatim*} This environment only typesets its contents to the \LaTeX{} document without creating any script. It accepts two optional arguments
% \begin{itemize}
% \item \textbf{lineno:} Used to activate (|lineno=true| or simply |lineno|) or deactivate (|lineno=false|) line numbering inside the environment.
% \item \textbf{label:} Used to specify a name associated to the corresponding code.
% \end{itemize}
% The default behavior is to number each line of code.
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\begin{mglverbatim}|\oarg{key-val list}\\[0.5em]
% \hss\meta{MGL code}\hss\\[0.5em]
% |\end{mglverbatim}|\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\begin{mglverbatim*}|\oarg{key-val list}\\[0.5em]
% \hss\meta{MGL code}\hss\\[0.5em]
% |\end{mglverbatim*}|\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
% The output looks like this without |label|:
% \begin{quote}
% \makeatletter
% \setcounter{MGL@line@no}{0}%
% \list{\mgllinenostyle\arabic{MGL@line@no}.}{}%
% \MGL@set@pseudo@verb@env
% \fboxrule=\mgllinethickness%
% \MGL@set@script@name{\mglverbatimname}%
% \item[\MGL@line@sep]\hskip-\labelsep\MGL@line@sep%
% \refstepcounter{MGL@verb@no}%
% \addcontentsline{lms}{MGL@script}{\protect\numberline{\theMGL@verb@no.}{\ttfamily\protect\detokenize{\MGL@script}}}%
% \stepcounter{MGL@line@no}%
% \item new x 50 40 '0.8*sin(pi*x)*sin(pi*(y+1)/2)'
% \stepcounter{MGL@line@no}%
% \item new y 50 40 '0.8*cos(pi*x)*sin(pi*(y+1)/2)'
% \stepcounter{MGL@line@no}%
% \item new z 50 40 '0.8*cos(pi*(y+1)/2)'
% \stepcounter{MGL@line@no}%
% \item title 'Parametric surface' : rotate 50 60 : box
% \stepcounter{MGL@line@no}%
% \item surf x y z 'BbwrR'
% \item[\MGL@line@sep]\hskip-\labelsep\MGL@line@sep%
% \endlist%
% \end{quote}
% \noindent If a |label| is specified, the output will look exactly as that of the |mglblock| environment.
%
% \DescribeEnv{mglcomment} This environment is used to embed comments. The comment won't be visible in the case of the user passing the option |nocomments| to the package, but it will be typeset \emph{verbatim} to the document if the user passes the option |comments|.
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\begin{mglcomment}|\\[0.5em]
% \hss\meta{Comment}\hss\\[0.5em]
% |\end{mglcomment}|\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
% If the user requests visible comments, this will result in the appearance of something like the following in the \LaTeX{} document:
% \begin{quote}
% \makeatletter
% \list{}{}%
% \MGL@set@pseudo@verb@env
% \item\hskip-\labelsep<\MGL@dash@sep\mglcommentname\MGL@dash@sep>%
% \item This is a mglTeX comment
% \item\hskip-\labelsep<\MGL@dash@sep\mglcommentname\MGL@dash@sep>%
% \endlist%
% \end{quote}
%
% \subsection{Working with external scripts}
% \noindent \textsf{\mglTeX} provides convenient ways to deal with external scripts (scripts that exist in their own files, independently of the \LaTeX{} document, like scripts sent by a colleague or created before the actual writing of the \LaTeX{} document, etc). It must be noted, however, that the package works on the suposition that these scripts are in their final version, so no change detection is performed on them. If a external script is changed, the corresponding graphic must be manually deleted in oreder to force recompilation.
%
% \DescribeMacro{\mglgraphics} This command takes the name of an external MGL script as mandatory argument, which will be automatically executed, and the resulting image will be included. The same optional arguments accepted by this command are:
% \begin{itemize}
% \item \textbf{bb, bbllx, bblly, bburx, bbury, natwidth, natheight, hiresbb, viewport, trim, angle, origin, width, height, totalheight, keepaspectratio, clip, draft, type, ext, read, command:} These are the same options of the |\includegraphics| command from the \textsf{graphicx} package.
% \item \textbf{gray:} Can be used to activate (|gray=on| or |gray=1|) or deactivate (|gray=off| or |gray=0|) gray-scale mode privately (only for the current graphic).
% \item \textbf{mglscale:} Any positive value for this option is used to physically scale the resulting image file, i.g., |mglscale=2| will create an image file twice as bigger.
% \item \textbf{quality:} Sets the quality of the current graphic. Valid values are integers between |0| and |9|.
% \item \textbf{variant:} Sets the variant of argument for the commands in the current script.
% \item \textbf{imgext:} Can be used to set the extension for the current image.
% \item \textbf{path:} Can be used to specify the location of the script.
% \end{itemize}
%
% \DescribeMacro{\mglinclude}\DescribeMacro{\mglinclude*} This command is the equivalent of the |mglverbatim| environment for external scripts. It takes one mandatory argument, which is the name of a MGL script, which will be automatically transcript \emph{verbatim} on the \LaTeX{} document. It accepts the following optional arguments:
% \begin{itemize}
% \item \textbf{lineno:} Used to activate (|lineno=true| or simply |lineno|) or deactivate (|lineno=false|) line numbering inside the environment.
% \item \textbf{path:} Can be used to specify the location of the script.
% \end{itemize}
% The unstarred version of this command will be listed if |\listofmglscripts| is used (explained later), while the starred version won't.
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\mglinclude|\oarg{key-val list}\marg{script\_name}\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\mglinclude*|\marg{script\_name}\oarg{key-val list}\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
%
% \subsection{Additional commands}
% \DescribeMacro{\listofmglscripts}\noindent Opens a new section or chapter---depending on the \LaTeX{} class used---, where all the scripts that have been transcript in the document with the unstarred versions of the |mglblock| and |mglverbatim| environments, and the |\mglinclude| command, are listed. In case a |mglverbatim| is used, but no |label| is specified, the default name to display is specified by the |\mglverbatimname| macro (explained later), otherwise, the corresponding label is typeset.
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\listofmglscripts|\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
% The output is like this:
% \begin{center}
% \begin{minipage}{0.9\textwidth}
% \listofmglscripts
% \end{minipage}
% \end{center}
%
% \DescribeMacro{\mglTeX}\DescribeMacro{\mglTeX*} This command just pretty-prints the name of the package, i.e., the logo:
% \begin{center}
% \Huge\mglTeX
% \end{center}
% The starred version will also print the version in a coherent manner.
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\mglTeX|\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\mglTeX*|\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
%
% In an environment where the typesetting of the logo is impossible (a text editor, for instance), it can (and should) be replaced by ``mglTeX''.
%
% \subsection{Local settings commands}\label{local setts}
% \noindent These commands are intended to be equivalent to the package options, but with a local-only effect, meaning that the new settings are applied from the point these commands are used onward.
%
% \DescribeMacro{\mglswitch} This command is equivalent to the package options |on| and |off|, depending on the argument passed.
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\mglswitch{|\meta{off\,$\vert$on\,$\vert$0\,$\vert$1}|}|\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
%
% Observe that |\mglswitch{on}| and |\mglswitch{off}| can be used to save time when writing a document, wrapping a section with them, avoiding recompilation of the corresponding scripts.
%
% \DescribeMacro{\mglcomments} This command is equivalent to the package options |comments| and |nocomments|, depending on the argument passed.
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\mglcomments{|\meta{off\,$\vert$on\,$\vert$0\,$\vert$1}|}|\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
%
% \DescribeMacro{\mglgray} It is equivalent to the package options |gray| and |color|, depending on the argument passed.
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\mglgray{|\meta{off\,$\vert$on\,$\vert$0\,$\vert$1}|}|\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
%
% \DescribeMacro{\mglscale} Can be used to specify the default scaling for the creation of MGL graphics (1 is normal scaling, 2 is twice as bigger, etc.).
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\mglscale|\marg{$x:x>0$}\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
%
% \DescribeMacro{\mglquality} The default quality for the creation of MGL graphics can be specified locally with this command. An info message will be printed in the |.log| file indicating the characteristics of the chosen value, according to the following table:
% \begin{center}
% \DeleteShortVerb{\|}
% \begin{tabular}{|c|l|}
% \hline
% Quality & Description\\
% \hline
% \hline
% $0$ & No face drawing (fastest)\\
% \hline
% $1$ & No color interpolation (fast)\\
% \hline
% $2$ & High quality (normal)\\
% \hline
% $3$ & High quality with 3d primitives (not implemented yet)\\
% \hline
% $4$ & No face drawing, direct bitmap drawing (low memory usage)\\
% \hline
% $5$ & No color interpolation, direct bitmap drawing (low memory usage)\\
% \hline
% $6$ & High quality, direct bitmap drawing (low memory usage)\\
% \hline
% $7$ & High quality with 3d primitives, direct bitmap drawing\\
% & (not implemented yet)\\
% \hline
% $8$ & Draw dots instead of primitives (extremely fast)\\
% \hline
% $9$ & No drawing (for testing purposes)\\
% \hline
% \end{tabular}
% \MakeShortVerb{\|}
% \end{center}
% If a non available quality is chosen, it will be changed to $2$ (the default), and a warning message will be issued for the user.
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\mglquality|\marg{0\,$\vert$1\,$\vert$\ldots\,$\vert$9}\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
%
% \DescribeMacro{\mglvariant} It is useful to set the default variant of arguments for MGL commands.
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\mglvariant|\marg{0\,$\vert$1\,$\vert$\ldots}\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
%
% \DescribeMacro{\mglimgext} Can be used to specify the extension to save graphics.
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\mglimgext|\marg{image extension}\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
%
% \DescribeMacro{\mglname}\noindent If used in the preamble of the document this commands just sets the name of the. If used after the |\begin{document}| command, it will force the closure of the current main script, create the corresponding graphics, and start a new main script with the specified name.
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\mglname|\marg{main\_script\_name}\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
%
% The use of this command is encouraged when writing large documents, like books or thesis, to create a main script per document block (section, chapter, part, etc.). Since the |mgl| environment and the |\mglplot| command use an internal counter to automatically name scripts, unless the |label| option is used; if a new script is added this way to the document, it will alter the original numbering, causing \textsf{\mglTeX} to recompile the scripts from that point on (for more details, read subsection \ref{subsection: recompilation decision}). If the |\mglname| command is used, only the scripts of the current document block will be recompiled.
%
% \subsection{Advanced settings commands}
% \noindent Although \textsf{\mglTeX} is completely functional without any further set up, there are some parameters of its behavior that could be useful to modify. The following commands must be used in the preamble of the document only, since the first MGL script is created at the moment of the |\begin{document}| command, and otherwise they could create weird errors during compilation; trying to use them somewhere else will produce an error.
%
% \DescribeMacro{\mgldir} This command can be used to specify the main working directory for \textsf{\mglTeX}. Inside it, the scripts, backup files and graphics will be created, or can be separated inside subdirectories. This is useful, for example, to avoid many scripts and graphics from polluting the directory where the \LaTeX{} document is.
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\mgldir|\marg{main\_directory}\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
%
% \DescribeMacro{\mglscriptsdir} It specifies the subdirectory inside \mglTeX's \meta{main\_directory} where the MGL scripts will be created.
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\mglscriptsdir|\marg{scripts\_subdirectory}\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
%
% \DescribeMacro{\mglgraphicsdir} It specifies the subdirectory inside \mglTeX's \meta{main\_directory} where the MGL graphics will be created, including the ones from external scripts (not embedded inside the \LaTeX{} document).
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\mglgraphicsdir|\marg{graphics\_subdirectory}\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
%
% \DescribeMacro{\mglbackupsdir} It specifies the subdirectory inside \mglTeX's \meta{main\_directory} where backups for the MGL scripts will be created.
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\mglbackupsdir|\marg{backups\_subdirectory}\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
%
% The above commands can be used in various combinations. For example, if none of them is used, the scripts, graphics and backups will be created inside the same path where the \LaTeX{} document is being compiled; if only |\mgldir| is used, they will be created inside \meta{main\_directory}; if only |\mgldir| and |\mglscriptsdir| are used, the scripts will be created inside \meta{main\_directory}\meta{scripts\_subdirectory}, while the graphics and backups will be inside \meta{main\_directory} only; if |\mgldir| isn't used, but the other commands are, the \meta{scripts\_subdirectory}, \meta{graphics\_subdirectory} and \meta{backups\_subdirectory} folders will be inside the folder where the \LaTeX{} document is being compiled.
%
% \DescribeMacro{\mglpaths} In case of having external MGL scripts, it is not recommended to place them inside the same location as where the embedded scripts are extracted, since they could be accidentally overwritten or deleted by the user; they should be separated in a folder which can be specified in the form of an absolute or relative path using this command.
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\mglpaths|\marg{directory list}\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
% This command can be used many times or can be used to specify many paths at once. In the case of using it many times, each call will add the new directory or directories to the list of searching paths.
%
% \DescribeMacro{\mglsettings} This command has been added for the confort of the user, since it handles all of the basic and advanced settings of \textsf{\mglTeX}, as an alternative to some package options and commands. It takes one mandatory argument which should be a list of \meta{key}=\meta{value} pairs, according to the following table:
% \begin{center}
% \DeleteShortVerb{\|}
% \begin{tabular}{|l|l|l|}
% \hline
% \textbf{Key} & \textbf{Value} & \textbf{Description}\\
% \hline
% \hline
% dir & \meta{main\_directory} & The main working directory\\
% \hline
% scriptsdir & \meta{scripts\_subdirectory} & The subdirectory for scripts creation\\
% \hline
% graphicsdir & \meta{graphics\_subdirectory} & The subdirectory for graphics creation\\
% \hline
% backupsdir & \meta{backups\_subdirectory} & The subdirectory for backups creation\\
% \hline
% paths & \meta{directory list} & Paths to external scripts\\
% \hline
% switch & \meta{off\,$\vert$on\,$\vert$0\,$\vert$1} & Turn off/on \mglTeX\\
% \hline
% comments & \meta{off\,$\vert$on\,$\vert$0\,$\vert$1} & Turn off/on comments\\
% \hline
% gray & \meta{off\,$\vert$on\,$\vert$0\,$\vert$1} & Turn off/on gray-scale mode\\
% \hline
% mglscale & \meta{$x:x>0$} & Scale for creation of graphics\\
% \hline
% quality & \meta{0\,$\vert$1\,$\vert$\ldots\,$\vert$9} & Quality for creation of graphics\\
% \hline
% variant & \meta{0\,$\vert$1\,$\vert$\ldots} & Variant of arguments for MGL commands\\
% \hline
% imgext & \meta{image extension} & Extension for creation of graphics\\
% \hline
% \end{tabular}
% \MakeShortVerb{\|}
% \end{center}
% \begin{center}
% \begin{tabular}{l}
% \hline\\[-0.75em]
% |\mglsettings|\marg{key-val list}\\[0.25em]
% \hline
% \end{tabular}
% \end{center}
%
% \subsection{User-definable macros}
% \noindent There are macros that the user is allowed to modify in order to customize some aspects of the behavior of \textsf{\mglTeX}. For example, if writing in spanish, french or russian, the user would like to modify the name of the common script, the words typeset in the separator lines of mglTeX comments, the name of the list of MGL scripts, etc.
%
% \DescribeMacro{\mglsetupscriptname} It is the name for the common setup script that takes the contents of the |mglseuptscipt| or |mglcommon| environments. The default name is defined by
% \begin{quote}
% |\def\mglsetupscriptname{MGL_setup_script}|
% \end{quote}
%
% \DescribeMacro{\mglcommentname} This macro expands to the words typeset before and after a \textsf{\mglTeX} comment, in the middle of the separator lines. The default words are set by
% \begin{quote}
% |\def\mglcommentname{\mglTeX{} comment}|
% \end{quote}
%
% \DescribeMacro{\listofmglscriptsname} This is the name of the section/chapter created by the command |\listofmglscripts|. The default is set by
% \begin{quote}
% |\def\listofmglscriptsname{List of MGL scripts}|
% \end{quote}
%
% \DescribeMacro{\mglverbatimname} This is the default name to be printed in the list of MGL scripts for scripts created with the unstarred version of |mglverbatim|, for which a |label| hasn't been specified. The default is
% \begin{quote}
% |\def\mglverbatimname{(Unnamed MGL script)}|
% \end{quote}
%
% \DescribeMacro{\mgllinenostyle} Indicates the style for typeseting the line numbers inside the |mglblock| and |mglverbatim| environments, and the |\mglinclude| command. The default is
% \begin{quote}
% |\def\mgllinenostyle{\footnotesize}|
% \end{quote}
%
% \DescribeMacro{\mgldashwidth} The dashes of the separator lines for the |mglcomment| environment are contained inside boxes whose width is specified by this macro. For practical purposes, this dimension can be used to increase/decrease the space between the dashes. The default is
% \begin{quote}
% |\mgldashwidth=0.75em|
% \end{quote}
% It is recommended to use font-dependent units for this dimension, like |em|, just in case the font is changed later, so it adapts to the new metric.\footnote{A rule of thumb is to use \texttt{em} units for horizontal dimensions, and \texttt{ex} units for vertical dimensions.}
%
% \DescribeMacro{\mgllinethickness} It is the thickness of the separator lines for the |mglblock| and |mglverbatim| environments, and the |\mglinclude| command. The default is
% \begin{quote}
% |\mgllinethickness=0.25ex|
% \end{quote}
% It is also recommended to use font-dependent units for this dimension, like |ex|.
%
% \DescribeMacro{\mglbreakindent} \textsf{\mglTeX} allows line breaking inside verbatim-like environments and commands. When a line of code is broken, |\mglbreakindent| is the indentation of the second, third, etc. continuation lines. The default is
% \begin{quote}
% |\mglbreakindent=1em|
% \end{quote}
% Once more, font-dependent units are encourage.
%
% \section{Behavior of \textsf{\mglTeX}}
% \noindent \textsf{\mglTeX} has many convenient features designed for the comfort of the user, and to reduce the possibility of unintentional malfunction.
% \subsection{Creation and inclusion of MGL scripts and graphics}
% \noindent All environments and commands for MGL code embedding check for multiple scripts with the same name. This detection is performed in order to avoid unintentionally overwriting scripts, or creating confusion with different verbatim chunks of code with the same name. If such multiple naming is found a warning will be issued. However, external scripts are supposed to be responsibility of the user, so no detection of multiple naming will be performed on them.
%
% When \textsf{\mglTeX} is unable to find a graphic that is supposed to include, instead of producing an error, it will warn the user about it, and will display a box in the corresponding position of the document like the one shown in figure~\ref{fig: MGL image not found box}.
% \begin{figure}[!ht]
% \centering
% \fbox{%
% \centering%
% \bfseries\Huge%
% \begin{tabular}{c}MGL\\image\\not\\found\end{tabular}%
% }
% \caption{This box is shown by \textsf{\mglTeX} instead of a graphic that should be included, but can't be found.}\label{fig: MGL image not found box}
% \end{figure}
% Notice that the first time or even the second time \LaTeX{} is executed, many of these boxes will appear in the document, because the first run detects changes on scripts, while the second run creates the graphics, but not all of them are included, until \LaTeX{} is run for the third time.
%
% Likewise, when a script isn't found, a warning will be issued for the user, and, if that script was meant to be included in the document by a |\mglinclude| command, the box shown in figure~\ref{fig: MGL script not found box} will be displayed instead.
% \begin{figure}[!ht]
% \centering
% \fbox{%
% \centering%
% \bfseries\Huge%
% \begin{tabular}{c}MGL\\script\\not\\found\end{tabular}%
% }
% \caption{This box is shown by \textsf{\mglTeX} instead of a script that should be included, but can't be found.}\label{fig: MGL script not found box}
% \end{figure}
%
% When \textsf{\mglTeX} is |off| no MGL graphics will be generated nor will be included, but instead, a box like the one of figure~\ref{fig: mglTeX is off box} will be shown.
% \begin{figure}[!ht]
% \centering
% \fbox{%
% \centering%
% \bfseries\Huge%
% \begin{tabular}{c}\mglTeX\\is off;\\no image\\included\end{tabular}%
% }
% \caption{This box is shown instead of an image when \textsf{\mglTeX} is \texttt{off}.}\label{fig: mglTeX is off box}
% \end{figure}
%
% \subsection{Recompilation-decision algorithm}\label{subsection: recompilation decision}
% \noindent \textsf{\mglTeX} has the builtin capacity of detecting changes in MGL scripts, so that a script is recompiled only when it has changed, not every time \LaTeX{} is executed. This saves a lot of time, since most of the compilation time of a document is spent on the creation (and conversion to another format, if necessary) of the graphics.
%
% This is how the recompilation-decision is performed: When \textsf{\mglTeX} finds an environment or command meant to create a script/graphic, it checks if the command |\MGL@@@|\meta{script} is defined, where \meta{script} is the name of the script. If the command is undefined, this means the script has changed, so the corresponding code is transcript to the file \meta{script}.mgl, and the command |\MGL@@@|\meta{script} is defined. If the command is already defined, this means the script has been created on a previous \LaTeX{} run, so this time the embedded code is compared against the contents of the script; if they are equal, then |\MGL@@@|\meta{script} is defined again, otherwise, it is undefined, so the next \LaTeX{} run will rewrite/recompile the code. This process is schematically represented in figure~\ref{fig: recompilation decision}.
%
% \begin{figure}[ht!]
% \centering
% \includegraphics[scale=0.35]{Recompilation_decision}
% \caption{The algorithm used by \textsf{\mglTeX} to decide which scripts recereate/recompile.}\label{fig: recompilation decision}
% \end{figure}
%
% The recompilation-decision mechanism can be fooled, however. The |mgl| environment and |\mglplot| command have the ability to automatically name scripts by means of the use of an internal counter, unless the |label| option is specified. Suppose the user wants to add a new |mgl| environment or |\mglplot| command exactly after the $(n-1)$th script, so the $n$th script will be the newly added, while the old $n$th will be the new $(n+1)$th, and so on, altering the original numbering. This will cause \textsf{\mglTeX} to compare the old $n$th script with the old $(n+1)$th, and so on, deciding they are different, so they will be recompiled.
%
% There are two ways to avoid this problem: The first one is to use the |label| option on the newly arrived; the second is to wrap a complete block of the document with the |\mglswitch{off}| and |\mglswitch{on}| commands, avoiding recompilation and saving time. This last option will avoid the inclusion of the MGL graphics, so it is only recommended in case of the wrapped scripts being in their final version (not needing further modification), so there is no need of updating the corresponding graphics; then, when the document is compiled in its final version, the |\mglswitch{off}| and |\mglswitch{on}| can be removed. However, the most recommended way of proceeding is to use the |\mglname| command to create a separated main script per document block (section, chapter, part, etc.), so that, if a new script disrupts the original numbering, \textsf{\mglTeX} will recompile only the scripts of the current block.
%
% There are situations when recompilation of a script has to be forced. For example, if the default quality has changed, but the script hasn't, \textsf{\mglTeX} won't recreate the corresponding graphic by its own initiative, because it won't detect any changes in the code. In order to force recompilation, the image of the corresponding script can be deleted: \textsf{\mglTeX} will detect this abscence in the next \LaTeX{} run and recompile.
%
% \section{Acknowledgements}
% \noindent \textsf{\mglTeX} was born as a small personal project. It has grown and mature under the constant suggestions and requests from Prof. Alexey Balakin.
%
% \section{Redistributing and modifying}
% \noindent The \emph{source code} of \textsf{\mglTeX} (.sty, .dtx, and .ins files) can be redistributed and/or modified under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. The \emph{documentation} of \textsf{\mglTeX} (.dvi, .ps, .pdf and other files) is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.
%
% \StopEventually{\PrintChanges\PrintIndex}
%
% \section{Implementation}
% \noindent This section documents the complete code of \textsf{\mglTeX}. It's main purpose is to facilitate the understanding and maintanance of the package's code. For the following, we use ``|@|'' in the name of macros the user should not modify; the prefix ``|MGL|'' is used to simulate a namespace, so the macros from \textsf{\mglTeX} won't interfere with the ones from other packages.
%
% \subsection{Initialization}\label{Init}
% \noindent We first define some macros that will serve different purposes on different parts of the package.
% \begin{macro}{\MGL@off}\begin{macro}{\MGL@on}\begin{macro}{\MGL@zero}\begin{macro}{\MGL@one}
% These are used in the command |\MGL@test@switch| (explained later) to determine whether the user has passed one of the options |off|, |on|, |0| or |1| to a command.
% \begin{macrocode}
\def\MGL@off{off}
\def\MGL@on{on}
\def\MGL@zero{0}
\def\MGL@one{1}
% \end{macrocode}
% \end{macro}\end{macro}\end{macro}\end{macro}
% \begin{macro}{\MGL@test@switch}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{New command to verify and validate switching arguments}
% It is called by a command to test whether the user has passed the option |off|, |on|, |0| (equivalent to |off|) or |1| (equivalent to |on|); if the option is correct, it is replaced by its equivalent, otherwise, a warning is issued. It takes two arguments: the first one is the option to test, the second one is the name of the command calling this macro.
% \begin{macrocode}
\def\MGL@test@switch#1#2{%
\def\MGL@temp@a{#1}%
\ifx\MGL@temp@a\MGL@on%
\else\ifx\MGL@temp@a\MGL@off%
\else\ifx\MGL@temp@a\MGL@one%
\def\MGL@temp@a{on}%
\else\ifx\MGL@temp@a\MGL@zero%
\def\MGL@temp@a{off}%
\else%
\PackageWarning{mgltex}{%
Unrecognizable option "#1" passed to command \protect#2%
}%
\fi\fi\fi\fi%
}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\MGL@TeX@ext}
% Is used in the command |\MGL@includegraphics| (explained later) to determine whether the user has chosen to save graphics in \LaTeX/Tikz format.
% \begin{macrocode}
\def\MGL@TeX@ext{.tex}
% \end{macrocode}
% \end{macro}
%
% The macros |\MGL@switch@on| and |\MGL@switch@off| are called when the package options |on| and |off| are passed, respectively, or when the commands |\mglswitch{on}| and |\mglswitch{off}| are used, respectively.
% \begin{macro}{\MGL@switch@on}
% (Re)defines the commands to open, read, write and close scripts, and the command that includes MGL graphics.
% \begin{macrocode}
\def\MGL@switch@on{%
% \end{macrocode}
% \begin{macro}{\MGL@openout}
% Opens a script for writing. It takes two arguments, the first being an output stream number, allocate by |\newwrite| (\TeX{} command), and the second being the path to the script.
% \begin{macrocode}
\def\MGL@openout##1##2{%
\immediate\openout##1="##2"%
}%
% \end{macrocode}
% \end{macro}
% \begin{macro}{\MGL@openin}
% Opens a script for reading. It takes two arguments, the first being an input stream number, allocate by |\newread| (\TeX{} command), and the second being the path to the script.
% \begin{macrocode}
\def\MGL@openin##1##2{%
\immediate\openin##1="##2"%
}%
% \end{macrocode}
% \end{macro}
% \begin{macro}{\MGL@write}
% Writes to a script opened with |\MGL@openout|. Its first argument is the output stream number of the script, and the second is the text to write.
% \begin{macrocode}
\def\MGL@write##1##2{%
\immediate\write##1{##2}%
}%
% \end{macrocode}
% \end{macro}
% \begin{macro}{\MGL@read}
% Reads one line from a script opened with |\MGL@openin|. Its first argument is the input stream number of the script, and the second is a variable where the read text will be stored. The variable is first initialized as empty; if the end of the script has been reached, then there is nothing to read, so it remains empty; otherwise, one line is read and stored in the variable, locally supressing any end line character (|\endlinechar=-1|).
% \begin{macrocode}
\def\MGL@read##1##2{%
\def##2{}%
\ifeof##1\else%
\bgroup%
\endlinechar=-1%
\immediate\global\read##1 to ##2%
\egroup%
\fi%
}%
% \end{macrocode}
% \end{macro}
% \begin{macro}{\MGL@closeout}
% Closes a script opened with |\MGL@openout|, whose stream number is passed as argument.
% \begin{macrocode}
\def\MGL@closeout##1{%
\immediate\closeout##1%
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\MGL@closein}
% Closes a script opened with |\MGL@openin|, whose stream number is passed as argument.
% \begin{macrocode}
\def\MGL@closein##1{%
\immediate\closein##1%
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\MGL@includegraphics}
% This is a quite sophisticated command. It is in charge of including the graphics created by \textsf{\mglTeX}.
% \begin{macrocode}
\def\MGL@includegraphics{%
% \end{macrocode}
% First checks if the image exists. Note the |\MGL@dir| and |\MGL@graphics@dir| macros are set by the user with the |\mgldir| and |\mglgraphicsdir| commands, respectively, while |\MGL@script| stores the name of the script ---and thus the image--- executed, and |\MGL@imgext| is the extension chosen by the user to save the graphics.
% \begin{macrocode}
\IfFileExists{\MGL@dir\MGL@graphics@dir\MGL@script\MGL@imgext}{%
% \end{macrocode}
% If the chosen extension is |.tex|, a \LaTeX/Tikz file has been created, which has to be simply included in the document; it will be automatically compiled by \LaTeX{}. (Observe we use the |\MGL@TeX@ext| macro defined above.)
% \begin{macrocode}
\ifx\MGL@imgext\MGL@TeX@ext%
\include{\MGL@dir\MGL@graphics@dir\MGL@script\MGL@imgext}%
% \end{macrocode}
% If the chosen extension is not |.tex|, a normal visual image has been created, so the |\includegraphics| command is invoked to deal with it. The options for this command (like |scale|, |angle|, etc.) are stored in the |\MGL@graph@keys| macro, which is defined by every environment or command that creates and compiles MGL scripts, according to the optional arguments the user has passed.
% \begin{macrocode}
\else%
\expandafter\includegraphics\expandafter[\MGL@graph@keys]{%
\MGL@dir\MGL@graphics@dir\MGL@script%
}%
\fi%
}{%
% \end{macrocode}
% If the requested image doesn't exist, the issue a warning message for the user, and print a warning framed box (``\textbf{MGL image not found}'') in the place the image should occupy.
% \begin{macrocode}
\PackageWarning{mgltex}{MGL image "\MGL@script" not found}%
\fbox{%
\centering%
\bfseries\Huge%
\begin{tabular}{c}MGL\\image\\not\\found\end{tabular}%
}%
}%
}%
% \end{macrocode}
% \end{macro}
% And here ends the |\MGL@switch@on| command.
% \begin{macrocode}
}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\MGL@switch@off}
% (Re)defines the same commands as |\MGL@switch@on| in such a way they accept the same arguments, but do nothing. The exception is |\MGL@includegraphics| which, instead of doing nothing, prints a warning framed box (``\textbf{\mglTeX{} is off; no image included}'').
% \begin{macrocode}
\def\MGL@switch@off{%
\PackageWarning{mgltex}{mglTeX is off}%
\def\MGL@openout##1##2{}%
\def\MGL@openin##1##2{}%
\def\MGL@write##1##2{}%
\def\MGL@read##1##2{}%
\def\MGL@closeout##1{}
\def\MGL@closein##1{}
\def\MGL@includegraphics{%
\fbox{%
\centering%
\bfseries\Huge%
\begin{tabular}{c}\mglTeX\\is off;\\no image\\included\end{tabular}%
}%
}%
}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\@MGL@comments@off}\begin{macro}{\@MGL@comments@on}
% We will need a boolean switch to activate/deactivate comments later.
% \begin{macrocode}
\def\@MGL@comments@off{\let\if@MGL@comments@\iffalse}
\def\@MGL@comments@on{\let\if@MGL@comments@\iftrue}
% \end{macrocode}
% \end{macro}\end{macro}
%
% \begin{macro}{\MGL@gray}\begin{macro}{\MGL@gray@off}\begin{macro}{\MGL@gray@on}
% The commands |\MGL@gray@off| and |\MGL@gray@on| simply set the value of |\MGL@gray| to $0$ and $1$, respectively; this value will be used later through the |-g| command line option from |mglconv|.
% \begin{macrocode}
\def\MGL@gray@off{\def\MGL@gray{0}}
\def\MGL@gray@on{\def\MGL@gray{1}}
% \end{macrocode}
% \end{macro}\end{macro}\end{macro}
% \begin{macro}{\mglgray}
% Depending on the option passed by the user, it calls |\@MGL@gray@on| or |\@MGL@gray@off|.
% \begin{macrocode}
\def\mglgray#1{%
\MGL@test@switch{#1}{\mglgray}%
\csname @MGL@gray@\MGL@temp@a\endcsname%
}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\mglscale}\begin{macro}{\MGL@scale}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{Now accepts any positive value}
% |\mglscale| sets the value of the |\MGL@scale| macro, which is used later to specify the default scaling for graphics. It only accepts positive values, otherwise it issues a warning and restarts the scaling to $1$. In order to be able to check the validity of the value passed by the user, we first set the |\MGL@scale| macro to that value and test it with the |\ifdim| conditional.\footnote{We can't use \doccommand{ifnum} here because it only accepts integer values.} Since this conditional tests dimensions only, the value passed by the user is multiplied by |\p@| (value |1pt|), so it can be compared with |\z@| (value |0pt|).
% \begin{macrocode}
\def\mglscale#1{
\ifdim#1\p@>\z@%
\def\MGL@scale{#1}%
\else%
\PackageWarning{mgltex}{%
Scaling value of #1\space not allowed; using default (1)%
}%
\def\MGL@scale{1}%
\fi%
}
% \end{macrocode}
% \end{macro}\end{macro}
%
% \begin{macro}{\mglquality}\begin{macro}{\MGL@quality}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{\texttt{9} is accepted as quality value now}
% |\mglquality| sets the value of the |\MGL@quality| macro, which is used later to specify the default quality for graphics. It only accepts integer values from $0$ to $8$ (the only ones defined by |MathGL|), otherwise it issues a warning and restarts to $2$ (the default for |MathGL|). In order to be able to check the validity of the value passed by the user, we first set the |\MGL@quality| macro to that value and test it with the |\ifcase| conditional; if the value is valid, we print an info message to the |.log| file about the characteristics of the chosen quality, but if it is invalid, we issue a warning and overwrite |\MGL@scale| to $2$.
% \begin{macrocode}
\def\mglquality#1{%
\def\MGL@quality{#1}%
\ifcase\MGL@quality%
\PackageInfo{mgltex}{%
Quality 0: No face drawing (fastest)%
}%
\or%
\PackageInfo{mgltex}{%
Quality 1: No color interpolation (fast)%
}%
\or%
\PackageInfo{mgltex}{%
Quality 2: High quality (normal)%
}%
\or%
\PackageInfo{mgltex}{%
Quality 3: High quality with 3d primitives (not implemented yet)%
}%
\or%
\PackageInfo{mgltex}{%
Quality 4: No face drawing, direct bitmap drawing
(low memory usage)%
}%
\or%
\PackageInfo{mgltex}{%
Quality 5: No color interpolation, direct bitmap drawing
(low memory usage)%
}%
\or%
\PackageInfo{mgltex}{%
Quality 6: High quality, direct bitmap drawing (low memory usage)%
}%
\or%
\PackageInfo{mgltex}{%
Quality 7: High quality with 3d primitives, direct bitmap drawing %
(not implemented yet)%
}%
\or%
\PackageInfo{mgltex}{%
Quality 8: Draw dots instead of primitives (extremely fast)%
}%
\or%
\PackageInfo{mgltex}{%
Quality 9: No drawing (for testing purposes)%
}%
\else%
\PackageWarning{mgltex}{%
Quality #1 not available; using default (2)%
}%
\def\MGL@quality{2}%
\fi%
}
% \end{macrocode}
% \end{macro}\end{macro}
%
% \begin{macro}{\mglvariant}\begin{macro}{\MGL@variant}
% |\mglvariant| sets the value of the |\MGL@variant| macro, which is passed later to |mglconv| thorugh its |-v| command line option. It only accepts non-negative integer, otherwise it issues a warning and restarts to $0$ (the default for |MathGL|). In order to be able to check the validity of the value passed by the user, we use the |\ifnum| conditional; if the value is invalid we issue a warning and overwrite |\MGL@variant| to $0$.
% \begin{macrocode}
\def\mglvariant#1{%
\def\MGL@variant{#1}%
\ifnum\MGL@variant<0%
\PackageWarning{mgltex}{%
Variant #1 not allowed; using default (0)%
}%
\def\MGL@variant{0}%
\fi%
}
% \end{macrocode}
% \end{macro}\end{macro}
%
% Now we declare the options |final| and |draft|, which are simply passed to the \textsf{graphicx} package.
% \begin{macrocode}
\DeclareOption{draft}{%
\PassOptionsToPackage{\CurrentOption}{graphicx}%
}
\DeclareOption{final}{%
\PassOptionsToPackage{\CurrentOption}{graphicx}%
}
% \end{macrocode}
%
% The rest of the package options just call an adequate command or set an adequate value for a macro.
% \begin{macrocode}
\DeclareOption{on}{\MGL@switch@on}
\DeclareOption{off}{\MGL@switch@off}
\DeclareOption{nocomments}{\@MGL@comments@off}
\DeclareOption{comments}{\@MGL@comments@on}
\DeclareOption{gray}{\MGL@gray@on}
\DeclareOption{color}{\MGL@gray@off}
\DeclareOption{1x}{\def\MGL@scale{1}}
\DeclareOption{2x}{\def\MGL@scale{2}}
\DeclareOption{3x}{\def\MGL@scale{3}}
\DeclareOption{4x}{\def\MGL@scale{4}}
\DeclareOption{5x}{\def\MGL@scale{5}}
\DeclareOption{6x}{\def\MGL@scale{6}}
\DeclareOption{7x}{\def\MGL@scale{7}}
\DeclareOption{8x}{\def\MGL@scale{8}}
\DeclareOption{9x}{\def\MGL@scale{9}}
\DeclareOption{0q}{\def\MGL@quality{0}}
\DeclareOption{1q}{\def\MGL@quality{1}}
\DeclareOption{2q}{\def\MGL@quality{2}}
\DeclareOption{3q}{\def\MGL@quality{3}}
\DeclareOption{4q}{\def\MGL@quality{4}}
\DeclareOption{5q}{\def\MGL@quality{5}}
\DeclareOption{6q}{\def\MGL@quality{6}}
\DeclareOption{7q}{\def\MGL@quality{7}}
\DeclareOption{8q}{\def\MGL@quality{8}}
\DeclareOption{9q}{\def\MGL@quality{9}}
\DeclareOption{0v}{\def\MGL@variant{0}}
\DeclareOption{1v}{\def\MGL@variant{1}}
\DeclareOption{2v}{\def\MGL@variant{2}}
% \end{macrocode}
%
% \begin{macro}{\MGL@imgext}
% The following options set the default graphics extension, which is stored in the |\MGL@imgext| macro for later use.
% \begin{macrocode}
\DeclareOption{eps}{\def\MGL@imgext{.eps}}
\DeclareOption{epsz}{\def\MGL@imgext{.epsz}}
\DeclareOption{epsgz}{\def\MGL@imgext{.eps.gz}}
\DeclareOption{bps}{\def\MGL@imgext{.bps}}
\DeclareOption{bpsz}{\def\MGL@imgext{.bpsz}}
\DeclareOption{bpsgz}{\def\MGL@imgext{.bps.gz}}
\DeclareOption{pdf}{\def\MGL@imgext{.pdf}}
\DeclareOption{png}{\def\MGL@imgext{.png}}
\DeclareOption{jpg}{\def\MGL@imgext{.jpg}}
\DeclareOption{jpeg}{\def\MGL@imgext{.jpeg}}
\DeclareOption{gif}{\def\MGL@imgext{.gif}}
\DeclareOption{tex}{\def\MGL@imgext{.tex}}
% \end{macrocode}
% \end{macro}
%
% Any other option passed by the user is invalid, so an error message is issued.
% \begin{macrocode}
\DeclareOption*{\@unknownoptionerror}
% \end{macrocode}
%
% We now declare the default package options, and, finally, process the options the user specifies in the order they are introduced.
% \begin{macrocode}
\ExecuteOptions{final,on,nocomments,color,1x,2q,0v,eps}
\ProcessOptions*
% \end{macrocode}
%
% \begin{macro}{\MGL@dir}
% This is the \textsf{\mglTeX} main working directory. By default, it is defined to empty, so it points to the path of the \LaTeX{} document.
% \begin{macrocode}
\def\MGL@dir{}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\MGL@scripts@dir}
% The subdirectory inside |\MGL@dir| where all MGL scripts will be created.
% \begin{macrocode}
\def\MGL@scripts@dir{}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\MGL@graphics@dir}
% The subdirectory inside |\MGL@dir| where all MGL graphics will be created.
% \begin{macrocode}
\def\MGL@graphics@dir{}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\MGL@backups@dir}
% The subdirectory inside |\MGL@dir| where all backups of scripts will be created.
% \begin{macrocode}
\def\MGL@backups@dir{}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\MGL@paths}
% This is a list of paths where extracted and external scripts will be searched for by the |\mglgraphics| and |\mglinclude| commands. Since extracted scripts are created inside |\MGL@dir\MGL@scripts@dir| and |\MGL@dir\MGL@backups@dir|, this directories are included.
% \begin{macrocode}
\def\MGL@paths{\MGL@dir\MGL@scripts@dir,\MGL@dir\MGL@backups@dir}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\MGL@main@script@name}
% \noindent This macro stores the name of the of the document's main script. It is initialized to the name of the \LaTeX{} document.
% \begin{macrocode}
\edef\MGL@main@script@name{\jobname}
% \end{macrocode}
% \end{macro}
%
% We set some additional staff that will be used later.
% \begin{macro}{\MGL@main@stream}
% The output stream for the document's main script.
% \begin{macrocode}
\newwrite\MGL@main@stream
% \end{macrocode}
% \end{macro}
% \begin{macro}{\MGL@out@stream}
% The output stream for scripts other than the main one.
% \begin{macrocode}
\newwrite\MGL@out@stream
% \end{macrocode}
% \end{macro}
% \begin{macro}{\MGL@in@stream}
% The input stream for scripts other than the main one.
% \begin{macrocode}
\newread\MGL@in@stream
% \end{macrocode}
% \end{macro}
% \begin{macro}{MGL@script@no}
% The internal counter used by environments like |mgl| and commands like |\mglplot| to automatically name scripts.
% \begin{macrocode}
\newcounter{MGL@script@no}
% \end{macrocode}
% \end{macro}
% \begin{macro}{MGL@line@no}
% The counter used for verbatim-like environments and commands to numerate the lines of code.
% \begin{macrocode}
\newcounter{MGL@line@no}
% \end{macrocode}
% \end{macro}
% \begin{macro}{MGL@verb@no}
% The counter used to numerate verbatim-written scripts with the |\listofmglscripts| command.
% \begin{macrocode}
\newcounter{MGL@verb@no}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\@MGL@list@script@}
% The boolean switch used to determine whether to add a verbatim-written script to the \emph{list of MGL scripts}.
% \begin{macrocode}
\newif\if@MGL@list@script@
% \end{macrocode}
% \end{macro}
% \begin{macro}{\l@MGL@script}
% The style for the leaders associating script name and page number in the \emph{list of MGL scripts}.
% \begin{macrocode}
\def\l@MGL@script{\@dottedtocline{1}{0em}{1.5em}}
% \end{macrocode}
% \end{macro}
%
% \textsf{\mglTeX} requires the \textsf{keyval} package to define \meta{key}=\meta{value} options for the environments and commands; the \textsf{graphicx} package apports the facilities for inclusion of graphics; the \textsf{ifpdf} package is used to determine whether the user is compiling to |pdf| or not when indicating the default graphics extensionsthe \textsf{verbatim} package is used as engine for the environments.
% \begin{macrocode}
\RequirePackage{keyval}
\RequirePackage{graphicx}
\RequirePackage{ifpdf}
\RequirePackage{verbatim}
% \end{macrocode}
%
% The supported graphic extensions are declared. These extensions depend on whether we are compiling to |pdf| or not, so the |\ifpdf| conditional from the homonym package is used.
% \begin{macrocode}
\ifpdf%
\DeclareGraphicsExtensions{%
.pdf,.png,.jpg,.jpeg,.gif%
}%
\else%
\DeclareGraphicsExtensions{%
.eps,.epsz,.eps.gz,.bps,.bpsz,.bps.gz%
}%
\fi%
% \end{macrocode}
% Finally, the |\verbatim@finish| command from the \textsf{verbatim} package is disabled to avoid it from writing a blank line at the end of every script (see subsection~\ref{subsection: warning}).
% \begin{macrocode}
\let\verbatim@finish\relax
% \end{macrocode}
%
% \subsection{Anatomy of environments and commands}\label{subsection: anatomy}
% \noindent Many of the environments and commands defined by \textsf{\mglTeX} are based on the same pieces of code. So, in order to avoid repetition of commands, we use the concept of \emph{anatomy of environments and commands}, which is basically the idea of taking repetitive pieces of code and enclose them into macros which can later be used.
%
% \begin{macro}{\MGL@setkeys}
% This command receives two arguments: a family of \meta{key}=\meta{value} pairs, like |MGL@keys|, and a list of such pairs. It first cleans the |\MGL@graph@keys| macro, and the process the list of pairs.
% \begin{macrocode}
\def\MGL@setkeys#1#2{%
\def\MGL@graph@keys{}%
\setkeys{#1}{#2}%
}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\MGL@graph@keys}
% The main family of \meta{key}=\meta{value} pairs is defined. These pairs are common to every environment or command that produces graphics. Most of the \meta{key}'s are redefinitions of the optional arguments for the |\includegraphics| commands, so they are stored inside the |\MGL@graph@keys| macro, which is later passed to that command as optional argument by |\MGL@includegraphics|.
% \begin{macrocode}
\define@key{MGL@gr@keys}{bb}{%
\g@addto@macro\MGL@graph@keys{bb=#1,}%
}
\define@key{MGL@gr@keys}{bbllx}{%
\g@addto@macro\MGL@graph@keys{bbllx=#1,}%
}
\define@key{MGL@gr@keys}{bblly}{%
\g@addto@macro\MGL@graph@keys{bblly=#1,}%
}
\define@key{MGL@gr@keys}{bburx}{%
\g@addto@macro\MGL@graph@keys{bburx=#1,}%
}
\define@key{MGL@gr@keys}{bbury}{%
\g@addto@macro\MGL@graph@keys{bbury=#1,}%
}
\define@key{MGL@gr@keys}{natwidth}{%
\g@addto@macro\MGL@graph@keys{natwidth=#1,}%
}
\define@key{MGL@gr@keys}{natheight}{%
\g@addto@macro\MGL@graph@keys{natheight=#1,}%
}
\define@key{MGL@gr@keys}{hiresbb}{%
\g@addto@macro\MGL@graph@keys{hiresbb=#1,}%
}
\define@key{MGL@gr@keys}{viewport}{%
\g@addto@macro\MGL@graph@keys{viewport=#1,}%
}
\define@key{MGL@gr@keys}{trim}{%
\g@addto@macro\MGL@graph@keys{trim=#1,}%
}
\define@key{MGL@gr@keys}{angle}{%
\g@addto@macro\MGL@graph@keys{angle=#1,}%
}
\define@key{MGL@gr@keys}{origin}{%
\g@addto@macro\MGL@graph@keys{origin=#1,}%
}
\define@key{MGL@gr@keys}{width}{%
\g@addto@macro\MGL@graph@keys{width=#1,}%
}
\define@key{MGL@gr@keys}{height}{%
\g@addto@macro\MGL@graph@keys{height=#1,}%
}
\define@key{MGL@gr@keys}{totalheight}{%
\g@addto@macro\MGL@graph@keys{totalheight=#1,}%
}
\define@key{MGL@gr@keys}{keepaspectratio}[true]{%
\g@addto@macro\MGL@graph@keys{keepaspectratio=#1,}%
}
\define@key{MGL@gr@keys}{scale}{%
\g@addto@macro\MGL@graph@keys{scale=#1,}%
}
\define@key{MGL@gr@keys}{clip}[true]{%
\g@addto@macro\MGL@graph@keys{clip=#1,}%
}
\define@key{MGL@gr@keys}{draft}[true]{%
\g@addto@macro\MGL@graph@keys{draft=#1,}%
}
\define@key{MGL@gr@keys}{type}{%
\g@addto@macro\MGL@graph@keys{type=#1,}%
}
\define@key{MGL@gr@keys}{ext}{%
\g@addto@macro\MGL@graph@keys{ext=#1,}%
}
\define@key{MGL@gr@keys}{read}{%
\g@addto@macro\MGL@graph@keys{read=#1,}%
}
\define@key{MGL@gr@keys}{command}{%
\g@addto@macro\MGL@graph@keys{command=#1,}%
}
% \end{macrocode}
% \end{macro}
% The following four \meta{key}=\meta{value} pairs call the adequate \textsf{\mglTeX} command.
% \begin{macrocode}
\define@key{MGL@gr@keys}{gray}[0]{\mglgray{#1}}
\define@key{MGL@gr@keys}{mglscale}{\mglscale{#1}}
\define@key{MGL@gr@keys}{quality}{\mglquality{#1}}
\define@key{MGL@gr@keys}{variant}{\mglvariant{#1}}
% \end{macrocode}
% \begin{macro}{\MGL@imgext}
% |\MGL@imgext| stores the default extension for the creation of the graphics.
% \begin{macrocode}
\define@key{MGL@gr@keys}{imgext}{\def\MGL@imgext{.#1}}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\@MGL@lineno@}
% The only \meta{key}=\meta{value} pair needed for verbatim-like environments and commands is the one for the |lineno| option, which sets the value of the |\@MGL@lineno@| boolean macro.
% \begin{macrocode}
\newif\if@MGL@lineno@
\define@key{MGL@verb@keys}{lineno}[true]{\csname @MGL@lineno@#1\endcsname}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\MGL@codes}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{Bugfix: category code for tabulators is changed too}
% This macro changes the category codes of all special characters (like |\|, |$|, etc.) to $12$ (other), so they don't have any special meaning and can be processed as normal text. The exception is the new line character (|^^M|), which is kept active for compatibility with the \textsf{verbatim} package.
% \begin{macrocode}
\def\MGL@codes{%
\let\do\@makeother\dospecials%
\catcode`\^^I=12%
\catcode`\^^M\active%
}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\MGL@doc@scripts}
% A macro to store the names of the scripts created or compiled in the document.
% \begin{macrocode}
\def\MGL@doc@scripts{}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\MGL@set@script@name}\begin{macro}{\MGL@script}
% |\MGL@set@script@name| receives the name of a script without extension as argument, defines |\MGL@script| as that name, and checks if it has already been created or compiled, by comparing it with the names already stored in |\MGL@doc@scripts|; if it's there already, warns the user. Finally, adds the name of the script to |\MGL@doc@scripts|.
% \begin{macrocode}
\def\MGL@set@script@name#1{%
\edef\MGL@script{#1}%
\@for\MGL@temp@a:=\MGL@doc@scripts\do{%
\ifx\MGL@temp@a\MGL@script%
\PackageWarning{mgltex}{Multiple MGL scripts named "\MGL@script.mgl"}%
\fi%
}%
\g@addto@macro\MGL@doc@scripts{\MGL@script,}%
}
% \end{macrocode}
% \end{macro}\end{macro}
%
% \begin{macro}{\MGL@unchanged}
% This command defines the ``switch'' |\MGL@@@|\meta{script}, where \meta{script} is passed as argument, which indicates the script \meta{script}|.mgl| has not changed. This command has to be written to the |.aux| file to be preserved from compilation to compilation.
% \begin{macrocode}
\def\MGL@unchanged#1{%
\global\@namedef{MGL@@@#1}{}%
}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\MGL@process@script}
% It checks whether the ``switch'' |\MGL@@@\MGL@script| is undefined, in which case executes its first argument. If the switch is defined, it checks if the corresponding image has been created; if so, it executes its second argument; otherwise, the first one.
% \begin{macrocode}
\def\MGL@process@script#1#2{%
\@ifundefined{MGL@@@\MGL@script}{%
#1%
}{%
\IfFileExists{\MGL@dir\MGL@graphics@dir\MGL@script\MGL@imgext}{%
#2%
}{%
#1%
}%
}%
}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\MGL@def@for@loop}\begin{macro}{\MGL@for}
% |\MGL@def@for@loop| defines the command |\MGL@for| which is similar to the |\@for| command from the \LaTeX{} kernel, with the only exception that, instead of iterating over comma-separated lists, it can iterate over lists of items with any kind of separator, which is passed as argument of |\MGL@def@for@loop|. The body of this command is copied from the definition code of |\@for|, extracted from \emph{The \LaTeXe{} Sources} document, replacing the ``|,|'' by ``|#1|''. Note that |\MGL@for| is used only by the |\mglplot| command, but it has been included as part of the \emph{anatomy of environments and commands} to keep cleanness because it is quite long code.
% \begin{macrocode}
\def\MGL@def@for@loop#1{%
\long\def\MGL@for##1:=##2\do##3{%
\expandafter\def\expandafter\@fortmp\expandafter{##2}%
\ifx\@fortmp\@empty\else%
\expandafter\MGL@forloop##2#1\@nil#1\@nil\@@##1{##3}%
\fi%
}%
\long\def\MGL@forloop##1#1##2#1##3\@@##4##5{%
\def##4{##1}%
\ifx##4\@nnil\else%
##5\def##4{##2}%
\ifx##4\@nnil\else%
##5\MGL@iforloop##3\@@##4{##5}%
\fi%
\fi%
}%
\long\def\MGL@iforloop##1#1##2\@@##3##4{%
\def##3{##1}%
\ifx##3\@nnil%
\expandafter\@fornoop%
\else%
##4\relax\expandafter\MGL@iforloop%
\fi%
##2\@@##3{##4}%
}%
}
% \end{macrocode}
% The default |\MGL@for| loop iterates over |^^J|-separated lists, i.e, \meta{new line}-character-lists.
% \begin{macrocode}
\MGL@def@for@loop{^^J}
% \end{macrocode}
% \end{macro}\end{macro}
%
% \begin{macro}{\MGL@compare@code}
% |\MGL@compare@code| is in charge of comparing the user's MGL code, embedded within \textsf{\mglTeX} environments, with its corresponding extracted script. For that purpose, the |\verbatim@processline| and |\verbatim@finish| commands from the \textsf{verbatim} package are redefined.
% \begin{macrocode}
\def\MGL@compare@code#1{%
% \end{macrocode}
% \begin{macro}{\MGL@next}
% This macro is called at the end of environments that use the |\MGL@compare@code| macro, and performs the ending actions of the comparision process, which are closing the |\MGL@in@stream| and writing the |\MGL@unchanged{\MGL@script}| to the |.aux| file. If during the comparison process a difference in the code is found, |\MGL@next| is redefined to only close the |\MGL@in@stream|.
% \begin{macrocode}
\def\MGL@next{%
\MGL@closein\MGL@in@stream%
\MGL@write\@auxout{\string\MGL@unchanged{\MGL@script}}%
}%
% \end{macrocode}
% \end{macro}
% The |\verbatim@processline| command is redefined to read from the input stream to a temporary variable (|\MGL@temp@a|), and compare it with one line of code in the \LaTeX{} document, which is stored in another temporary variable (|\MGL@temp@b|). In case they are not equal, the |\MGL@next| macro is redefined to only close the input stream, and |\verbatim@processline| is redefine again to do nothing (a little speed-up).
% \begin{macrocode}
\def\verbatim@processline{%
\MGL@read\MGL@in@stream{\MGL@temp@a}%
\edef\MGL@temp@b{\the\verbatim@line}%
\ifx\MGL@temp@a\MGL@temp@b\else%
\def\MGL@next{\MGL@closein\MGL@in@stream}%
\def\verbatim@processline{}%
\fi%
}%
% \end{macrocode}
% The |\verbatim@finish| macro, which is called at the end of the environment, is also redefined to perform one last read of the input stream, and then check if the end of file has been reached; if it hasn't, then, despite the end of the environment has been reached ---thus the end of code---, there is still code inside the script, so there are differences between them, and |\MGL@next| has to be redefined to do nothing but close the input stream.
% \begin{macrocode}
\def\verbatim@finish{%
\MGL@read\MGL@in@stream{\MGL@temp@a}%
\ifeof\MGL@in@stream\else%
\def\MGL@next{\MGL@closein\MGL@in@stream}%
\fi%
}%
% \end{macrocode}
% Finally, the input stream is opened, and the comparison is started by calling |\verbatim@start|.
% \begin{macrocode}
\MGL@openin\MGL@in@stream{#1}%
\verbatim@start%
}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\MGL@write@funcs}
% This macro is used only by the |mglfunc| environment. Its only purpose is to store the commands to insert MGL functions in the main script, and is called at the end of the document or when the |\mglname| command is used. For now, we only ask it to write the |stop| command\footnote{Note the |stop| command is unnecesary in newer versions of the MGL language, but it is kept in \textsf{\mglTeX} for compatibility and for elegance.} that separates the section of scripts from the section of functions in the main script.
% \begin{macrocode}
\def\MGL@write@funcs{\MGL@write\MGL@main@stream{stop^^J}}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\MGL@func}
% This is the command that writes the MGL functions. It is intended to be stored inside |\MGL@write@funcs|. It opens the backup file of the MGL function whose name is passed as argument (and has been created by a |mglfunc| environment), and then calls |\MGL@@func| to transcript from that file, line by line, to the main script.
% \begin{macrocode}
\def\MGL@func#1{%
\MGL@openin\MGL@in@stream{\MGL@dir\MGL@backups@dir#1.mgl}%
\MGL@@func%
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\MGL@@func}
% This command transcripts only one line from backup file of a MGL function to the main script. It calls itself recursively until the end of the backup.
% \begin{macrocode}
\def\MGL@@func{%
% \end{macrocode}
% It first reads from the input stream to the |\MGL@temp@a| temporary variable.
% \begin{macrocode}
\MGL@read\MGL@in@stream{\MGL@temp@a}%
% \end{macrocode}
% If the end of the file has been reached, the stream is closed.
% \begin{macrocode}
\ifeof\MGL@in@stream%
\MGL@closein\MGL@in@stream%
% \end{macrocode}
% If the end of file hasn't been reached, |\MGL@temp@a| is written to the main script, and |\MGL@@func| is called recursively.
% \begin{macrocode}
\else%
\MGL@write\MGL@main@stream{\MGL@temp@a}%
\expandafter\MGL@@func%
\fi%
}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\MGL@set@verbatim@code}
% This command sets the parameters for verbatim-like environments and commands.
% \begin{macrocode}
\def\MGL@set@verbatim@code{%
% \end{macrocode}
% The following is standard stuff for verbatim-like environments and commands.
% \begin{macrocode}
\if@minipage\else\vskip\parskip\fi%
\leftskip\@totalleftmargin\rightskip\z@skip%
\parindent\z@\parfillskip\@flushglue\parskip\z@%
\@@par%
\def\par{%
\if@tempswa%
\leavevmode\null\@@par\penalty\interlinepenalty%
\else%
\@tempswatrue%
\ifhmode\@@par\penalty\interlinepenalty\fi%
\fi%
}%
\obeylines%
\let\do\@makeother\dospecials%
\verbatim@font%
\frenchspacing%
\everypar\expandafter{\the\everypar\unpenalty}%
% \end{macrocode}
% If there are no lines of MGL code, instead of issuing an error, we display a package warning.
% \begin{macrocode}
\def\@noitemerr{\PackageWarning{mglTeX}{Empty MGL script}}%
% \end{macrocode}
% The space between the end of the label box and the text of the first item (|\labelsep|) is set to |1em|, while the separation between items (|\itemsep|) is set to zero.
% \begin{macrocode}
\labelsep1em%
\itemsep\z@%
% \end{macrocode}
% Since we want the lines of code to be broken between words, but verbatim spaces are unbreakable, we trick \LaTeX{} by inserting a breakable spaces (|\space|) instead.
% \begin{macrocode}
\def\@xobeysp{\space}\@vobeyspaces%
% \end{macrocode}
% However, \LaTeX{} still resists breaking lines as much as possible in order to preserve the shape of paragraphs, so we tell it it's OK not to do so by setting the badness tolerance before hyphenation (|\pretolerance|) and the badness above which bad hboxes will be shown (|\hbadness|) to the maximum value of $10000$ (|\@M|).
% \begin{macrocode}
\pretolerance\@M%
\hbadness\@M%
% \end{macrocode}
% In order to achieve the desired indentation of broken lines, we use the following trick: We increase the |\leftskip| parameter by the amount specified by |\mglbreakindent|, so that lines will be indented; but then we decrease the |\itemindent| parameter by the same amount so the first line won't be indented.
% \begin{macrocode}
\advance\leftskip\mglbreakindent%
\itemindent-\mglbreakindent%
}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\MGL@line@sep}
% This is the separator displayed at the beginning and ending of the |mglblock| and |mglverbatim| environments, to distinguish the MGL code from the normal text. Its definition is similar to the one of the |\dotfill| command, which can be found in \emph{The \LaTeXe{} Sources} document, but |\nopagebreak| commands have been added to avoid unaesthetic page breaking before and after the separators.
% \begin{macrocode}
\def\MGL@line@sep{%
\nopagebreak%
\leavevmode\cleaders\hrule height\mgllinethickness\hfill\kern\z@%
\nopagebreak%
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\MGL@dash@sep}
% This is the separator displayed at the beginning and ending of the |mglcomments| environment, when it is allowed to be displayed.
% \begin{macrocode}
\def\MGL@dash@sep{%
\nopagebreak%
\leavevmode\cleaders\hb@xt@\mgldashwidth{\hss-\hss}\hfill\kern\z@%
\nopagebreak%
}
% \end{macrocode}
% \end{macro}
%
% \subsection{Environments for MGL code embedding}
% \noindent For the following, we agree that if a macro is required by an environment, and it hasn't been already defined, it will be defined between the commands that start and end such environment; also the command's name will have the environment's name as prefix.
%
% \begin{environment}{mgl}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{New environment options: \texttt{gray}, \texttt{mglscale}, \texttt{quality}, \texttt{variant}}
% This environment has to transcript its contents to the document's main script, and create a backup of the code simultaneously; the backup is used to detect changes in following compilations.
% \begin{macro}{\mgl}
% The command that starts the |mgl| environment. It is called by the |\begin{mgl}| command.
% \begin{macrocode}
\newcommand\mgl[1][]{%
% \end{macrocode}
% We define an additional \meta{key}=\meta{value} pair in the main family of pairs, corresponding to the |label| option for this environment. This definition is local because we don't want to be valid outside the environment.
% \begin{macrocode}
\define@key{MGL@gr@keys}{label}{\def\MGL@script{##1}}%
% \end{macrocode}
% The list of comma-separated options is processed.
% \begin{macrocode}
\MGL@setkeys{MGL@gr@keys}{#1}%
% \end{macrocode}
% If the user hasn't used the |label| option, the automatic naming mechanism is called. Note that |\MGL@main@script@name| is set using the |\mglname| command.
% \begin{macrocode}
\@ifundefined{MGL@script}{%
\stepcounter{MGL@script@no}%
\edef\MGL@script{\MGL@main@script@name-MGL-\arabic{MGL@script@no}}%
}{}%
% \end{macrocode}
% We use the |\MGL@set@script@name| to test whether the given name has already been used.
% \begin{macrocode}
\MGL@set@script@name{\MGL@script}%
% \end{macrocode}
% |\MGL@codes| is used to change the codes of special characters.
% \begin{macrocode}
\MGL@codes%
% \end{macrocode}
% |\MGL@process@script| is used to test whether the code has changed or not the last time \LaTeX{} has been executed. If it has changed, we call the |\MGL@write@script| command to (re)write the code; otherwise, the code is scanned again by asking |\MGL@compare@code| to perform a comparison on the backup file, in order to determine whether the code has changed now.
% \begin{macrocode}
\MGL@process@script{%
\MGL@write@script%
}{%
\MGL@compare@code{\MGL@dir\MGL@backups@dir\MGL@script.mgl}%
}%
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\MGL@write@script}
% (Re)writes the contents of the |mgl| environment.
% \begin{macrocode}
\def\MGL@write@script{%
% \end{macrocode}
% \begin{macro}{\MGL@next}
% It contains the actions to perform immediately after the end of |\MGL@write@script|. They are close the output stream; write in the main script the commands to save the image, and to reset the initial values for all MGL parameters and clear the image; finally, write |\MGL@unchanged{\MGL@script}| in the |.aux| file.
% \begin{macrocode}
\def\MGL@next{%
\MGL@closeout\MGL@out@stream%
\MGL@write\MGL@main@stream{%
write '\MGL@dir\MGL@graphics@dir\MGL@script\MGL@imgext'^^J%
^^Jreset^^J%
}%
\MGL@write\@auxout{\string\MGL@unchanged{\MGL@script}}%
}%
% \end{macrocode}
% \end{macro}
% Now we redefine the |\verbatim@processline| macro to write |\the\verbatim@line| to the main script and to the backup file.
% \begin{macrocode}
\def\verbatim@processline{%
\MGL@write\MGL@main@stream{\the\verbatim@line}%
\MGL@write\MGL@out@stream{\the\verbatim@line}%
}%
% \end{macrocode}
% Before writing the MGL code of the environment, we set the default gray/color mode, mglscale, quality and variant.
% \begin{macrocode}
\MGL@write\MGL@main@stream{%
gray \MGL@gray^^J%
setsizescl \MGL@scale^^J%
quality \MGL@quality^^J%
variant \MGL@variant%
}%
% \end{macrocode}
% We open the backup file in the output stream.
% \begin{macrocode}
\MGL@openout\MGL@out@stream{\MGL@dir\MGL@backups@dir\MGL@script.mgl}%
% \end{macrocode}
% The transcription process starts by calling the |\verbatim@start| command.
% \begin{macrocode}
\verbatim@start%
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\endmgl}
% The command that ends the |mgl| evironment. It is called by the |\end{mgl}| command. It simply calls |\MGL@next| to execute the final actions, and |\MGL@includegraphics| to insert the corresponding image. Note that |\MGL@next| performs different actions depending on whether |\MGL@process@script| calls |\MGL@write@script| or |\MGL@compare@code|, both of which define |\MGL@next| differently.
% \begin{macrocode}
\def\endmgl{%
\MGL@next%
\MGL@includegraphics%
}
% \end{macrocode}
% \end{macro}
% \end{environment}
%
% \begin{environment}{mgladdon}
% This environment only writes its contents to the document's main script, so no backup is created, nor compilation or inclusion of graphics.
% \begin{macro}{\mgladdon}
% Since this environment doesn't produce any output in the \LaTeX{} document, we start a \emph{space hack} by calling |\@bsphack|. We set the appropiate category codes with |\MGL@codes|; the |\verbatim@processline| is redefined to transcript |\the\verbatim@line| to the main script; finally, the |\verbatim@start| command starts the transcription process.
% \begin{macrocode}
\def\mgladdon{%
\@bsphack%
\MGL@codes%
\def\verbatim@processline{%
\MGL@write\MGL@main@stream{\the\verbatim@line}%
}%
\verbatim@start%
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\endmgladdon}
% The environment ends by closing the \emph{space hack} with |\@esphack|.
% \begin{macrocode}
\def\endmgladdon{\@esphack}
% \end{macrocode}
% \end{macro}
% \end{environment}
%
% \begin{environment}{mglfunc}
% This environment is used to define MGL functions inside the document's main script. Instead of writing directly to the main script, which would cause the MGL parser to end the execution of that script, it writes to a backup file which is later transcript before closing the main script.
% \begin{macro}{\mglfunc}
% It starts the |mglfunc| environment.
% \begin{macrocode}
\newcommand\mglfunc[2][0]{%
% \end{macrocode}
% Once again, since this command doesn't produce any output in the \LaTeX{} document, we use a \emph{space hack}.
% \begin{macrocode}
\@bsphack%
% \end{macrocode}
% Although MGL functions and normal scripts are diferent in nature, in the sense that the first don't produce graphics by themselves, we have to check whether the function is being named as another script, because otherwise we run the risk of overwriting a backup file or confusing the parser.
% \begin{macrocode}
\MGL@set@script@name{#2}%
% \end{macrocode}
% The instruction to transcript from the backup file to the main stream is stored in |\MGL@write@funcs| (see subsection \ref{subsection: anatomy}).
% \begin{macrocode}
\g@addto@macro\MGL@write@funcs{\MGL@func{#2}}%
% \end{macrocode}
% The codes for special characters are set.
% \begin{macrocode}
\MGL@codes%
% \end{macrocode}
% The |\verbatim@processline| command is redefined to write |\the\verbatim@line| to the backup file.
% \begin{macrocode}
\def\verbatim@processline{\MGL@write\MGL@out@stream{\the\verbatim@line}}%
% \end{macrocode}
% The backup file is opened for writing.
% \begin{macrocode}
\MGL@openout\MGL@out@stream{\MGL@dir\MGL@backups@dir\MGL@script.mgl}%
% \end{macrocode}
% The head of the function is written.
% \begin{macrocode}
\MGL@write\MGL@out@stream{func '\MGL@script' #1}%
% \end{macrocode}
% The writing process is started.
% \begin{macrocode}
\verbatim@start%
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\endmglfunc}
% It ends the |mglfunc| environment.
% \begin{macrocode}
\def\endmglfunc{%
% \end{macrocode}
% The end of the function is written.
% \begin{macrocode}
\MGL@write\MGL@out@stream{return^^J}%
% \end{macrocode}
% The output stream is closed.
% \begin{macrocode}
\MGL@closeout\MGL@out@stream%
% \end{macrocode}
% The \emph{space hack} is terminated.
% \begin{macrocode}
\@esphack%
}%
% \end{macrocode}
% \end{macro}
% \end{environment}
%
% \begin{environment}{mglcode}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{New environment options: \texttt{gray}, \texttt{mglscale}, \texttt{quality}, \texttt{variant}}
% This environment also checks for changes on the code, but, since it writes to its own script, there is no need to create a backup file (the check is performed using the script itself).
% \begin{macro}{\mglcode}
% It starts the |mglcode| environment. Its anatomy is similar to that of the |\mgl| command.
% \begin{macrocode}
\newcommand\mglcode[2][]{%
\MGL@setkeys{MGL@gr@keys}{#1}%
\MGL@set@script@name{#2}%
\MGL@codes%
\MGL@process@script{%
\mglcode@write@script%
}{%
\MGL@compare@code{\MGL@dir\MGL@scripts@dir\MGL@script.mgl}%
}%
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\mglcode@write@script}
% This command takes care of creating the script for the |mglcode| environment.
% \begin{macrocode}
\def\mglcode@write@script{%
% \end{macrocode}
% \begin{macro}{\MGL@next}
% It performs the actions immediately following the end of |\mglcode@write@script|.
% \begin{macrocode}
\def\MGL@next{%
% \end{macrocode}
% The output stream is closed.
% \begin{macrocode}
\MGL@closeout\MGL@out@stream%
% \end{macrocode}
% The |\MGL@unchanged{\MGL@script}| command is written to the |.aux| file.
% \begin{macrocode}
\MGL@write\@auxout{\string\MGL@unchanged{\MGL@script}}%
% \end{macrocode}
% The script compilation instruction is written to the terminal.
% \begin{macrocode}
\MGL@write{18}{%
mglconv -q \MGL@quality\space -g \MGL@gray\space%
-S \MGL@scale\space -v \MGL@variant\space%
-s "\MGL@dir\MGL@scripts@dir\mglsetupscriptname.mgl"\space%
-o "\MGL@dir\MGL@graphics@dir\MGL@script\MGL@imgext"\space%
"\MGL@dir\MGL@scripts@dir\MGL@script.mgl"%
}%
}%
% \end{macrocode}
% \end{macro}
% The |\verbatim@processline| command is redefined so it writes |\the\verbatim@line| to the output stream.
% \begin{macrocode}
\def\verbatim@processline{\MGL@write\MGL@out@stream{\the\verbatim@line}}%
% \end{macrocode}
% The script is opened for writing in the output stream.
% \begin{macrocode}
\MGL@openout\MGL@out@stream{\MGL@dir\MGL@scripts@dir\MGL@script.mgl}%
% \end{macrocode}
% The writing process is started by calling the |\verbatim@start| command.
% \begin{macrocode}
\verbatim@start%
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\endmglcode}
% It ends the |mglcode| environment. |\MGL@next| is called to perform the final actions and |\MGL@includegraphics| is called to insert the corresponding image. Once more, |\MGL@next| has different meanings depending on whether |\MGL@process@script| branches to |\MGL@compare@code| or |\mglcode@write@script|.
% \begin{macrocode}
\def\endmglcode{%
\MGL@next%
\MGL@includegraphics%
}
% \end{macrocode}
% \end{macro}
% \end{environment}
% \begin{environment}{mglscript}
% The only function of this environment is to write its contents to a script; no image is created. It has been considered that scanning the code looking for changes is as much operation-expensive as simply writing the code, so it has been decided that this environment (over)writes the script everytime it's executed, without performing any check.
% \begin{macro}{\mglscript}
% Starts the environment. Its anatomy is similar to the previous environments. Since no output is written to the \LaTeX{} document, a \emph{space hack} is used.
% \begin{macrocode}
\def\mglscript#1{%
\@bsphack%
\MGL@set@script@name{#1}%
\MGL@codes%
\def\verbatim@processline{\MGL@write\MGL@out@stream{\the\verbatim@line}}%
\MGL@openout\MGL@out@stream{\MGL@dir\MGL@scripts@dir\MGL@script.mgl}%
\verbatim@start%
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\endmglscript}
% It ends the |mglscript| environment. The \emph{space hack} ends here, too.
% \begin{macrocode}
\def\endmglscript{%
\MGL@closeout\MGL@out@stream%
\@esphack%
}
% \end{macrocode}
% \end{macro}
% \end{environment}
%
% \begin{environment}{mglsetupscript}\begin{environment}{mglcommon}
% This environment doesn't require any backup file nor any scanning for changes. Although the user sets the name of the script by redifining |\mglsetupscriptname|, it is necessary to perform a check of the name, just in case a name has been inadvertedly repeated.
% \begin{macro}{\mglsetupscript}
% Starts the |mglsetupscript| environment.
% \begin{macrocode}
\def\mglsetupscript{%
\@bsphack%
\MGL@set@script@name{\mglsetupscriptname}%
\MGL@codes%
\def\verbatim@processline{\MGL@write\MGL@out@stream{\the\verbatim@line}}%
\MGL@openout\MGL@out@stream{\MGL@dir\MGL@scripts@dir\MGL@script.mgl}%
\verbatim@start%
}
% \end{macrocode}
% It is declared to be an only-preamble command, so it can't be used after the |\begin{document}| instruction.
% \begin{macrocode}
\@onlypreamble\mglsetupscript
% \end{macrocode}
% \end{macro}
% \begin{macro}{\mglcommon}
% This macro is defined to be a synonym for |\mglcommon| (to keep backwards compatibility).
% \begin{macrocode}
\let\mglcommon\mglsetupscript
\@onlypreamble\mglcommon
% \end{macrocode}
% \end{macro}
% \begin{macro}{\endmglsetupscript}
% It ends the |mglsetupscript| environment.
% \begin{macrocode}
\def\endmglsetupscript{%
\MGL@closeout\MGL@out@stream%
\@esphack%
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\endmglcommon}
% It is defined to be a synonym for |\endmglsetupscript|.
% \begin{macrocode}
\let\endmglcommon\endmglsetupscript
% \end{macrocode}
% \end{macro}
% \end{environment}\end{environment}
%
% \subsection{Fast creation of graphics}
% \begin{environment}{mglsetup}
% This environment is meant to contain code that is executed just before the instruction of a |\mglplot| command, producing always the same ouput. Instead of writing a new chunk of code for that purpose, |mglsetup| is defined as a special case of the |mglfunc| environment, with the exception that the MGL function obtained this way doesn't accept any argument ---thus producing always the same output.
% \begin{macro}{\mglsetup}
% It is defined as an alias for |\mglfunc|, but only the name of the MGL function is passed to it, forcing the assumption that its number of arguments is zero.
% \begin{macrocode}
\def\mglsetup#1{\mglfunc{#1}}%
% \end{macrocode}
% \end{macro}
% \begin{macro}{\endmglsetup}
% Likewise, it is defined as an alias for |\endmglfunc|.
% \begin{macrocode}
\let\endmglsetup\endmglfunc
% \end{macrocode}
% \end{macro}
% \end{environment}
%
% \begin{macro}{\mglplot}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{Added \doccommand{bgroup} and \doccommand{egroup} in order to keep changes private}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{New command options: \texttt{gray}, \texttt{mglscale}, \texttt{quality}, \texttt{variant}}
% Although the function of this command is quite simple and straightforward, it requires many lines of code and some tricks in order to reach the desired functionality.
% \begin{macrocode}
\newcommand\mglplot[2][]{%
% \end{macrocode}
% Since this is a command, we need to explicitly create a local group so that all changes keep private to the command.\footnote{In contrast, environments keep changes private by default.}
% \begin{macrocode}
\bgroup%
% \end{macrocode}
% We add some \meta{key}=\meta{value} pairs locally. The |label| key works exactly as the one of the |mgl| environment.
% \begin{macrocode}
\define@key{MGL@gr@keys}{label}{\edef\MGL@script{##1}}%
% \end{macrocode}
% The |setup| key defines the variable |\MGL@mglplot@setup| which is later used to call a setup function for the corresponding image.
% \begin{macrocode}
\define@key{MGL@gr@keys}{setup}{\def\MGL@mglplot@setup{##1}}%
% \end{macrocode}
% The |separator| key uses the |\MGL@def@for@loop| to define |\MGL@for| so that it iterates over lists separated by the indicated separator symbol.
% \begin{macrocode}
\define@key{MGL@gr@keys}{separator}{\MGL@def@for@loop{##1}}%
% \end{macrocode}
% Now, we process the keys passed by the user.
% \begin{macrocode}
\MGL@setkeys{MGL@gr@keys}{#1}%
% \end{macrocode}
% If the user hasn't specified a name using the |label| option, then a name is autogenerated following the same naming mechanism of the |mgl| environment.
% \begin{macrocode}
\@ifundefined{MGL@script}{%
\stepcounter{MGL@script@no}
\edef\MGL@script{\MGL@main@script@name-MGL-\arabic{MGL@script@no}}
}{}%
% \end{macrocode}
% The name of the script is checked.
% \begin{macrocode}
\MGL@set@script@name{\MGL@script}%
% \end{macrocode}
% If the user hasn't specified a setup, then the only code that has to be written is the non-optional argument of |\mglplot|; it is stored in the temporary variable |\MGL@temp@a|.
% \begin{macrocode}
\@ifundefined{MGL@mglplot@setup}{%
\edef\MGL@temp@a{#2}%
}{%
% \end{macrocode}
% If the user has specified a setup, we store the code to call the setup and the code passed by the user in the temporary variable |\MGL@temp@a|.
% \begin{macrocode}
\edef\MGL@temp@a{call '\MGL@mglplot@setup'^^J#2}%
}
% \end{macrocode}
% If the code has changed the last time \LaTeX{} has been run, we call |\mglplot@write@script| to (re)write and (re)compile the script; otherwise, we call |\mglplot@compare@code| to check if it has changed this time.
% \begin{macrocode}
\MGL@process@script{%
\mglplot@write@script%
}{%
\mglplot@compare@code%
}%
% \end{macrocode}
% The corresponding image is included in the document.
% \begin{macrocode}
\MGL@includegraphics%
% \end{macrocode}
% Finally, the local group is closed.
% \begin{macrocode}
\egroup%
}
% \end{macrocode}
% \begin{macro}{\mglplot@write@script}
% This command takes the code stored in the |\MGL@temp@a| variable by the |\mglplot| command and writes it to the document's main script and to a backup file, so changes in the code can be detected.
% \begin{macrocode}
\def\mglplot@write@script{%
% \end{macrocode}
% The default quality is written to the main script.
% \begin{macrocode}
\MGL@write\MGL@main@stream{%
gray \MGL@gray^^J%
setsizescl \MGL@scale^^J%
quality \MGL@quality^^J%
variant \MGL@variant%
}%
% \end{macrocode}
% The backup file is opened to write in the output stream.
% \begin{macrocode}
\MGL@openout\MGL@out@stream{\MGL@dir\MGL@backups@dir\MGL@script.mgl}%
% \end{macrocode}
% Now we use the |\MGL@for| command to iterate over |\MGL@temp@a|. It takes a piece of code up to the separator symbol indicated by the user, and stores it in the temporary variable |\MGL@temp@b|, which is then written to the main script and backup file.
% \begin{macrocode}
\MGL@for\MGL@temp@b:=\MGL@temp@a\do{%
\MGL@write\MGL@main@stream{\MGL@temp@b}%
\MGL@write\MGL@out@stream{\MGL@temp@b}%
}%
% \end{macrocode}
% The output stream is closed.
% \begin{macrocode}
\MGL@closeout\MGL@out@stream%
% \end{macrocode}
% The instructions to save the image and reset the MGL parameters are written to the main script.
% \begin{macrocode}
\MGL@write\MGL@main@stream{%
write '\MGL@dir\MGL@graphics@dir\MGL@script\MGL@imgext'^^J%
^^Jreset^^J%
}%
% \end{macrocode}
% Finally, |\MGL@unchanged{\MGL@script}| is written to the |.aux| file.
% \begin{macrocode}
\MGL@write\@auxout{\string\MGL@unchanged{\MGL@script}}%
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\mglplot@compare@code}
% This macro is in charge of comparing the code from a |\mglplot| command to detect changes.
% \begin{macrocode}
\def\mglplot@compare@code{%
% \end{macrocode}
% The action that will finish this command is, for now, to write |\MGL@unchanged{\MGL@script}| in the |.aux| file; it is stored in the |\MGL@next| variable. If no changes in the code are found, this will remain as the last action; otherwise, it will be overwritten to do nothing.
% \begin{macrocode}
\def\MGL@next{\MGL@write\@auxout{\string\MGL@unchanged{\MGL@script}}}%
% \end{macrocode}
% The backup file is opened for reading in the input stream.
% \begin{macrocode}
\MGL@openin\MGL@in@stream{\MGL@dir\MGL@backups@dir\MGL@script.mgl}%
% \end{macrocode}
% Once again, the |\MGL@for| command is used to iterate over the |\MGL@temp@a| variable defined by |\mglplot|. Pieces of code are taken up to the appearance of the separator symbol indicated by the user. In every iteration, the corresponding piece of code is stored in the |\MGL@temp@b| variable, one line of code is read from the input stream to the variable |\MGL@temp@c|, and these two are compared; if they are different, we redefined |\MGL@next| to do nothing.
% \begin{macrocode}
\MGL@for\MGL@temp@b:=\MGL@temp@a\do{%
\MGL@read\MGL@in@stream{\MGL@temp@c}%
\ifx\MGL@temp@b\MGL@temp@c\else%
\let\MGL@next\relax%
\fi%
}%
% \end{macrocode}
% The input stream is closed.
% \begin{macrocode}
\MGL@closein\MGL@in@stream%
% \end{macrocode}
% |\MGL@next| is executed.
% \begin{macrocode}
\MGL@next%
}
% \end{macrocode}
% \end{macro}
% \end{macro}
%
% \subsection{Verbatim-like environments}
% \begin{environment}{mglblock}
% \begin{environment}{mglblock*}
% The main body of these environments is the same; the only difference is that the unstarred version creates an entry in the |\listofmglscripts|, while the starred version doesn't.
% \begin{macro}{\mglblock}
% This command defines the switch |\@MGL@list@script@| as true, so a |\listofmglscripts| entry for the code is created, then calls the main body of the environment (|\mglblock@|).
% \begin{macrocode}
\def\mglblock{\@MGL@list@script@true\mglblock@}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\mglblock*}
% This command defines the switch |\@MGL@list@script@| as false, so no |\listofmglscripts| entry is created, then calls the main body of the environment (|\mglblock@|).
% \begin{macrocode}
\@namedef{mglblock*}{\@MGL@list@script@false\mglblock@}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\mglblock@}
% This macro contains the real functionality of the |mglblock| and |mglblock*| environments. It is the common code they both have.
% \begin{macrocode}
\newcommand\mglblock@[2][]{%
% \end{macrocode}
% First, the switch |\@MGL@lineno@| is set to true, so the lines of code will be numbered by default.
% \begin{macrocode}
\@MGL@lineno@true%
% \end{macrocode}
% Now we process the decision of the user of keeping the line numbering or not.
% \begin{macrocode}
\setkeys{MGL@verb@keys}{#1}%
% \end{macrocode}
% The name of the script is checked for repetition.
% \begin{macrocode}
\MGL@set@script@name{#2}%
% \end{macrocode}
% If the switch |\@MGL@list@script@| is true, we increase the counter for verbatim code (|MGL@verb@no|), and add a contents line to the |.lms| file, using the style set by |\l@MGL@script|. In order to be able to use special characters in the name of the script, we use the |\detokenize| primitive.
% \begin{macrocode}
\if@MGL@list@script@%
\refstepcounter{MGL@verb@no}%
\addcontentsline{lms}{MGL@script}{%
\protect\numberline{\theMGL@verb@no.}%
{\ttfamily\protect\detokenize{\MGL@script.mgl}}%
}%
\fi%
% \end{macrocode}
% If the switch |\@MGL@lineno@| is true, we create a list such that each item will be labeled or numbered by the |MGL@lineno| counter. The style for the label is set by |\mgllinenostyle|.
% \begin{macrocode}
\if@MGL@lineno@%
\list{\mgllinenostyle\arabic{MGL@line@no}.}{\usecounter{MGL@line@no}}%
% \end{macrocode}
% Otherwise, we create a list without labeling for the items.
% \begin{macrocode}
\else%
\list{}{}%
\fi%
% \end{macrocode}
% The parameters for the environment are set.
% \begin{macrocode}
\MGL@set@verbatim@code%
% \end{macrocode}
% The thickness of the box that will contain the name of the script has to be the same as the thickness for the separation line at the begining of the verbatim code.
% \begin{macrocode}
\fboxrule=\mgllinethickness%
% \end{macrocode}
% The separator to indicate the begining of the verbatim code is positioned; we use the |\MGL@line@sep| command to draw it.
% \begin{macrocode}
\item[\MGL@line@sep]\fbox{%
\bfseries\ttfamily\expandafter\detokenize\expandafter{\MGL@script.mgl}%
}\hskip\labelsep\MGL@line@sep\par\par%
% \end{macrocode}
% The |\verbatim@processline| is redefined to put |\the\verbatim@line| in an item of the list, and to to also write it to the script file.
% \begin{macrocode}
\def\verbatim@processline{%
\item\the\verbatim@line%
\MGL@write\MGL@out@stream{\the\verbatim@line}%
}%
% \end{macrocode}
% The script file is opened for writing.
% \begin{macrocode}
\MGL@openout\MGL@out@stream{\MGL@dir\MGL@scripts@dir\MGL@script.mgl}%
% \end{macrocode}
% The writing process starts.
% \begin{macrocode}
\verbatim@start%
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\endmglblock}
% To finish the environment's work, the script file is closed, the separator indicating the end of the verbatim code is placed, and the list is ended.
% \begin{macrocode}
\def\endmglblock{%
\MGL@closeout\MGL@out@stream%
\item[\MGL@line@sep]\hskip-\labelsep\MGL@line@sep%
\endlist%
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\endmglblock*}
% It is defined as an alias for |\endmglblock|.
% \begin{macrocode}
\expandafter\let\csname endmglblock*\endcsname\endmglblock
% \end{macrocode}
% \end{macro}
% \end{environment}
% \end{environment}
%
% \begin{environment}{mglverbatim}
% \begin{environment}{mglverbatim*}
% These two environments have the same main body. They difference in that the unstarred version creates an entry for the |\listofmglscripts|, while the starred version doesn't. We will apply a similar approach to the used for the |mglblock| and |mglblock*| environments.
% \begin{macro}{\mglverbatim}
% Similar in function to |\mglblock|.
% \begin{macrocode}
\def\mglverbatim{\@MGL@list@script@true\mglverbatim@}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\mglverbatim}
% Similar in function to |\mglblock*|.
% \begin{macrocode}
\@namedef{mglverbatim*}{\@MGL@list@script@false\mglverbatim@}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\mglverbatim@}
% The main body of these environments; it's similar to |\mglblock@|. To explain each line of this command would be repetitive, so we explain only the different parts.
% \begin{macrocode}
\newcommand\mglverbatim@[1][]{%
\@MGL@lineno@true%
\define@key{MGL@verb@keys}{label}{\edef\MGL@script{##1}}%
\setkeys{MGL@verb@keys}{#1}%
\if@MGL@lineno@%
\list{\mgllinenostyle\arabic{MGL@line@no}.}{\usecounter{MGL@line@no}}%
\else%
\list{}{}%
\fi%
\MGL@set@verbatim@code%
\fboxrule=\mgllinethickness%
% \end{macrocode}
% The separator that indicates the begining of the verbatim code is different depending on whether the user has specified a name associated to the code or not. If no name has been indicated, i.e., |\MGL@script| is undefined, the separator is just a line; otherwise, i.e., |\MGL@script| is defined, the separator is similar to the one of the |mglblock| environment.
% \begin{macrocode}
\@ifundefined{MGL@script}{%
\edef\MGL@script{\mglverbatimname}%
\item[\MGL@line@sep]\hskip-\labelsep\MGL@line@sep%
}{%
\item[\MGL@line@sep]\fbox{%
\bfseries\ttfamily\expandafter\detokenize\expandafter{\MGL@script.mgl}%
}\hskip\labelsep\MGL@line@sep\par\par%
}%
% \end{macrocode}
% Note that, if the user requests an entry in the |\listofmglscripts|, the contents line is added to the same |.lms| file. So here start the similitudes again.
% \begin{macrocode}
\if@MGL@list@script@%
\refstepcounter{MGL@verb@no}%
\addcontentsline{lms}{MGL@script}{%
\protect\numberline{\theMGL@verb@no.}%
{\ttfamily\protect\detokenize{\MGL@script}}%
}%
\fi%
\def\verbatim@processline{%
\item\the\verbatim@line%
}%
\verbatim@start%
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\endmglverbatim}
% This command could be defined as an alias for |\endmglblock|, for they execute the same instructions. But, for the sake of congruence, we rewrite the code.
% \begin{macrocode}
\def\endmglverbatim{%
\MGL@closeout\MGL@out@stream%
\item[\MGL@line@sep]\hskip-\labelsep\MGL@line@sep%
\endlist%
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\endmglverbatim*}
% It is an alias for |\endmglverbatim|.
% \begin{macrocode}
\expandafter\let\csname endmglverbatim*\endcsname\endmglverbatim
% \end{macrocode}
% \end{macro}
% \end{environment}
% \end{environment}
%
% \begin{environment}{mglcomment}
% This environment has two different behaviors: When comments are allowed by the user, it behaves similarly to the |mglverbatim| environment; if comments are not allowed, it behaves as the |comment| environment from the \textsf{verbatim} package. So it is natural that we borrow code from them and adapt it to the corresponding situation.
% \begin{macro}{\mglcomment}
% The switch |\@MGL@comments@| governs the behavior of this command.
% \begin{macrocode}
\def\mglcomment{%
% \end{macrocode}
% If the switch is true, i.e., the user requests displaying of comments, we start a list without labels, and set the parameters for verbatim text.
% \begin{macrocode}
\if@MGL@comments@%
\list{}{}%
\MGL@set@verbatim@code%
% \end{macrocode}
% The separator indicating the begining of the comment is similar to the one used by the |mglblock| and |mglverbatim| environments; the differences are that, instead of using a solid line, we use a dashed line (|\MGL@dash@sep|), and instead of displaying the name of a script, we display |\mglcommentname|.
% \begin{macrocode}
\item\hskip-\labelsep<\MGL@dash@sep\mglcommentname\MGL@dash@sep>%
% \end{macrocode}
% The two following lines redefine the |\verbatim@processline| command to display the comment text line by line as items of the list, and start the process of writing the text.
% \begin{macrocode}
\def\verbatim@processline{\item\the\verbatim@line}%
\verbatim@start%
% \end{macrocode}
% If the switch is false, i.e., the user requests no to display comments, we start a \emph{space hack}, since no text output will be produced. Then, the category codes are changed with |\MGL@codes|, and the macros |\verbatim@startline|, |\verbatim@addtoline|, |\verbatim@processline| and |\verbatim@finish| are disabled, as done in the |comment| environment of the \textsf{verbatim} package. Finally, we call the |\verbatim@| command to start reading the text in the environment.
% \begin{macrocode}
\else%
\@bsphack%
\MGL@codes%
\let\verbatim@startline\relax%
\let\verbatim@addtoline\@gobble%
\let\verbatim@processline\relax%
\let\verbatim@finish\relax%
\verbatim@%
\fi%
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\endmglcomment}
% The |\@MGL@comments@| switch also governs the behavior of this command. If it's true, then the separator that ends the comment ---which is the same as the one that starts it--- is displayed, and the list is ended; otherwise, simply the \emph{space hack} is ended.
% \begin{macrocode}
\def\endmglcomment{%
\if@MGL@comments@%
\item\hskip-\labelsep<\MGL@dash@sep\mglcommentname\MGL@dash@sep>%
\endlist%
\else%
\@esphack%
\fi%
}
% \end{macrocode}
% \end{macro}
% \end{environment}
%
% \subsection{Commands for external scripts}
% \noindent Since external scripts exist independently of the \LaTeX{} document, there is no need of environments to process them, just commands. Remember these commands work on the suposition that the scripts don't change.
%
% \begin{macro}{\mglgraphics}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{New command options: \texttt{gray}, \texttt{mglscale}, \texttt{quality}, \texttt{variant}}
% This command compiles the external script and includes it in the document. Although that process is simple, the code to execute it is relatively large due to the possibility of the user specifying an optional path, so many parameters have to be checked.
% \begin{macrocode}
\newcommand\mglgraphics[2][]{%
% \end{macrocode}
% In order to keep all definitions and changes local, we start a local group inside which all \LaTeX{} code will be contained.
% \begin{macrocode}
\bgroup%
% \end{macrocode}
% We add the option |path| for the user to be able to specify the location of the script, which is stored in the variable |\MGL@force@path|.
% \begin{macrocode}
\define@key{MGL@gr@keys}{path}{\def\MGL@forced@path{##1}}%
% \end{macrocode}
% The optional arguments are processed.
% \begin{macrocode}
\MGL@setkeys{MGL@gr@keys}{#1}%
% \end{macrocode}
% The name of the script is set, though it is not check for multiple naming. This is necessary, since |\MGL@includegraphics| uses this macro.
% \begin{macrocode}
\edef\MGL@script{#2}%
% \end{macrocode}
% If the corresponding image exists, then this script has been compiled in a previous \LaTeX{} run, so nothing is done, but the inclusion of the image.
% \begin{macrocode}
\IfFileExists{\MGL@dir\MGL@graphics@dir\MGL@script\MGL@imgext}{}{%
% \end{macrocode}
% If the image doesn't exist, we check if the user has specified a custom location.
% \begin{macrocode}
\@ifundefined{MGL@forced@path}{%
% \end{macrocode}
% If no custom location has been used, we iterate over the list of search paths (|\MGL@paths|): If we find the requested script, then we store its location in |\MGL@temp@b|.
% \begin{macrocode}
\@for\MGL@temp@a:=\MGL@paths\do{%
\IfFileExists{\MGL@temp@a\MGL@script.mgl}{%
\edef\MGL@temp@b{\MGL@temp@a}%
}{}%
}%
}{%
% \end{macrocode}
% If the user has specified a path for the script, we check if the script actually exists. If it does, we store its location inside |\MGL@temp@b|.
% \begin{macrocode}
\IfFileExists{\MGL@forced@path\MGL@script.mgl}{%
\edef\MGL@temp@b{\MGL@forced@path}%
}{}%
}%
% \end{macrocode}
% If |\MGL@temp@b| is not defined, the script has not been found, so a warning is issued.
% \begin{macrocode}
\@ifundefined{MGL@temp@b}{%
\PackageWarning{mgltex}{%
MGL script "\MGL@script.mgl" not found%
}%
}{%
% \end{macrocode}
% If |\MGL@temp@b| is defined, the script has been found, so we compile it.
% \begin{macrocode}
\MGL@write{18}{%
mglconv -q \MGL@quality\space -g \MGL@gray\space%
-S \MGL@scale\space -v \MGL@variant\space%
-s "\MGL@dir\MGL@scripts@dir\mglsetupscriptname.mgl"\space%
-o "\MGL@dir\MGL@graphics@dir\MGL@script\MGL@imgext"\space%
"\MGL@temp@b\MGL@script.mgl"%
}%
}%
}%
% \end{macrocode}
% The image is included.
% \begin{macrocode}
\MGL@includegraphics%
% \end{macrocode}
% The local group ends here.
% \begin{macrocode}
\egroup%
}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\mglinclude}\begin{macro}{\mglinclude*}
% The purpose of these commands is to transcript the MGL code from a script. Once again, this is a straightforward functionality, but the code is quite large, so it has been separated in various macros.
%
% The unstarred version defines the |\@MGL@list@script@| switch to be true, so the script is listed with the |\listofmglscripts| command, and then it calls the main body of code (|\mglinclude@|), just like the |mglblock| environment does. The starred version defines the switch as false and calls the main body, too.
% \begin{macrocode}
\def\mglinclude{\@MGL@list@script@true\mglinclude@}
\@namedef{mglinclude*}{\@MGL@list@script@false\mglinclude@}
% \end{macrocode}
% \begin{macro}{\mglinclude@}
% \begin{macrocode}
\newcommand\mglinclude@[2][]{%
% \end{macrocode}
% We start a local group to keep definitions and changes local.
% \begin{macrocode}
\bgroup%
% \end{macrocode}
% The default behavior is to number lines of MGL code, so the switch |\@MGL@lineno@| is set to true.
% \begin{macrocode}
\@MGL@lineno@true%
% \end{macrocode}
% We add the option |path| for the user to be able to specify the location of the script, which is stored in |\MGL@forced@path|.
% \begin{macrocode}
\define@key{MGL@verb@keys}{path}{\def\MGL@forced@path{##1}}%
% \end{macrocode}
% The options are processed.
% \begin{macrocode}
\setkeys{MGL@verb@keys}{#1}%
% \end{macrocode}
% We don't need to check if there are multiple scripts with the same name, so we namually set |\MGL@script|, instead of using |\MGL@set@script@name|.
% \begin{macrocode}
\edef\MGL@script{#2}%
% \end{macrocode}
% We check if the user has specified a custom location for the script.
% \begin{macrocode}
\@ifundefined{MGL@forced@path}{%
% \end{macrocode}
% If no custom location has been used, we iterate over the list |\MGL@paths| to find the script.
% \begin{macrocode}
\@for\MGL@temp@b:=\MGL@paths\do{%
% \end{macrocode}
% If the script exists, we store its location in |\MGL@temp@a|%
% \begin{macrocode}
\IfFileExists{\MGL@temp@b\MGL@script.mgl}{%
\edef\MGL@temp@a{\MGL@temp@b}%
}{}%
}%
}{%
% \end{macrocode}
% If the user specified the location of the script, we check if it exists, in which case we store its location in |\MGL@temp@a|.
% \begin{macrocode}
\IfFileExists{\MGL@script.mgl}{%
\edef\MGL@temp@a{\MGL@forced@path}%
}{}%
}%
% \end{macrocode}
% If |\MGL@temp@a| is not defined, the script has not been found, so we issue a warning, and display a box in the document with the words \emph{MGL script not found}.
% \begin{macrocode}
\@ifundefined{MGL@temp@a}{%
\PackageWarning{mgltex}{%
MGL script "\MGL@forced@path\MGL@script.mgl" not found%
}%
\center%
\fbox{%
\centering%
\bfseries\Huge%
\begin{tabular}{c}MGL\\script\\not\\found\end{tabular}%
}%
\endcenter%
}{%
% \end{macrocode}
% If |\MGL@temp@a| is defined, the script has been found, so we call |\mglinclude@@| to set up the inclusion of the script.
% \begin{macrocode}
\mglinclude@@%
}%
\egroup%
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\mglinclude@@}
% This macro sets the parameters for the inclusion of the script, and calls the command in charge of the transcription.
% \begin{macrocode}
\def\mglinclude@@{%
% \end{macrocode}
% We first add the script to the \LaTeX{} list of included files.
% \begin{macrocode}
\@addtofilelist{\MGL@script.mgl}%
% \end{macrocode}
% If the user has used the unstarred version of |\mglinclude|, we add a contents line to the |.lms| file.
% \begin{macrocode}
\if@MGL@list@script@%
\refstepcounter{MGL@verb@no}%
\addcontentsline{lms}{MGL@script}{%
\protect\numberline{\theMGL@verb@no.}%
{\ttfamily\protect\detokenize{\MGL@script.mgl}}%
}%
\fi%
% \end{macrocode}
% We start a |\list| in which each line of code will be an item. If the lines have to be numbered, we use the |MGL@line@no| counter.
% \begin{macrocode}
\if@MGL@lineno@%
\list{\mgllinenostyle\arabic{MGL@line@no}.}{\usecounter{MGL@line@no}}%
\else%
\list{}{}%
\fi%
% \end{macrocode}
% We set the parameters for a verbatim code.
% \begin{macrocode}
\MGL@set@verbatim@code%
% \end{macrocode}
% The heading of the environment is set. It is similar to that of the |mglblock| environment.
% \begin{macrocode}
\fboxrule=\mgllinethickness%
\item[\MGL@line@sep]\fbox{%
\bfseries\ttfamily\expandafter\detokenize\expandafter{\MGL@script.mgl}%
}\hskip\labelsep\MGL@line@sep\par\par%
% \end{macrocode}
% We redefine the |\verbatim@processline| macro from the \textsf{verbatim} package to put |\the\verbatim@line| on an item.
% \begin{macrocode}
\def\verbatim@processline{%
\item\the\verbatim@line%
}%
% \end{macrocode}
% The script is opened for reading.
% \begin{macrocode}
\immediate\openin\MGL@in@stream="\MGL@temp@a\MGL@script.mgl"%
% \end{macrocode}
% We call |\mglinclude@@@| to start the transcription.
% \begin{macrocode}
\mglinclude@@@%
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\mglinclude@@@}
% This command transcripts the MGL code of the script and closes the list started in |\mglinclude@@|, adding the corresponding separation line to separate the code from normal text.
% \begin{macrocode}
\def\mglinclude@@@{%
% \end{macrocode}
% Since the transcription has to be done even when \textsf{\mglTeX} is off, instead of using the |\MGL@read| command ---which is inactive when the package is off---, we use the usual commands from \LaTeX{} to read from the file.
% \begin{macrocode}
\immediate\read\MGL@in@stream to \MGL@temp@b%
% \end{macrocode}
% If the end of file has been reached, we close the input stream, add the separation line, and end the |\list|.
% \begin{macrocode}
\ifeof\MGL@in@stream%
\immediate\closein\MGL@in@stream%
\item[\MGL@line@sep]\hskip-\labelsep\MGL@line@sep%
\endlist%
% \end{macrocode}
% Otherwise, we use |\verbatim@startline| to clean the |\verbatim@line| buffer, then we add the just read line to the buffer, and call |\verbatim@processline| to include it as an item of the list. Finally, we recursively call |\mglinclude@@@| to read the next line.
% \begin{macrocode}
\else%
\verbatim@startline%
\expandafter\verbatim@addtoline\expandafter{\MGL@temp@b}%
\verbatim@processline%
\expandafter\mglinclude@@@%
\fi%
}
% \end{macrocode}
% \end{macro}
% \end{macro}\end{macro}
%
% \subsection{Additional commands}
% \begin{macro}{\listofmglscripts}
% \noindent This command creates the \emph{list of MGL scripts} section. It has to be defined differently depending on whether the used document class defines the |\l@chapter| command or it only the |\l@section| command, which set the style for making a table of contents entry for the |\chapter| command and the |\section| command, respectively. If none of them are defined, we define our own style based on the latter.
% \begin{macrocode}
\ifx\l@chapter\@undefined%
% \end{macrocode}
% If |\l@chapter| is not defined, we check if |\l@section| is.
% \begin{macrocode}
\ifx\l@section\@undefined%
% \end{macrocode}
% If |\l@section| is not defined, we set the |\lisofmglscripts| command to perform exactly as the |\section*{\listofmglscriptsname}| would do in the usual \textsf{book} and \textsf{article} \LaTeX{} classes, except that the type of section is |MGL@list|.
% \begin{macrocode}
\def\listofmglscripts{%
\@startsection{MGL@list}%
{1}{0em}{-3.5ex plus -1ex minus -0.2ex}%
{2.5ex plus 0.2ex}%
{\centering\normalfont\bfseries\large}*%
{\listofmglscriptsname}%
% \end{macrocode}
% We use the |\@mkboth| command to set the page marks according to the current page style.
% \begin{macrocode}
\@mkboth{%
\MakeUppercase\listofmglscriptsname%
}{%
\MakeUppercase\listofmglscriptsname%
}%
% \end{macrocode}
% The \emph{list of MGL scripts} is created by reading the document's |.lms| file.
% \begin{macrocode}
\@starttoc{lms}%
}%
% \end{macrocode}
% The |\l@MGL@list| style has the same code as the |\l@section| style.
% \begin{macrocode}
\newcommand*\l@MGL@list[2]{%
\ifnum \c@tocdepth >\z@
\addpenalty\@secpenalty
\addvspace{1.0em \@plus\p@}%
\setlength\@tempdima{1.5em}%
\begingroup
\parindent \z@ \rightskip \@pnumwidth
\parfillskip -\@pnumwidth
\leavevmode \bfseries
\advance\leftskip\@tempdima
\hskip -\leftskip
#1\nobreak\hfil \nobreak\hb@xt@\@pnumwidth{\hss #2}\par
\endgroup
\fi%
}%
\else%
% \end{macrocode}
% If the |\l@section| style is defined, the \emph{list of MGL scripts} is just an unumbered section.
% \begin{macrocode}
\def\listofmglscripts{%
\section*{\listofmglscriptsname}%
\@mkboth{%
\MakeUppercase\listofmglscriptsname%
}{%
\MakeUppercase\listofmglscriptsname%
}%
\@starttoc{lms}%
}%
\fi%
\else%
% \end{macrocode}
% If the |\l@chapter| style is defined, the \emph{list of MGL scripts} is just an unumbered chapter.
% \begin{macrocode}
\def\listofmglscripts{%
\chapter*{\listofmglscriptsname}%
\@mkboth{%
\MakeUppercase\listofmglscriptsname%
}{%
\MakeUppercase\listofmglscriptsname%
}%
\@starttoc{lms}%
}%
\fi%
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\mglTeX}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{Add a small negative space in the logo, between the ``mgl'' and ``\TeX''}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{Declared now as robust command}
% This macro pretty-prints the name of the package. It has a starred version, which also prints the version.
% \begin{macrocode}
\DeclareRobustCommand\mglTeX{%
mgl\TeX\@ifstar{~v4.2}{}%
}
% \end{macrocode}
% \end{macro}
%
% \subsection{Local settings commands}
% \begin{macro}{\mglswitch}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{Now accepts arguments \texttt{0} (equivalent to \texttt{off}) and \texttt{1} (equivalent to \texttt{on}), besides the usual \texttt{off} and \texttt{on}}
% \noindent This command turns |on| and |off| the package according to its argument; it is just a call to the commands |\MGL@switch@on| or |\MGL@switch@off|.
% \begin{macrocode}
\def\mglswitch#1{%
\MGL@test@switch{#1}{\mglswitch}%
\csname MGL@switch@\MGL@temp@a\endcsname%
}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\mglcomments}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{Now accepts arguments \texttt{0} (equivalent to \texttt{off}) and \texttt{1} (equivalent to \texttt{on}), besides the usual \texttt{off} and \texttt{on}}
% Depending on the option passed by the user, it calls |\@MGL@comments@on| or |\@MGL@comments@off|.
% \begin{macrocode}
\def\mglcomments#1{%
\MGL@test@switch{#1}{\mglcomments}%
\csname @MGL@comments@\MGL@temp@a\endcsname%
}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\mglquality}
% See under the title \emph{Initialization}, subsection \ref{Init}.
% \end{macro}
%
% \begin{macro}{\mglscale}
% See under the title \emph{Initialization}, subsection \ref{Init}.
% \end{macro}
%
% \begin{macro}{\mglvariant}
% See under the title \emph{Initialization}, subsection \ref{Init}.
% \end{macro}
%
% \begin{macro}{\mglimgext}
% This command changes the value of |\MGL@imgext|.
% \begin{macrocode}
\def\mglimgext#1{\def\MGL@imgext{#1}}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\mglname}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{Now writes the MGL code line \texttt{setsize~600~400} to the main script}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{The MGL code line \texttt{setsize~600~400} is now written to the main script}
% \noindent The purpose of this command is to force the closure of the current main script, compile the corresponding figures, and open a new main script. At first, it is defined to only change the value of |\MGL@main@script@name| because the main script is not opened until the call of |\begin{document}|; but at that point, it is redefined to perform the described actions.
% \begin{macrocode}
\def\mglname#1{\edef\MGL@main@script@name{#1}}
% \end{macrocode}
% Here is the redefinition of |\mglname| after the |\begin{document}| command.
% \begin{macrocode}
\AtBeginDocument{%
\def\mglname#1{%
% \end{macrocode}
% We start a space hack, ince this function has no real effect on the document.
% \begin{macrocode}
\@bsphack%
% \end{macrocode}
% The MGL functions created throughout the document are written.
% \begin{macrocode}
\MGL@write@funcs%
% \end{macrocode}
% We force the closure of the main script. We use |\immediate\closeout| instead of |\MGL@closeout| in case \textsf{\mglTeX} is off.
% \begin{macrocode}
\immediate\closeout{\MGL@main@stream}%
% \end{macrocode}
% The closed script is compiled.
% \begin{macrocode}
\MGL@write{18}{%
mglconv -q \MGL@quality\space -g \MGL@gray\space%
-S \MGL@scale\space -v \MGL@variant\space%
-s "\MGL@dir\MGL@scripts@dir\mglsetupscriptname.mgl"\space%
-n "\MGL@dir\MGL@scripts@dir\MGL@main@script@name.mgl"%
}%
% \end{macrocode}
% The name of the new main script is updated, and it is check for overwriting, using |\MGL@set@script@name| inside a local group, since this command defines |\MGL@script|, which we need undefined in some parts of the code of the package.
% \begin{macrocode}
\edef\MGL@main@script@name{#1}%
\bgroup\MGL@set@script@name{\MGL@main@script@name}\egroup%
\MGL@openout\MGL@main@stream{%
\MGL@dir\MGL@scripts@dir\MGL@main@script@name.mgl%
}%
% \end{macrocode}
% We set the default size for the graphics that the main script will generate; without this line the |setsizescl| commands written automatically by \textsf{\mglTeX} wouldn't work.
% \begin{macrocode}
\MGL@write\MGL@main@script@name{setsize 600 400}
% \end{macrocode}
% The space hack is ended.
% \begin{macrocode}
\@esphack%
}%
}
% \end{macrocode}
% \end{macro}
%
% \subsection{Advanced settings commands}
% \begin{macro}{\mgldir}
% \noindent This command is the interface for the user to change the value of |\MGL@dir|. It is an only-preamble macro, since using it elsewhere would cause faulty behavior.
% \begin{macrocode}
\def\mgldir#1{\def\MGL@dir{#1}}\@onlypreamble\mgldir
% \end{macrocode}
% \end{macro}
% \begin{macro}{\mglscriptsdir}
% This command modifies the value of |\MGL@scripts@dir|. It is also an only-preamble macro.
% \begin{macrocode}
\def\mglscriptsdir#1{\def\MGL@scripts@dir{#1}}\@onlypreamble\mglscriptsdir
% \end{macrocode}
% \end{macro}
% \begin{macro}{\mglgraphicsdir}
% Modifies the value of |\MGL@graphics@dir|. It is an only-preamble macro.
% \begin{macrocode}
\def\mglgraphicsdir#1{\def\MGL@graphics@dir{#1}}\@onlypreamble\mglgraphicsdir
% \end{macrocode}
% \end{macro}
% \begin{macro}{\mglbackupsdir}
% Modifies the value of |\MGL@backups@dir|. It is an only-preamble macro.
% \begin{macrocode}
\def\mglbackupsdir#1{\def\MGL@backups@dir{#1}}\@onlypreamble\mglbackupsdir
% \end{macrocode}
% \end{macro}
% \begin{macro}{\mglpaths}
% This command adds a list of search paths for scripts to the existing one (|\MGL@paths|).
% \begin{macrocode}
\def\mglpaths#1{\g@addto@macro\MGL@paths{,#1}}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\mglsettings}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{Now calls the \doccommand{mglswitch} and \doccommand{mglcomments} commands for the \texttt{switch} and \texttt{comments} options, respectively}
% \changes{\textbf{v4.2 ------------}}{2016/05/14}{Added options \texttt{gray} and \texttt{variant}}
% First, we define a \meta{key}=\meta{value} family, |MGL@sett@keys|, for this command.
% \begin{macrocode}
\define@key{MGL@sett@keys}{dir}{\def\MGL@dir{#1}}
\define@key{MGL@sett@keys}{scriptsdir}{\def\MGL@scripts@dir{#1}}
\define@key{MGL@sett@keys}{graphicsdir}{\def\MGL@graphics@dir{#1}}
\define@key{MGL@sett@keys}{backupsdir}{\def\MGL@backups@dir{#1}}
\define@key{MGL@sett@keys}{paths}{\g@addto@macro\MGL@paths{,#1}}
\define@key{MGL@sett@keys}{switch}{\mglswitch{#1}}
\define@key{MGL@sett@keys}{comments}{\mglcomments{#1}}
\define@key{MGL@sett@keys}{gray}{\mglgray{#1}}
\define@key{MGL@sett@keys}{mglscale}{\mglscale{#1}}
\define@key{MGL@sett@keys}{quality}{\mglquality{#1}}
\define@key{MGL@sett@keys}{variant}{\mglvariant{#1}}
\define@key{MGL@sett@keys}{imgext}{\def\MGL@imgext{.#1}}
% \end{macrocode}
% The command receives and executes the \meta{key}=\meta{value} pairs for |MGL@sett@keys|. This is an only-preamble command.
% \begin{macrocode}
\def\mglsettings#1{\setkeys{MGL@sett@keys}{#1}}
\@onlypreamble\mglsettings
% \end{macrocode}
% \end{macro}
%
% \subsection{User-definable macros}
% \begin{macro}{\mglsetupscriptname}\begin{macro}{\mglcommentname}\begin{macro}{\listofmglscriptsname}\begin{macro}{\mglverbatimname}\begin{macro}{\mgllinenostyle}\begin{macro}{\mgldashwidth}\begin{macro}{\mgllinethickness}\begin{macro}{\mglbreakindent}
% The user is allowed to modifu these commands, so no |@| symbol is used on them.
% \begin{macrocode}
\def\mglsetupscriptname{MGL_setup_script}
\def\mglcommentname{\mglTeX{} comment}
\def\listofmglscriptsname{List of MGL scripts}
\def\mglverbatimname{(Unnamed MGL verbatim script)}
\def\mgllinenostyle{\footnotesize}
\newdimen\mgldashwidth\mgldashwidth=0.75em
\newdimen\mgllinethickness\mgllinethickness=0.25ex
\newdimen\mglbreakindent\mglbreakindent=1em
% \end{macrocode}
% \end{macro}\end{macro}\end{macro}\end{macro}\end{macro}\end{macro}\end{macro}\end{macro}
%
% \subsection{Final adjustments}
% To finish the code of \textsf{\mglTeX}, we set the behavior of the package at the call of the |\begin{document}| and |\end{document}| commands.
%
% We tell \LaTeX{} to check the name of the document's main script for overwriting. We do this by calling |\MGL@set@script@name| inside a local group, because it defines |\MGL@script|, which we need undefined in certain parts of the code. Then the script is opened. We use |\immediate\openout| instead of |\MGL@openout| for this purpose, since, otherwise, we run the risk of the main script not being created when needed, if the user turns off \textsf{\mglTeX} before the |\begin{document}| command, and turns it on immediately after. Finally, we set the default size for the graphics the main script will generate; without this line the |setsizescl| commands written automatically by \textsf{\mglTeX} wouldn't work.
% \begin{macrocode}
\AtBeginDocument{%
\bgroup\MGL@set@script@name{\MGL@main@script@name}\egroup%
\immediate\openout\MGL@main@stream=%
\MGL@dir\MGL@scripts@dir\MGL@main@script@name.mgl%
\MGL@write\MGL@main@stream{setsize 600 400}%
}
% \end{macrocode}
%
% We also set the actions for the call of |\end{document}|
% \begin{macrocode}
\AtEndDocument{%
% \end{macrocode}
% |\MGL@write@funcs| will simply write the MGL functions throughout the \LaTeX{} document.
% \begin{macrocode}
\MGL@write@funcs%
% \end{macrocode}
% The main script is closed. We use the |\immediate\closeout| construction instead of |\MGL@closeout|, since the script must be closed even when \textsf{\mglTeX} is off.
% \begin{macrocode}
\immediate\closeout\MGL@main@stream%
% \end{macrocode}
% The main script is compiled.
% \begin{macrocode}
\MGL@write{18}{%
mglconv -q \MGL@quality\space -g \MGL@gray\space%
-S \MGL@scale\space -v \MGL@variant\space%
-s "\MGL@dir\MGL@scripts@dir\mglsetupscriptname.mgl"\space%
-n "\MGL@dir\MGL@scripts@dir\MGL@main@script@name.mgl"%
}%
}
% \end{macrocode}
%
% \Finale
|