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 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287
|
<!-- generated from
dantev45.tex, 2011/10/25 DANTE Herbst '11,
with blog.sty, 2011/10/25 -->
<!-- slide width = 1180 -->
<html><head> <meta http-equiv="Content-Type" content="text/html; ISO-8859-1">
<meta name="robots" content="index,follow,noarchive">
<style type="text/css" media="all">
h1 { font-size: 42px; margin-bottom: 21px }
h2 { font-size: 30px; margin-bottom: 21px }
td { font-family:Arial,Verdana,"Lucida Sans",sans-serif; color:#000000; font-size: 21px }
p { margin-bottom:0px }
dl, ol, ul { padding-left: 1em; margin-left: 1em; margin-top: 18px; margin-bottom: 18px; vertical-align: middle; }
dt { margin: 0px; margin-top: 18px; margin-bottom: 9px; padding: 0px }
li { margin: 0px; margin-top: 9px; margin-bottom: 9px; padding: 0px }
blockquote { margin-left: 2em }
pre { margin-left:2em; margin-top:0px }
a:link { color:#0000d0; text-decoration:none; }
a:visited { color:purple; text-decoration:none; }
a:hover { color:blue; text-decoration:underline; }
a:active { color:blue; text-decoration:underline; }
</style>
<title>Dokumentation und HTML mit fifinddo</title>
</head><body bgcolor="#ffffff">
<a name="top-of-page">
<small><code>uwe_lueck</code> <code>></code>
<a href="texmap.htm"><code>texmap</code></a> <code>></code> <code>dantev45-1180-clean</code> – <a href="dantev45-1180-clean.htm"><i>neu laden</i></a></small>
</a> –
</p>
[ <big><strong><a href="#START"><code>START</code></a></strong></big>
<span style="color:red"><<< zuerst klicken</span>,
<span style="color:#aa0000">dann auf Bildunterrand klicken</span>
<small>
bzw. knapp unter Text (<a href="http://de.wikipedia.org/wiki/Internet Explorer" target="_blank">MSIE</a>)
</small>
und rechts unten fr <a href="#inhalt">„Rckkehr“</a><br>
<small>
  – <span style="color:red">more</span> about the present file on:
<a href="http://ctan.org/pkg/fifinddo-info" target="_blank"><code>CTAN</code></a>
</small>
<hr>
 <a href="#teil-0"><code>teil-0</code></a> |
<a href="#titelerlaeut1"><code>titelerlaeut1</code></a> |
<a href="#titelerlaeut2"><code>titelerlaeut2</code></a> |
<a href="#titelerlaeut3"><code>titelerlaeut3</code></a> |
<a href="#interessant"><code>interessant</code></a> |
<a href="#motive-t"><code>motive-t</code></a> |
<a href="#motive-p"><code>motive-p</code></a> |
<a href="#status"><code>status</code></a> |
<strong><a href="#inhalt"><code>inhalt</code></a></strong><br>
 <a href="#teil-1"><code>teil-1</code></a> |
<a href="#txt2tex"><code>txt2tex</code></a> |
<a href="#txt2tex-trad"><code>txt2tex-trad</code></a><br>
 <a href="#teil-2"><code>teil-2</code></a> |
<a href="#typoz-latex"><code>typoz-latex</code></a> |
<a href="#minimal-mehr"><code>minimal-mehr</code></a> |
<a href="#typoz-bewert"><code>typoz-bewert</code></a> |
<a href="#typoz-auto"><code>typoz-auto</code></a> |
<a href="#typoz-ctan"><code>typoz-ctan</code></a><br>
 <a href="#teil-3"><code>teil-3</code></a> |
<a href="#wiki-markup"><code>wiki-markup</code></a> |
<a href="#wiki-listen"><code>wiki-listen</code></a><br>
 <a href="#teil-4"><code>teil-4</code></a> |
<a href="#implement"><code>implement</code></a> |
<a href="#implement-ms"><code>implement-ms</code></a> |
<a href="#implement-ms2"><code>implement-ms2</code></a> |
<a href="#implement-ma"><code>implement-ma</code></a> |
<a href="#implement-ma+"><code>implement-ma+</code></a> |
<a href="#implement-mas"><code>implement-mas</code></a><br>
 <a href="#teil-5"><code>teil-5</code></a> |
<a href="#nicetext"><code>nicetext</code></a> |
<a href="#wiki"><code>wiki</code></a><br>
 <a href="#teil-6"><code>teil-6</code></a> |
<a href="#niceverb"><code>niceverb</code></a> |
<a href="#syntax"><code>syntax</code></a> |
<a href="#vert"><code>vert</code></a> |
<a href="#niceverb-noch"><code>niceverb-noch</code></a> |
<a href="#niceverb-sim"><code>niceverb-sim</code></a><br>
 <a href="#teil-7"><code>teil-7</code></a> |
<a href="#kommentar"><code>kommentar</code></a> |
<a href="#kommentarzw"><code>kommentarzw</code></a> |
<a href="#kommentarzwa"><code>kommentarzwa</code></a><br>
 <a href="#teil-8"><code>teil-8</code></a> |
<a href="#kommentar-ignor"><code>kommentar-ignor</code></a> |
<a href="#kommentar-ignor-mehr"><code>kommentar-ignor-mehr</code></a> |
<a href="#docstrip"><code>docstrip</code></a> |
<a href="#kommentarzch"><code>kommentarzch</code></a> |
<a href="#ohne-docstrip"><code>ohne-docstrip</code></a><br>
 <a href="#teil-9"><code>teil-9</code></a> |
<a href="#doku-vor"><code>doku-vor</code></a> |
<a href="#doku-doc"><code>doku-doc</code></a> |
<a href="#docinput"><code>docinput</code></a> |
<a href="#docinput2"><code>docinput2</code></a> |
<a href="#docinput-min"><code>docinput-min</code></a> |
<a href="#makedoc-input"><code>makedoc-input</code></a> |
<a href="#makedoc-lauf"><code>makedoc-lauf</code></a> |
<a href="#erfolg"><code>erfolg</code></a> |
<a href="#catcodes"><code>catcodes</code></a><br>
 <a href="#teil-10"><code>teil-10</code></a> |
<a href="#html-alt"><code>html-alt</code></a> |
<a href="#html-statt-pdf"><code>html-statt-pdf</code></a> |
<a href="#html-und-pdf"><code>html-und-pdf</code></a> |
<a href="#blog-probleme"><code>blog-probleme</code></a> |
<a href="#schluss"><code>schluss</code></a> ]
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="START">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h1><span style="color:#aa0000">Paketdokumentation</span><br>und <span style="color:#aa0000">Webseitenpflege</span> mit<br> (<code><span style="color:#aa0000">niceverb</span>.sty</code> und)<br><code><span style="color:#aa0000">fifinddo</span>.sty</code></h1>
Uwe Lck
<table width="" height="18" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
berarbeitete Fassung des auf der<br>
<a href="http://www.dante.de/events/mv45/Programm.html" target="_blank"><acronym>DANTE</acronym>-Herbsttagung 2011</a><br>
gehaltenen Vortrags
<table width="" height="18" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
2011-10-25
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#teil-0">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="teil-0">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><span style="color:#bbccdd">Teil 0:</span>
<table width="" height="21" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
ber den Vortrag</h2>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#titelerlaeut1">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="titelerlaeut1">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><span style="color:#aa0000">Vortragstitel</span> bedeutet (I):</h2>
<dl>
<dt><strong>„Paketdokumentation“</strong><dd>
– Beschreibung von LaTeX-Makro-Paketen, d. h.
<ol>
</li>
<li>in „Schreibmaschinenschrift“ (<span style="color:#aa0000">„verbatim“</span>) gesetzter
<span style="color:#aa0000">Paketcode</span> wechselt mit in LaTeX-Qualitt gesetztem
<span style="color:#aa0000">Kommentar</span> ab („zeilenweise“)
</li>
<li>der <span style="color:#aa0000">Kommentar</span>text <span style="color:#aa0000">enthlt</span>
„verbatim“ gesetzten TeX-<span style="color:#aa0000">Code</span> („inline“)
zur Bezugnahme – insbesondere:
</li>
<li><span style="color:#aa0000">Gebrauchsanleitung</span>/Syntaxbeschreibung fr Nutzer:
<br><i>„Tippt man</i>
<blockquote>
<span style="color:#aa0000"><code>\foo∗[⟨<i>opt-arg</i>⟩]{⟨<i>mand-arg</i>⟩}</code></span>,
</blockquote>
<i>so erhlt man …“</i>
</li></ul>
</dl>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#titelerlaeut2">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="titelerlaeut2">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h2 align="center"><span style="color:#aa0000"><a href="#START">Vortragstitel</a></span> bedeutet (II):</h2>
<table width="560"><tr><td >
<dl>
<dt><strong>„Webseitenpflege“</strong><dd>
– „hochtrabend“, zunchst blo: <span style="color:#aa0000"><acronym>HTML</acronym></span>-Erzeugung
–
<ul>
</li>
<li><span style="color:#aa0000">Internet</span>auftritt (?
<a href="http://de.wikipedia.org/wiki/Content-Management-System" target="_blank">CMS</a>?
– <a href="http://www.webdesign-bu.de/uwe_lueck/schreibt.html" target="_blank">ja …</a>)
</li>
<li>bequeme <span style="color:#aa0000">Textformat</span>-Alternative zu <acronym>PDF</acronym> …
<br>
(Notizen zu <a href="http://www.webdesign-bu.de/uwe_lueck/heyctan.htm" target="_blank">Links</a>,
Beamer-Prsentation …)
</li></ul>
</dl>
</td></tr></table>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#titelerlaeut3">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="titelerlaeut3">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h2 align="center"><span style="color:#aa0000"><a href="#START">Vortragstitel</a></span> bedeutet (III):</h2>
… was haben <span style="color:#aa0000">Paketdokumentation</span> und
<span style="color:#aa0000"><acronym>HTML</acronym>-Erzeugung</span> miteinander zu tun<span style="color:#aa0000">??</span>
<br><br>
(– Zu <span style="color:#aa0000"><acronym>HTML</acronym>-Paketdokumentationen</span>
<br>habe ich es noch <span style="color:#aa0000">nicht</span> gebracht …)
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#interessant">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="interessant">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h2 align="center">Vortrag <span style="color:#aa0000">interessant</span> …</h2>
<table width="600"><tr><td >
<ol>
</li>
<li>wenn man als Makroprogrammierer
<code><span style="color:#aa0000">doc</span>.sty</code> und <code><span style="color:#aa0000">docstrip</span>.tex</code>
(„<code><span style="color:#aa0000">.dtx</span></code> …“)
zu aufwndig findet …
</li>
<li>wenn man <span style="color:#aa0000"><acronym>HTML</acronym></span> schtzt und <span style="color:#aa0000"><acronym>PDF</acronym></span>
vermeiden mchte …
</li>
<li>wenn man <span style="color:#aa0000">Makro-<a href="http://de.wikipedia.org/wiki/Denksport" target="_blank">Denksport</a></span> mag
</li></ol>
</td></tr></table>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#motive-t">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="motive-t">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h2 align="center">Inhaltliche Motive</h2>
<table width="560"><tr><td >
<ol>
</li>
<li><strong>„minimales Markup“</strong>,
„<a href="http://de.wikipedia.org/wiki/syntaktischer Zucker" target="_blank">syntaktischer Zucker</a>“
(LaTeX-<span style="color:#aa0000">Qualitt</span>
<em>mglichst ohne</em> LaTeX-<span style="color:#aa0000">Befehle</span>)
</li>
<li><strong>„Missbrauch“</strong> von <span style="color:#aa0000">TeX</span>
als „<span style="color:#aa0000">Skript</span>sprache“
<br>
(„mit TeX muss und will ich <span style="color:#aa0000">keine andere</span> Sprache lernen“;
<span style="color:#aa0000">statt</span> <acronym>PDF</acronym>-<span style="color:#aa0000">Schriftsatz</span>
– wie <a href="http://ctan.org/pkg/docstrip" target="_blank"><code>docstrip</code></a>)
</li>
<li><span style="color:#aa0000">kleine</span>(?), einfache(?), experimentelle(!),
(„schrullige“,) gerade eigenen (U. L.) Bedrfnissen
entsprechende <strong>Alternativen</strong> zu existierenden
„professionelleren“ Paketen
(<span style="color:#aa0000">Erfolge</span> – Scheitern …)
</li></ol>
</td></tr></table>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#motive-p">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="motive-p">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h2 align="center">Persnliche Motive</h2>
<table width="424"><tr><td >
(bemerkenswerte <span style="color:#aa0000">Mischung</span> aus:)
<ol>
</li>
<li>gespannt auf <span style="color:#aa0000">Kommentare</span><br>zu <span style="color:#aa0000">meinen</span> Paketen,
</li>
<li>Vortrag soll aber auch ber <span style="color:#aa0000">„Konkurrenzprodukte“ informieren</span>
</li>
<li><span style="color:#aa0000">Irrtmer? Hinweise?</span>
– <span style="color:#aa0000">Terminologie</span> erst in letzten zwei Wochen
„erarbeitet“
</li>
<li>Vorstellung von <code><span style="color:#aa0000">blogdot</span>.sty</code>
(<a href="http://ctan.org/pkg/morehype" target="_blank"><code>morehype</code></a>-Bndel)
</li></ol>
(und wohl auch ein wenig der beklagenswerten
<a href="http://de.wikipedia.org/wiki/Verfassung und Verfassungsvertrag#Entstehung" target="_blank">Eitelkeit</a> …)
</td></tr></table>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#status">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="status">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h2 align="center"><span style="color:#aa0000">Status</span></h2>
nicht richtig fertig, zu umfangreich, hasten, berspringen
<table width="" height="9" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
kein Experte in Typografie, <acronym>HTML</acronym>, <acronym>CSS</acronym>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#inhalt">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="inhalt">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h2 align="center">Vortragsteile</h2>
<table width="420"><tr><td >
<ol>
</li>
<li><a href="#teil-1"><span style="color:#aa0000">„Markup“?</span></a> – Terminologie
</li>
<li><a href="#teil-2"><span style="color:#aa0000">„typografische Zeichen“</span></a>
mit TeX/LaTeX
</li>
<li><a href="#teil-3"><span style="color:#aa0000">„Formatierung“</span></a>
</li>
<li><a href="#teil-4"><span style="color:#aa0000">Implementierung</span></a>
„minimalen Markups“ „<span style="color:#aa0000">mit TeX allein</span>“
</li>
<li><a href="#teil-5">Paket<span style="color:#aa0000">dokumentation</span></a>
</li>
<li><a href="#teil-6"><code><span style="color:#aa0000">niceverb</span>.sty</code></a>
</li>
<li><a href="#teil-7">„Kommentar“</a>
</li>
<li><a href="#teil-8">Kommentar <span style="color:#aa0000">ausblenden</span></a>
</li>
<li><a href="#teil-9">„Darstellung“</a> des Kommentars
</li>
<li><a href="#teil-10"><span style="color:#aa0000">HTML</span></a> erzeugen
</li></ol>
</td></tr></table>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#teil-1">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="teil-1">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><span style="color:#bbccdd">Teil 1:</span>
<table width="" height="21" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
<span style="color:#aa0000">„Markup“</span> oder so
<table width="" height="18" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
<small>(Begriffsklrung – oder so)</small></h2>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#txt2tex">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="txt2tex">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center">Von <code>.txt</code> zu <code>.tex</code></h2>
Um <span style="color:#aa0000">reinen Text</span> in <span style="color:#aa0000">LaTeX-Input</span>
(fr LaTeX-Qualitt) umzuwandeln, muss man normalerweise
Folgendes ergnzen/ndern:
<ol>
</li>
<li>
<strong>„<a href="http://de.wikipedia.org/wiki/Typografische Zeichen in HTML" target="_blank">typografische Zeichen</a>“</strong>
– „typografische“ Varianten von
<a href="http://de.wikipedia.org/wiki/Auslassungspunkte" target="_blank"><span style="color:#aa0000">Auslassungspunkten</span></a>,
<span style="color:#aa0000">Anfhrung</span>szeichen,
<span style="color:#aa0000">Leerzeichen</span>,
und <span style="color:#aa0000">Strichen</span>.
</li>
<li><strong>„<a href="http://de.wikipedia.org/wiki/Textformatierung" target="_blank">Formatierung</a>“</strong> – Umschalten zwischen
<span style="color:#aa0000">Zeichenstzen</span>, Einrcken,
<span style="color:#aa0000">Listen</span>, Verweise, …
</li></ol>
– <span style="color:#aa0000">Unterscheidung</span> nur <span style="color:#aa0000">HTML</span>-Terminologie?
<br>
<acronym>HTML</acronym> verwendet fr <span style="color:#aa0000">ersten</span> Fall
spezielle <span style="color:#aa0000">Zeichen</span> wie
<code>&nbsp;</code> (anders als <code>\dots</code>),
<br>
fr <span style="color:#aa0000">zweiten</span> Einrahmung mit „Tags“ wie
<code><i>...</i></code>
(hnlich LaTeX …); oder …
<table width="" height="9" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
<small>
<span style="color:#006600">[dachte zunchst, Wortschpfung sei meine eigene]</span>
</small>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#txt2tex-trad">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="txt2tex-trad">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h2 align="center">„Auszeichnung“</h2>
<table width="540"><tr><td >
„Traditionell“
<ul>
</li>
<li>bezieht sich <span style="color:#aa0000">„Auszeichnung“</span>
<br>
(im „<a href="http://de.wikipedia.org/wiki/Manuskript" target="_blank">Manuskript</a>“/<a href="http://de.wikipedia.org/wiki/Typoskript" target="_blank">Typoskript</a>,
„Markup“,
„<a href="http://de.wikipedia.org/wiki/Schriftauszeichnung" target="_blank">Schriftauszeichnung</a>“/<a href="http://de.wikipedia.org/wiki/Auszeichnungssprache" target="_blank">Auszeichnungssprache</a>)
<br>
anscheinend nur auf <strong>„Formatieren“</strong>
<br>
(vielleicht weil der <span style="color:#aa0000">Setzer</span> das nicht „ahnen“
konnte),
</li>
<li>whrend <strong>typografische Zeichen</strong>varianten
<br>
fr den <span style="color:#aa0000">Setzer</span> eher „selbstverstndlich“ waren
<br>
und im „Manuskript“ <span style="color:#aa0000">nicht</span> besonders <span style="color:#aa0000">angezeigt</span> wurden.
</li></ul>
</td></tr></table>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#teil-2">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="teil-2">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><span style="color:#bbccdd">Teil 2:</span>
<table width="" height="21" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
<span style="color:#aa0000">Typografische Zeichen</span> mit TeX/LaTeX</h2>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#typoz-latex">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="typoz-latex">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h2 align="center">Typografische Zeichen mit <span style="color:#aa0000">TeX/LaTeX</span></h2>
<table cellpadding="8" width="" frame="box" rules="all">
<tbody>
<!-- typoz-latex -->
<tr bgcolor="#eeefff">
<td><strong>Zeichen</strong></td>
<td><strong>realisiert durch</strong></td>
</tr>
<tr><td><span style="color:#aa0000">Auslassung</span>szeichen</td><td><code>\dots</code></td></tr>
<tr><td>Gedanken-/„bis“-<span style="color:#aa0000">Strich</span></td><td>„<code>---</code>“ (englisch), „<code>--</code>“ – <span style="color:#aa0000">Ligaturen</span></td></tr>
<tr><td>(Doppelte) <span style="color:#aa0000">Anfhrung</span>szeichen</td><td>Englisch: <span style="color:#aa0000">Ligaturen</span> <code>``...<code>'</code><code>'</code></code>; <br> Deutsch mit <code>(n)german.sty</code> oder <code>babel.sty</code> <code><code>"</code>`...<code>"</code><code>'</code></code> – <span style="color:#aa0000">aktive Zeichen</span></td></tr>
<tr><td>Geschtztes <span style="color:#aa0000">Leer</span>zeichen, Festabstand</td><td>„<code>~</code>“ – <span style="color:#aa0000">aktives Zeichen</span>, „<code>\,</code>“</td></tr>
<tr><td>Englisch: <span style="color:#aa0000">Leer</span>raum nach Satzzeichen</td><td>„<code>\ </code>“ („Steuerungsleerzeichen“), „<code>\@</code>“, <code>\sfcode`...</code></td></tr>
</tbody>
</table>
<p>
<small>
<span style="color:#006600">[„Aktive Zeichen“ verhalten sich wie Makros, TeXbook S. 37 ]</span>
</small>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#minimal-mehr">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="minimal-mehr">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h2 align="center">Bewertung –<br><span style="color:#aa0000">„minimales Markup“</span> genauer </h2>
<table width="560"><tr><td >
<i>„LaTeX-<span style="color:#aa0000">Qualitt</span> <em>mglichst ohne</em> LaTeX-<span style="color:#aa0000">Befehle</span>“</i><br>
– <code>README</code> des <a href="http://ctan.org/pkg/nicetext" target="_blank"><code>nicetext</code></a>-Bndels:
<br><i>„mglichst keine <span style="color:#aa0000">Zeichen</span> im Dokument<span style="color:#aa0000">quell</span>code, <br>die nicht auch <span style="color:#aa0000">gedruckt</span> werden!“</i><br>
– schliet <span style="color:#aa0000">„typografische Zeichen“</span> ein
– Schwche meiner (damaligen) Terminologie –
<ol>
</li>
<li><span style="color:#aa0000">weg</span> mit <span style="color:#aa0000">Backslash</span>s,
englischen <span style="color:#aa0000">Befehlen</span> und
geschwungenen <span style="color:#aa0000">Klammern!</span>
</li>
<li>berhaupt mglichst wenig Code-<span style="color:#aa0000">Zeichen</span>
</li>
<li>Zeichen mglichst <span style="color:#aa0000">intuitiv</span>
</li>
<li>… am besten so <span style="color:#aa0000">aussehen wie Ergebnis</span>
</li>
<li>– <span style="color:#aa0000">„<acronym>ASCII-WYSIWYG</acronym>“</span>
– vs. <a href="http://ctan.org/pkg/unisugar" target="_blank"><code>unisugar</code></a> mit Unicode …
</li></ol>
</td></tr></table>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#typoz-bewert">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="typoz-bewert">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h2 align="center">Typografische Zeichen – Bewertung</h2>
<table width="640"><tr><td >
– von <a href="#typoz-latex">TeX/LaTeX:</a>
<ol>
</li>
<li><span style="color:#aa0000">TeX-Ligaturen</span> schon ganz gut!
</li>
<li><span style="color:#aa0000">aktive Zeichen</span> … na ja …
„<code>~</code>“ besser als „<code>&nbsp;</code>“,
aber …
</li>
<li><span style="color:#aa0000"><code>\dots</code></span> schon bel …
(warum nicht <span style="color:#aa0000">Ligatur</span> „<code>...</code>“?)
</li></ol>
</td></tr></table>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#typoz-auto">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="typoz-auto">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center">Typografische Zeichen <span style="color:#aa0000">automatisch?</span></h2>
<ol>
</li>
<li><span style="color:#aa0000">automatische</span> Umwandlung „reiner“ Zeichen
in „typografische“?<br>
</li>
<li><span style="color:#aa0000"><code>\sfcode`A=999</code></span> schon in diese Richtung
(TeXbook S. 76)
</li>
<li>so ja optional <span style="color:#aa0000">Anfhrungszeichen</span> in
<span style="color:#aa0000"><i>Word</i></span>
</li>
<li>… <em><span style="color:#aa0000">und hier</span></em> <!-- texblog.fdf -->
– simpel, solange nicht <code>german</code>/<code>babel</code> …:
<br><code><code>"</code>...<code>"</code></code> expandiert zu
<code>\glqq...</code><code>\grqq</code> oder so
</li>
<li>eigentlich <em>nur dies</em>
(automatisches Einfgen typografischer Zeichen)
<span style="color:#aa0000">„<code>.txt→.tex</code>“</span>
in <a href="http://ctan.org/pkg/nicetext" target="_blank"><code>nicetext</code></a>-Beschreibung
(Schwche der Terminologie)
</li>
<li><em>WARNUNG!</em> <span style="color:#aa0000">fehlerhafte</span> Automatisierung
typografischer <span style="color:#aa0000">Anfhrungszeichen</span> kann zum Verlust
des <a href="#motive-p"><span style="color:#aa0000">Doktortitels</span></a>
und politischer mter fhren!
(<code>gutten.sty</code>)
<table width="" height="9" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
<small>
<span style="color:#006600">[ z. B. <code>german.sty</code> nicht geladen, <code>\glqq</code>, <code>\grqq</code> nicht definiert, Fehlermeldungen ignoriert ]</span>
</small>
</li></ol>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#typoz-ctan">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="typoz-ctan">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><span style="color:#aa0000"><code>.txt</code>→<code>.tex</code></span> <em>vor</em> <code>nicetext</code></h2>
– auf CTAN:
<ol>
</li>
<li><a href="http://ctan.org/pkg/txt2latex" target="_blank"><code>txt2latex</code></a> kleines
<a href="http://de.wikipedia.org/wiki/Perl (Programmiersprache)" target="_blank">Perl</a>-Skript,
wandelt gerade <span style="color:#aa0000">TeXs spezielle Zeichen</span>
(„<code>&</code>“ etc.), <span style="color:#aa0000">„<code>...</code>“</span>
und doppelte/einzelne <span style="color:#aa0000">Anfhrungszeichen</span> um
(s. Datei
<a href="http://mirror.ctan.org/support/txt2latex/txt2latex" target="_blank"><tt>txt2latex</tt></a>)
</li>
<li><a href="http://ctan.org/pkg/txt2tex" target="_blank"><code>txt2tex</code></a> – Perl, erzeugt tatschlich
LaTeX-<span style="color:#aa0000">Formatierung</span> (Paketnamen „verkehrt“!)
</li>
<li><a href="http://ctan.org/pkg/easylatex" target="_blank"><code>EasyLaTeX</code></a> hnlich oder mehr,
<span style="color:#aa0000">GUI</span>(?), Ideen aus <span style="color:#aa0000">Wiki…-Markup</span>;
zuletzt 2004 (<code>README</code> 2009 eher CTAN-Hand)
</li>
<li><a href="http://ctan.org/pkg/smiletex" target="_blank"><code>SmileTeX</code></a> Windows <code>.exe</code>?
+ Werkzeuge fr Grafikeinbindung etc.,
zuletzt 2004
</li></ol>
– fr <span style="color:#aa0000">Paketdokumentation</span> ist mir das zuviel …
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#teil-3">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="teil-3">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><span style="color:#bbccdd">Teil 3:</span>
<table width="" height="21" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
<span style="color:#aa0000">„Formatierung“</span>
<table width="" height="18pt" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
<small>(Auszeichnung, Wikipedia)</small></h2>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#wiki-markup">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="wiki-markup">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h2 align="center"><span style="color:#aa0000">Wikipedia</span>: Schriftauszeichnung</h2>
– Anregungen wie fr <a href="#typoz-auto"><code>EasyLaTeX</code></a>?
<p>
<table cellpadding="8" width="" frame="box" rules="all">
<tbody>
<!-- wiki-markup 1 -->
<tr bgcolor="#eeefff">
<td><strong><span style="color:#aa0000">Wiki</span>-Code</strong></td>
<td><strong>wie <span style="color:#aa0000">LaTeX</span>-Code</strong></td>
</tr>
<tr><td><code> == ber ==</code></td><td><code>\section{ber}</code></td></tr>
<tr><td><code>=== Unter ===</code></td><td><code>\subsection{Unter}</code></td></tr>
<tr><td><code>'''fett'''</code></td><td><code>\textbf{fett}</code></td></tr>
<tr><td><code>''kursiv''</code></td><td><code>\textit{kursiv}</code></td></tr>
<tr><td><code>'''''Fett-'''Kur''</code></td><td><code>\textit{<code>\textbf{Fett-}</code>Kur}</code></td></tr>
</tbody>
</table>
<p>
– <span style="color:#aa0000">Intuition</span> dahinter vielleicht:
Bedeutungen von <em>kursiv</em> und<br>
<em>doppelten Anfhrungszeichen</em> verwandt,
z. B. Buchtitel
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#wiki-listen">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="wiki-listen">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h2 align="center"><span style="color:#aa0000">Wikipedia</span>: Listen und Zitate</h2>
<table cellpadding="8" width="" frame="box" rules="all">
<tbody>
<!-- wiki-markup 2 -->
<tr bgcolor="#eeefff">
<td><strong><span style="color:#aa0000">Wiki</span>-</strong></td>
<td><strong>wie <span style="color:#aa0000">LaTeX</span>-Code</strong></td>
<td><strong><span style="color:#aa0000">Wiki</span>-</strong></td>
<td><strong>wie <span style="color:#aa0000">LaTeX</span>-Code</strong></td>
</tr>
<tr>
<td><code>∗ Eins<br>∗ Zwei</code></td>
<td><code>\begin{itemize}</code><br> <code>\item Eins</code><br><code>\item Zwei</code><br> <code>\end{itemize}</code></td>
<td><code>Er nur:<br>:Ja, …</code></td>
<td><code>Er nur:<br><code>\begin{quote}</code><br> Ja, <code>\dots</code><br><code>\end{quote}</code></code></td>
</tr>
<tr>
<td><code># Eins<br># Zwei</code></td>
<td><code>\begin{enumerate}</code><br> <code>\item Eins</code><br><code>\item Zwei</code><br> <code>\end{enumerate}</code></td>
<td><code>Code:<br> <code>\relax</code></code></td>
<td><code>Code:<br><code>\begin{verbatim}</code><br> <code>\relax</code><br><code>\end{verbatim}</code></code></td>
</tr>
</tbody>
</table>
<br>
– immerhin recht <span style="color:#aa0000">„minimal“</span>,
auch halbwegs <span style="color:#aa0000">intuitiv.</span>
<table width="" height="9" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
(vgl. <a href="http://mirror.ctan.org/macros/latex/contrib/nicetext/doc/wikicheat.pdf" target="_blank"><tt>wikicheat.pdf</tt></a>)
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#teil-4">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="teil-4">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><span style="color:#bbccdd">Teil 4:</span>
<table width="" height="21" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
<span style="color:#aa0000">Implementierung</span><br>„minimalen Markups“ <br>„mit <span style="color:#aa0000">TeX allein</span>“</h2>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#implement">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="implement">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><span style="color:#aa0000">Implementierung</span>smethoden fr<br>„minimales Markup“ mit <span style="color:#aa0000">TeX</span></h2>
<table cellpadding="9" cellspacing="0">
<!-- thesis -->
<tr valign="top"> <td width="42px">(ML)</td><td><strong>Ligaturen</strong> – …<br>(nicht mein Ding, Zukunft ohne <acronym>METAFONT</acronym>?)</td> </tr>
<!-- thesis -->
<tr valign="top"> <td width="42px">(MS)</td><td><strong>„Substitution“</strong> bzw. <strong>„Skript“</strong>, genauer: <span style="color:#aa0000">Vorverarbeitung</span> der <code>.tex</code>-Datei, <span style="color:#aa0000">Zeichenkettenersetzung</span> (und mehr) per <a href="http://de.wikipedia.org/wiki/Skriptsprache" target="_blank">Skript</a> wie mit Perl / <a href="http://de.wikipedia.org/wiki/awk" target="_blank">awk</a> / etc. bzw. mit den <a href="#typoz-auto">beschriebenen</a> Paketen</td> </tr>
<!-- thesis -->
<tr valign="top"> <td width="42px">(MA)</td><td><strong>(„forschende“) aktive Zeichen</strong> – im <span style="color:#aa0000">„Schriftsatz-Modus“</span> (whrend TeX den Dokumentquelltext stckweise in Glyphen und Kstchen umwandelt) <span style="color:#aa0000">expandieren</span> aktive Zeichen mehr oder weniger direkt zu <span style="color:#aa0000">„normalen“</span> LaTeX-Befehlen, <span style="color:#aa0000">„forschende“</span> aktive Zeichen „<span style="color:#aa0000">erkunden</span> dabei ihre <span style="color:#aa0000">Umgebung</span>“</td> </tr>
</table>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#implement-ms">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="implement-ms">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center">Methode (MS) – Anmerkungen I</h2>
TeXs
Mechanismus, sog. <span style="color:#aa0000">„begrenzte Parameter“</span>
von Makros zu erkennen
(TeXbook S. 203),
bietet eine bequeme, aber auch „begrenzte“ Methode,
<a href="http://de.wikipedia.org/wiki/Zeichenkette" target="_blank">„Zeichenketten“</a> („Strings“)
zu erkennen<br>(und zu <span style="color:#aa0000">ersetzen</span>).
<ol>
</li>
<li>Vor- und Nachteile entstehen daraus, dass
ein „String“ aus „reinem Text“ von TeX intern
durch unterschiedliche <span style="color:#aa0000">„Token-Ketten“</span> „dargestellt“
werden kann. Auch von <span style="color:#aa0000">Gro-/Kleinschreibung</span> abzusehen
ist nicht ganz einfach.
</li>
<li>Diese Methode wurde seit lngerem von LaTeX’s internem
<span style="color:#aa0000"><code>\@in</code></span>-Makro
[hauptschlich zur Erkennung von Paket-Optionen]
und vom Paket <span style="color:#aa0000"><a href="http://ctan.org/pkg/substr" target="_blank"><code>substr</code></a></span>
(Harald Harders bzw. Heiko Oberdiek)
angewandt.
</li>
<li>Gegenwrtig fuen auch <span style="color:#aa0000"><code>fifinddo.sty</code></span> und
<span style="color:#aa0000"><code>makedoc.sty</code></span> (<a href="http://ctan.org/pkg/nicetext" target="_blank"><code>nicetext</code></a>)
auf dieser Methode – gengte bisher <em>praktisch</em>.
</li></ol>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#implement-ms2">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="implement-ms2">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center">Anmerkungen zu (MS) II <br>(<span style="color:#aa0000">String</span>s und <span style="color:#aa0000">Scripting</span> mit <span style="color:#aa0000">TeX</span>)</h2>
<ol>
</li>
<li>Die Pakete <a href="http://ctan.org/pkg/stringstrings" target="_blank"><code>stringstrings</code></a> (Steven Segletes),
<a href="http://ctan.org/pkg/xstring" target="_blank"><code>xstring</code></a> (Christian Tellechea, <a href="http://ctan.org/pkg/etex" target="_blank"><code>e-TeX</code></a>)
und <a href="http://ctan.org/pkg/ted" target="_blank"><code>ted</code></a> (Manuel Pégourié-Gonnard) liefern String-Funktionen
„auf hchstem Niveau“.
</li>
<li>String-Funktionen finden sich auch in
<a href="http://ctan.org/pkg/datatool" target="_blank"><code>datatool</code></a> (Nicola Talbot),
<a href="http://ctan.org/pkg/coolstr" target="_blank"><code>coolstr</code></a> (Nick Setzer) und
<a href="http://ctan.org/pkg/texapi" target="_blank"><code>texapi</code></a> (Paul Isambert).
</li>
<li>Eine „ernsthafte <span style="color:#aa0000">Skriptsprache</span>“
bietet neben Zeichenersetzung
allgemeiner <span style="color:#aa0000">„Sortierung“</span> und <span style="color:#aa0000">„Filter“.</span>
Beispielsweise bietet <a href="http://ctan.org/pkg/docstrip" target="_blank"><code>docstrip</code></a>
eine TeX-basierte Skriptsprache,
die aus einer <span style="color:#aa0000"><code>.dtx</code>-Quelldatei</span>
die <span style="color:#aa0000">„Kommentare“ entfernt</span>
und den Rest in verschiedene
<span style="color:#aa0000">„kompakte“ TeX-Eingabedateien</span> „sortiert“.
</li></ol>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#implement-ma">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="implement-ma">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center">„Minimales Markup“<br> mit <span style="color:#aa0000">„forschenden“ aktiven Zeichen</span> (MA)</h2>
<span style="color:#aa0000"><code>wiki.sty</code></span> aus dem <span style="color:#aa0000"><code>nicetext</code></span>-Bndel
implementiert die <a href="#wiki-markup">zuvor</a> beschriebene
<span style="color:#aa0000">Wikipedia</span>-Syntax fr TeX, d. h. mit <code>wiki.sty</code>
kann man in der <code>{document}</code>-Umgebung von LaTeX
<ol>
</li>
<li>statt <span style="color:#aa0000"><code>\...section{...}</code></span> einrahmende
<span style="color:#aa0000">Gleichheitszeichen</span>-Folgen verwenden,
</li>
<li><span style="color:#aa0000">Kursiv</span>- und <span style="color:#aa0000">Fett</span>schrift
mit Folgen von
<a href="http://de.wikipedia.org/wiki/Apostroph" target="_blank">„<span style="color:#aa0000">Apostroph</span>-Ersatzzeichen“</a>
(ASCII-Code 39) ein- und abschalten,
</li>
<li><span style="color:#aa0000">Listen</span> und <span style="color:#aa0000">Blockzitate</span>
aus Menschen- oder Programmiersprache durch
spezielle <span style="color:#aa0000">Zeilenanfnge</span> anzeigen.
</li></ol>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#implement-ma+">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="implement-ma+">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><code><span style="color:#aa0000">wiki</span>.sty</code>s <span style="color:#aa0000">„forschende“</span> Zeichen</h2>
<ol>
</li>
<li><span style="color:#aa0000">Gleichheitszeichen</span> werden <em>aktive</em> Zeichen,
die feststellen, wieviele Gleichheitszeichen unmittelbar
aufeinander folgen.
</li>
<li>Ebenso funktionieren die <span style="color:#aa0000">Apostroph</span>-Ersatzzeichen.
Dabei werden <code>\textit</code> und <code>\textbf</code> nicht direkt
verwendet, das <span style="color:#aa0000">Umschalten</span> und die
<span style="color:#aa0000">Kursivkorrektur</span>
finden <span style="color:#aa0000">ohne</span> <span style="color:#aa0000">„Gruppenbildung“</span> statt.
</li>
<li>Um <span style="color:#aa0000">Listen</span> und <span style="color:#aa0000">Zitate</span> am Zeilenanfang
zu erkennen, wird das <span style="color:#aa0000">Zeilenende</span>-Zeichen
(<code>^^M</code>) <span style="color:#aa0000">aktiv</span> und ndert auch fr kurze Zeit
die Kategorie des Leerzeichens.
So analysiert <code>^^M</code> den Anfang der nchsten Zeile
und kann feststellen, ob eine Liste bzw. ein Blockzitat
<span style="color:#aa0000">beginnt</span>, <span style="color:#aa0000">fortgesetzt</span> wird, oder
<span style="color:#aa0000">endet</span>, oder ob der Liste ein
<span style="color:#aa0000">weiterer Punkt</span> (<code>\item</code>) hinzugefgt wird.
Entsprechend wird automatisch eine
<code>\begin{...}</code>- bzw. <code>\end{...}</code>-Zeile oder das Makro
<span style="color:#aa0000"><code>\item</code></span> eingefgt
</li></ol>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#implement-mas">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="implement-mas">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h2 align="center">(MA) vs. (MS)</h2>
<table width="600"><tr><td >
Die Methoden <span style="color:#aa0000">(MA)</span> (aktive Zeichen)
und <span style="color:#aa0000">(MS)</span><br>(Substitution/Skript)
<span style="color:#aa0000">schlieen sich <em>nicht</em> gegenseitig aus.</span>
<br>Welche Methode man anwendet,
ist vielleicht „Geschmackssache“.
Die <a href="#wiki-markup"><span style="color:#aa0000">Wikipedia-Abschnittsberschrift</span></a>
(Gleichheitszeichen) wird in
<code><span style="color:#aa0000">wiki</span>.sty</code> nach Methode (MA),<br>
in <code><span style="color:#aa0000">makedoc</span>.sty</code> nach Methode (MS) implementiert.
</td></tr></table>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#teil-5">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="teil-5">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><span style="color:#bbccdd">Teil 5:</span>
<table width="" height="21" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
<span style="color:#aa0000">Dokumentation</span> von LaTeX-Paketen
<table width="" height="18" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
<small>(mit <span style="color:#aa0000"><code>nicetext</code></span>)</small></h2>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#nicetext">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="nicetext">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h2 align="center">Die <span style="color:#aa0000">Pakete</span> des <span style="color:#aa0000"><code>nicetext</code></span>-Bndels</h2>
<table width="600"><tr><td >
<dl>
<dt><strong><code>wiki.sty</code></strong><dd>
<span style="color:#aa0000">Wikipedia-Markup</span> gem (MA)
(<a href="#implement-ma">s. o.</a>)
<dt><strong><code>niceverb.sty</code></strong><dd>
<span style="color:#aa0000">„minimales Markup“</span>(?) speziell fr <span style="color:#aa0000">Beschreibung</span>
<br>
von <span style="color:#aa0000">LaTeX-Makros</span> und LaTeX-<span style="color:#aa0000">Paketen</span>
(MA)
<dt><strong><code>makedoc.sty</code></strong><dd>
<span style="color:#aa0000">Vorverarbeitung</span> von
<span style="color:#aa0000">Code+Kommentar</span>-Dateien
(MS)
<dt><strong><code>mdoccorr.cfg</code></strong><dd>
<span style="color:#aa0000">Regeln</span> zum Einfgen <span style="color:#aa0000">typografischer Zeichen</span> (MS)
<dt><strong><code>fifinddo.sty</code></strong><dd>
<span style="color:#aa0000"><code>makedoc.sty</code></span> zugrundeliegende
<span style="color:#aa0000">Skript</span>sprache
</dl>
</td></tr></table>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#wiki">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="wiki">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><code><span style="color:#aa0000">wiki</span>.sty</code></h2>
<ol>
</li>
<li><a href="#implement-ma"><span style="color:#aa0000">Schrift</span>kodierung</a>
durch <em>Folgen</em> von <span style="color:#aa0000">Apostrophen</span> finde ich
<span style="color:#aa0000">nicht intuitiv genug</span>,
um andere Paketbearbeiter damit konfrontieren zu wollen,
<small><span style="color:#006600">[Publikum (U. Z.): <a href="http://de.wikipedia.org/wiki/Markdown" target="_blank">Markdown</a>!]</span></small>
</li>
<li>… sie ist gegenwrtig auch <span style="color:#aa0000">inkompatibel</span> mit der
Verwendung „aktiver Apostrophe“ in
<code><span style="color:#aa0000">niceverb</span>.sty</code>.
</li>
<li><a href="#implement-ma"><span style="color:#aa0000">berschriften</span>kodierung</a> durch
<span style="color:#aa0000">Gleichheitszeichen</span> verwende ich bisher in der
(MA)-Implementierung von <code><span style="color:#aa0000">makedoc</span>.sty</code>.
</li>
<li>Dass <a href="#implement-ma+"><span style="color:#aa0000">Einrcken</span></a> eine
<span style="color:#aa0000">verbatim</span>-Umgebung auslst, finde ich
<span style="color:#aa0000">unpraktisch.</span>
</li>
<li>Im Quelltext sehe ich lieber <span style="color:#aa0000">„1.“</span>, <span style="color:#aa0000">„2.“</span>,
…als „<code>#</code>“.
<br>
<small><span style="color:#006600">[Publikum: <a href="http://de.wikipedia.org/wiki/Markdown" target="_blank">Markdown</a>!]</span></small>
</li>
<li><span style="color:#aa0000">Unnummerierte Listen</span> mit <code>*</code> sind
<span style="color:#aa0000">OK</span>,
habe ich mal fr <span style="color:#aa0000">„Fremddokumentation“</span> eingesetzt.
</li></ol>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#teil-6">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="teil-6">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><span style="color:#bbccdd">Teil 6:</span>
<table width="" height="21" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
<code><span style="color:#aa0000">niceverb</span>.sty</code></h2>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#niceverb">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="niceverb">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><code><span style="color:#aa0000">niceverb</span>.sty</code> – „Schrift<span style="color:#aa0000">auszeichnung</span>“</h2>
<a href="http://de.wikipedia.org/wiki/Definitionsmenge" target="_blank">„Fortsetzung“</a> der
<a href="#wiki-markup"><span style="color:#aa0000">Wikipedia</span>-Schriftauszeichnung:</a>
<ol>
</li>
<li>Umrahmung mit <span style="color:#aa0000">einfachen Apostroph</span>-Ersatzzeichen
(<code>’nicetext’</code>)
wirkt wie <span style="color:#aa0000"><code>\textsf</code></span>
– fr <span style="color:#aa0000">Paketnamen</span>.
</li>
<li><span style="color:#aa0000">einfache Anfhrung</span>szeichen
wirken wie <span style="color:#aa0000"><code>\texttt</code></span>
– fr <span style="color:#aa0000">Code</span>
– tatschlich wirkt <code>‘<code>\foo</code>’</code>
(solange nicht in Makro-Argument) wie
<span style="color:#aa0000"><code>\verb</code><code>+<code>\foo</code>+</code></span>
(<span style="color:#aa0000">Inline-verbatim</span>).
</li></ol>
<table width="" height="0" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
<p align="center">
<table cellpadding="8" width="" frame="box" rules="all">
<tbody>
<!-- wiki-markup 1 -->
<tr bgcolor="#eeefff">
<td><strong>Code mit <span style="color:#aa0000">niceverb</span>.sty</strong></td>
<td><strong>wie Code <span style="color:#aa0000">sonst</span></strong></td>
</tr>
<tr><td><code>’nicetext’</code></td><td><code>\textsf{nicetext}</code></td></tr>
<tr><td><code>‘<code>\foo</code>’</code></td><td><code>\verb+</code><code>\foo+</code></td></tr>
<tr><td><code>‘README.txt’</code></td><td><code>\texttt{README.txt}</code></td></tr>
</tbody>
</table>
</p>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#syntax">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="syntax">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h2 align="center"><span style="color:#aa0000">Beschreibung</span> von LaTeX-Makros</h2>
<table width="640"><tr><td >
<i>„Tippt man</i>
<pre>
<span style="color:#aa0000"><code>\foo</code>∗[⟨<i>opt-arg</i>⟩]{⟨<i>mand-arg</i>⟩}</span>
</pre>
<i>so erhlt man …“</i>
– so soll die Beschreibung der <span style="color:#aa0000">Syntax</span> von
<span style="color:#aa0000"><code>\foo</code></span> im <span style="color:#aa0000"><code>.pdf</code></span> aussehen.
–
<span style="color:#aa0000">Code</span> dafr mit <code><span style="color:#aa0000">niceverb</span>.sty</code>:
<pre>
<span style="color:#aa0000">‘<code>\foo</code>∗[<opt-arg>]{<mand-arg>}’</span>
</pre>
– <span style="color:#aa0000">„<acronym>ASCII-WYSIWYG</acronym>“</span>
<br>–
<code>\langle</code> <span style="color:#aa0000">„typografisches“</span> „<code><</code>“,
<br>–
<code>\rangle</code> „typografisches“ „<code>></code>“.
<br>
–
<span style="color:#aa0000">Code</span> dafr mit <code><span style="color:#aa0000">doc</span>.sty</code>
(aus der LaTeX-„base“-Distribution):
<pre>
<span style="color:#aa0000"><code>|</code><code>\foo</code>∗[|<code>\meta</code>{opt-arg}|]{|<code>\meta</code>{mand-arg}|}|</span>
</pre>
</td></tr></table>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#vert">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="vert">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><span style="color:#aa0000">Hervorhebung</span> von Makro<span style="color:#aa0000">beschreibungen</span></h2>
<span style="color:#aa0000">Vertikalstriche</span> (<code>|<code>\foo</code>|</code>)
<ul>
</li>
<li>schalten im vorigen Beispiel (<code><span style="color:#aa0000">doc</span>.sty</code>)
– wie es sehr <span style="color:#aa0000">blich</span> ist –
<span style="color:#aa0000">verbatim</span>-Modus an/aus,
d. h. <span style="color:#aa0000"><code>|<code>\foo</code>|</code></span> krzt
<span style="color:#aa0000"><code>\verb|</code><code>\foo|</code></span> ab –
</li>
<li>sollen mit <code><span style="color:#aa0000">niceverb</span>.sty</code>
<span style="color:#aa0000">Code hervorheben</span> und
beim <span style="color:#aa0000">berfliegen</span> der
Dokumentation <span style="color:#aa0000">herausstechen</span> lassen
(<i>„hier Erluterung von <code>\foo</code>!“</i>)
</li></ul>
– <span style="color:#aa0000">Farbhinterlegung</span>? derzeit
<span style="color:#aa0000">„Ksten“</span> wie mit <code>\fbox</code>,
intern soll <code>\InlineCmdBox</code> zusammenfassende Aufzhlungen von Makros
<em>in einem Absatz</em> ermglichen. <strong>Beispiel</strong> Code/Ergebnis:
<pre>
|<code>\foo</code>∗[<opt-arg>]{<mand-arg>}|
</pre>
<blockquote>
<table cellpadding="2" width="" frame="box" rules="all">
<tbody><tr>
<td> <code>\foo∗[⟨<i>opt-arg</i>⟩]{⟨<i>mand-arg</i>⟩}</code> </td>
</tr> </tbody>
</table>
</blockquote>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#niceverb-noch">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="niceverb-noch">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><code><span style="color:#aa0000">niceverb</span>.sty</code> <span style="color:#aa0000">noch:</span></h2>
<ol>
</li>
<li><span style="color:#aa0000">„<code><meta></code>“</span> erzeugt „⟨<i>meta</i>⟩“
<span style="color:#aa0000">sowohl</span> innerhalb <span style="color:#aa0000">als auch</span>
auerhalb von einfachen Anfhrungszeichen.
</li>
<li>Im <strong>„Auto-Modus“</strong> werden LaTeX-Befehle nicht
ausgefhrt, sondern als <span style="color:#aa0000">verbatim</span>-Text
interpretiert, etwa folgende Sterne und Klammern
als <span style="color:#aa0000">Syntaxbeschreibung</span> dazu.
</li>
<li>– dient besonders
der <span style="color:#aa0000">„Fremddokumentation“</span>
(vorhandene <acronym>ASCII</acronym>-Paketdokumentation
anderer Autoren ohne Eingriff in LaTeX-Qualitt setzen).
</li>
<li>„<code><span style="color:#aa0000">&</span></code>“
ist <span style="color:#aa0000">aktives Zeichen</span>, welches in
<span style="color:#aa0000">Makroargumenten</span> Befehlen und
Syntaxbeschreibungen vorangestellt werden kann,
um <span style="color:#aa0000">„nachzuhelfen“</span>:
<pre>
<span style="color:#aa0000"><code>\footnote{<code>&</code><code>\foo</code>∗[<opt-arg>]{<mand-arg>}}</code></span>
</pre>
</li>
<li>
<span style="color:#aa0000">aktive Zeichen</span> → <span style="color:#aa0000">Probleme</span> …
<span style="color:#aa0000">Auswege</span> …
</li></ol>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#niceverb-sim">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="niceverb-sim">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><span style="color:#aa0000">hnliche</span> Pakete <span style="color:#aa0000">anderer</span> Autoren</h2>
<ol>
</li>
<li><code><span style="color:#aa0000">niceverb</span>.sty</code> ist wesentlich inspiriert
durch die Dokumentationsmethode <span style="color:#aa0000">Stephan Bttcher</span>s
in <a href="http://ctan.org/pkg/lineno" target="_blank"><code><span style="color:#aa0000">lineno</span>.sty</code></a>.
</li>
<li>hnliche Funktionalitt liefert auch
<span style="color:#aa0000"><code>ltxguide.cls</code></span> fr die „LaTeX-Guides“.
</li>
<li>Die <a href="#syntax">bequeme <span style="color:#aa0000">Syntaxbeschreibung</span></a>
gibt es
(„mittlerweile“) auch in <span style="color:#aa0000">Martin Scharrers</span>
<a href="http://ctan.org/pkg/ydoc" target="_blank"><code>ydoc</code></a>.
</li>
<li><code><span style="color:#aa0000">niceverb</span>.sty</code> ist ebenso wie
<code><span style="color:#aa0000">ydoc</span></code> als <strong>Alternative</strong>
zu <code><span style="color:#aa0000">doc</span>.sty</code> konzipiert.
<code><span style="color:#aa0000">ydoc</span></code> liefert dabei einen hnlichen
<span style="color:#aa0000">Funktionsumfang</span> wie <code><span style="color:#aa0000">doc</span>.sty</code>,
whrend <em>ich</em> (fr meine Zwecke)
einen solchen Funktionsumfang berhaupt
<span style="color:#aa0000">nicht haben will.</span>
– <span style="color:#aa0000">Allerdings</span> habe ich einzelne
<code><span style="color:#aa0000">doc</span>.sty</code>-Funktionen in
<code><span style="color:#aa0000">makedoc</span>.sty</code> und in
<code><span style="color:#aa0000">readprov</span>.sty</code>
(<a href="http://ctan.org/pkg/fileinfo" target="_blank"><code>fileinfo</code></a>-Bndel).
</li></ol>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#teil-7">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="teil-7">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><span style="color:#bbccdd">Teil 7:</span>
<table width="" height="21" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
„Kommentar“</h2>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#kommentar">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="kommentar">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><span style="color:#aa0000">Code</span> und <span style="color:#aa0000">„Kommentar“</span></h2>
<small><span style="color:#006600">[vgl. <a href="http://de.wikipedia.org/wiki/Schuld und Shne" target="_blank">Schuld und Shne</a>, <a href="http://de.wikipedia.org/wiki/Pride and Prejudice" target="_blank">Pride and Prejudice</a>, <a href="http://de.wikipedia.org/wiki/Gesetzeskommentar" target="_blank">Gesetzeskommentar</a> zum <a href="http://de.wikipedia.org/wiki/Code civil" target="_blank">Code civil</a>]</span></small>
<p>
TeX bietet wie alle „normalen“ Programmiersprachen die Mglichkeit,
<span style="color:#aa0000">in Quelldateien Text</span> einzufgen, der <span style="color:#aa0000">nicht</span>
vom Compiler bzw. Interpreter (als <span style="color:#aa0000">Befehle/Daten</span>)
verarbeitet werden soll, sondern an (menschliche) <span style="color:#aa0000">Leser</span>
gerichtet ist – hier <span style="color:#aa0000">„Kommentar“</span>.
<br>
Einzelne <span style="color:#aa0000">Zwecke</span>
(der <a href="http://de.wikipedia.org/wiki/Kommentar (Programmierung)" target="_blank">Wikipedia-Artikel</a>
wei noch mehr …):
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#kommentarzw">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="kommentarzw">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h2 align="center"><span style="color:#aa0000">Zwecke</span> des Kommentars</h2>
<table width="576"><tr><td >
<ol>
</li>
<li><strong>Erluterungen</strong> fr <strong>Programmierer</strong>,
um die <strong>Wartung</strong> des Codes zu erleichtern –
</li>
<li>gerade im Falle von <span style="color:#aa0000">TeX</span>- und LaTeX-Paketen
(alter Zeiten)
an <strong>Nutzer</strong> gerichtete <span style="color:#aa0000">„Erluterungen“</span>
im Sinne einer <strong>Gebrauchsanleitung</strong><br>
(manchmal der einzig verfgbaren).
</li>
<li>In etwa gleichrangig
Bedeutung des <strong>„Auskommentierens“</strong> von Code,
d. h.
<span style="color:#aa0000">„Kommentar“</span> enthlt
eigentlich <span style="color:#aa0000">Befehle/Daten</span> fr
Compiler/Interpreter, die der <span style="color:#aa0000">Programmierer</span>
(oder auch Dokument<span style="color:#aa0000">autor</span>)
<span style="color:#aa0000">„aufbewahren“</span> mchte statt vllig zu
<span style="color:#aa0000">lschen</span>
</li></ol>
</td></tr></table>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#kommentarzwa">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="kommentarzwa">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center">Zwecke des <span style="color:#aa0000">„Auskommentierens“</span></h2>
<ol type="a"
</li>
<li>als eine Art <strong>„Versionskontrolle“</strong>:
man <span style="color:#aa0000">behlt sich vor</span>, den Code spter wieder
„an den Compiler/Interpreter zu richten“
(durch einfache Entfernung der
<a href="http://de.wikipedia.org/wiki/Kommentarzeichen" target="_blank">Kommentarzeichen</a> bzw.
<span style="color:#aa0000">„Kommentarbegrenzern“</span>),
z. B. zum „<a href="http://de.wikipedia.org/wiki/Debugging" target="_blank">Debugging</a>“
oder fr bestimmte Adressaten –
</li>
<li>als „Erinnerung“ and frhere <span style="color:#aa0000">„Fehlversuche“</span>,
die auf frhere „berlegungen“ hinweist und so wieder
der <strong>Wartung</strong> durch den Programmierer/Autor dient.
</ol>
Ich nehme an, bei vielen ist in der tglichen Praxis mit TeX/LaTeX
das „Auskommentieren“ die <strong>hauptschliche</strong> Funktion des
<span style="color:#aa0000">„Kommentars“</span> …
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#teil-8">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="teil-8">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><span style="color:#bbccdd">Teil 8:</span>
<table width="" height="21" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
Methoden Kommentar <span style="color:#aa0000">„auszublenden“</span></h2>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#kommentar-ignor">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="kommentar-ignor">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><span style="color:#aa0000">Feinheiten</span> des <span style="color:#aa0000">„Ausblendens“</span><br>von Kommentar</h2>
<ol>
</li>
<li>Enthlt eine <span style="color:#aa0000">TeX/LaTeX-Paketdatei</span>
die TeX-Anweisungen und gleichzeitig die <strong>Gebrauchsanweisung</strong>,
so umfasst sie typischerweise wesentlich mehr
<span style="color:#aa0000">Kommentarzeilen</span> als <span style="color:#aa0000">Anweisungszeilen</span>.
</li>
<li>Auch <strong>„Programmierertext“</strong>, der die Implementierung
sorgfltig diskutiert, kann im Verhltnis zum Code sehr
umfangreich sein (z. B. <code><code>lineno</code>.sty</code>).
</li>
<li><span style="color:#aa0000">„Vor langer Zeit“</span> forderte das <strong>Einlesen</strong>
von TeX-Makrodateien aufgrund der „<span style="color:#aa0000">Hardware</span>-Umstnde“
bereits so viel Zeit, dass es <span style="color:#aa0000">sinnvoll</span> war,
das Einlesen von Kommentarzeilen vllig zu <strong>vermeiden</strong> …
</li></ol>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#kommentar-ignor-mehr">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="kommentar-ignor-mehr">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><span style="color:#aa0000">„Ausblenden“</span> von Kommentar – <span style="color:#aa0000">Forts.</span> …</h2>
<ol>
</li>
<li>Ein <span style="color:#aa0000">„primitiver“ Ansatz</span> dazu war,
die <strong>„Gebrauchsanleitung“</strong><br>
„am Ende der Datei“ <span style="color:#aa0000">nach</span> dem
<span style="color:#aa0000"><code>\endinput</code></span>-Befehl der Datei
anzubringen. Die Datei enthielt dann gerne am
<span style="color:#aa0000">Anfang</span> den Hinweis auf die Gebrauchsanleitung
der Datei an ihrem <span style="color:#aa0000">Ende</span>.<br>
Der <code>\endinput</code>-Befehl bricht die Verarbeitung der Datei ab,
so dass die Zeilen darunter tatschlich
keine Verarbeitungszeit mehr beanspruchen.
</li>
<li><span style="color:#aa0000">Andererseits</span> sollte fr die <strong>Wartung</strong>
der Kommentar eben doch in der <span style="color:#aa0000">Nhe</span> der
betreffenden Code-Zeilen angebracht werden …
</li></ol>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#docstrip">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="docstrip">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><code>docstrip</code> <span style="color:#aa0000">blendet</span> noch <span style="color:#aa0000">effizienter</span> aus:</h2>
<ol>
</li>
<li>Mit <span style="color:#aa0000">LaTeX2</span> hatten <span style="color:#aa0000">Paket-Dateien</span>
die Endung <span style="color:#aa0000">„<code>.sty</code>“.</span><br>
Sie <span style="color:#aa0000">enthielten</span> noch <span style="color:#aa0000">„Kommentar“</span> wie oben.
</li>
<li>Mit <span style="color:#aa0000">LaTeX2e</span> wurden <code><span style="color:#aa0000">doc</span>.sty</code> und
<code><span style="color:#aa0000">docstrip</span>.tex</code> eingefhrt.
Dateien, die <span style="color:#aa0000">Code</span> und <span style="color:#aa0000">Kommentar „gemischt“</span> enthielten, bekamen nun die Endung
<span style="color:#aa0000">„<code>.doc</code>“</span> oder <span style="color:#aa0000">„<code>.dtx</code>“.</span>
<code>docstrip</code> wandelt solche Dateien in Dateien mit Endungen
hauptschlich wie <span style="color:#aa0000">„<code>.sty</code>“</span> oder
<span style="color:#aa0000">„<code>.cls</code>“</span> um;
diese sollen <span style="color:#aa0000">keinen Kommentar</span> mehr enthalten
(bis auf <span style="color:#aa0000">Lizenz</span>-Hinweise) und sind diejenigen,
die im TeX-Lauf tatschlich <span style="color:#aa0000">eingelesen</span> werden,
<span style="color:#aa0000">auer … </span>
</li></ol>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#kommentarzch">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="kommentarzch">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center">Kommentar<span style="color:#aa0000">zeichen</span></h2>
<ol>
</li>
<li>Kommentar<span style="color:#aa0000">zeilen</span> sind mit TeX/LaTeX gewhnlich
durch das Kommentar<span style="color:#aa0000">zeichen</span> („<code>%</code>“)
am Anfang gekennzeichnet.
</li>
<li>(Nach <span style="color:#aa0000"><code>\endinput</code></span> wird Code auch
<span style="color:#aa0000">ohne</span> Kommentarzeichen ignoriert;
ebenso kann man im Prinzip „Kommentar“ ⟨<i>kommentar</i>⟩ mit
<span style="color:#aa0000">„<code>\iffalse</code>⟨<i>kommentar</i>⟩<code>\fi</code>“</span>
einrahmen.)
</li>
<li>Diese (ganz oben) <span style="color:#aa0000">Zeilen mit Kommentarzeichen</span>
werden dann von <span style="color:#aa0000"><code>docstrip</code></span> entfernt …
d. h., diese Kommentarzeichen dienen gar <span style="color:#aa0000">nicht</span>
mehr dem Zweck, die Zeilen beim Einlesen der Paketdatei
als „zu ignorieren“ zu kennzeichnen, vielmehr sind sie gar
nicht mehr da. <span style="color:#aa0000">Wieso dann noch Kommentarzeichen?</span>
</li>
<li>… tatschlich: Mit <span style="color:#aa0000">Paul Isambert</span>s
<a href="http://ctan.org/pkg/codedoc" target="_blank"><code>CodeDoc</code></a> ist der „Kommentar“
normaler, von <span style="color:#aa0000">Listing-Umgebungen</span>
unterbrochener Text (ohne „<code>%</code>“ links).
Letztere schreiben den Code in die <span style="color:#aa0000">kompakte Paketdatei</span>.
</li></ol>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#ohne-docstrip">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="ohne-docstrip">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><em>Ohne</em> <code>docstrip</code> <span style="color:#aa0000">heute</span></h2>
(<a href="#docstrip"><code>docstrip</code></a> fortsetzend:) …
<em>aber</em>
es gibt die <span style="color:#aa0000"><code>.sty</code>-Pakete</span>,
die <span style="color:#aa0000"><em>mit</em> Kommentarzeilen</span>
(ohne <code>docstrip</code> einzuschalten) eingelesen werden, <span style="color:#aa0000">noch heute!</span>
<ul>
</li>
<li>verschiedene in <acronym>TDS</acronym>-<code>ltxmisc/</code>, darunter
einige geniale, fr manche unverzichtbare Pakete von
<a href="http://ctan.org/author/id/arseneau" target="_blank"><span style="color:#aa0000">Donald Arseneau</span></a> (ich sehe gerade <a href="http://ctan.org/pkg/framed" target="_blank"><code>framed</code></a> …)
</li>
<li><span style="color:#aa0000">Stephan Bttcher</span>s <a href="http://ctan.org/pkg/lineno" target="_blank"><code>lineno.sty</code></a>
(Zeilennummerierung besonders fr
<span style="color:#aa0000">kritische Editionen</span> und <span style="color:#aa0000">Einreichungen</span>)
enthlt gewaltig viel Kommentar – von mir bernommen,
nie gehrt, dass das Laden zu lange dauere …
</li>
<li>alle (? <code>\endinput</code>) meine
<a href="http://ctan.org/author/id/lueck" target="_blank"><span style="color:#aa0000">eigenen</span></a>
Pakete (was natrlich einfach eine Frechheit sein kann …)
</li></ul>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#teil-9">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="teil-9">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><span style="color:#bbccdd">Teil 9:</span>
<table width="" height="21" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
<span style="color:#aa0000">„Darstellung“</span> des Kommentars</h2>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#doku-vor">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="doku-vor">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center">„Darstellung“ des Kommentars – <span style="color:#aa0000">„Vorzeit“</span></h2>
<ol>
</li>
<li><em>Vor</em> <code><span style="color:#aa0000">doc</span>.sty</code>
war der <span style="color:#aa0000">Kommentar</span> in <span style="color:#aa0000">Paketdateien</span>
dazu da, mit einem <span style="color:#aa0000">Texteditor</span> gelesen oder
im <span style="color:#aa0000">„Text“</span>-Modus
(als „Listing“, im Gegensatz zum fr TeX
erforderlichen <span style="color:#aa0000">„Grafik“</span>-Modus)
ausge<span style="color:#aa0000">druckt</span> zu werden.
</li>
<li>Kommentar entsprechend
„reiner <span style="color:#aa0000"><acronym>ASCII</acronym></span>-Text“,
weder „typografische Zeichen“ noch Auszeichnung.
</li></ol>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#doku-doc">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="doku-doc">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center">Darstellung des Kommentars mit <code><span style="color:#aa0000">doc</span>.sty</code></h2>
<ol>
</li>
<li>Erst mit <code><span style="color:#aa0000">doc</span>.sty</code> wurde
die heute von <span style="color:#aa0000">LaTeX-Paketen</span> auf dem
<span style="color:#aa0000">CTAN</span> gewohnte LaTeX-Druck<span style="color:#aa0000">qualitt</span>
des <span style="color:#aa0000">Kommentars</span> mglich,
wobei man den <span style="color:#aa0000">Code</span> als Imitation
der Texteditor- und Listing-Druckqualitt auszeichnet.
<span style="color:#aa0000">Entscheidend</span> ist dabei der
<span style="color:#aa0000">„<a href="http://de.wikipedia.org/wiki/Don’t repeat yourself" target="_blank">Don’t repeat yourself</a>“</span>-Grundsatz
– die <span style="color:#aa0000">Code</span> und
<span style="color:#aa0000">Kommentar mischende</span> Quelldatei wird fr
den Qualittsausdruck nicht von Hand berarbeitet,
sondern „automatisch“ mit dem <span style="color:#aa0000"><code>\DocInput</code></span>-Befehl
verarbeitet.
</li>
<li>(Wie war das eigentlich mit <span style="color:#aa0000"><acronym>WEB</acronym>?</span>)
</li>
<li>Dazu kann man allerdings (oder konnte bisher)
<span style="color:#aa0000">nicht</span> (den frheren)
<span style="color:#aa0000">„<acronym>ASCII</acronym>“-Kommentar</span> verwenden,
der Kommentar muss vielmehr als „LaTeX-Input“
mit <span style="color:#aa0000">typografischen Zeichen</span> und
LaTeX-<span style="color:#aa0000">Markup</span>
in der <span style="color:#aa0000">Code+Kommentar</span>-Quelldatei stehen
(vgl. <code>ltxdoc</code>-Dokumentation zu <code>{oldcomments}</code>).
</li></ol>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#docinput">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="docinput">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><span style="color:#aa0000"><code>\DocInput</code></span><code>{⟨<i>c+k</i>⟩}</code></h2>
… (<span style="color:#aa0000"><code>doc</code></span>, <a href="http://ctan.org/pkg/gmdoc" target="_blank"><code>gmdoc</code></a>, …)
verarbeitet die <span style="color:#aa0000">Code/Kommentar mischende</span> Datei
<span style="color:#aa0000">⟨<i>c+k</i>⟩</span> so – sie enthalte als Beispiel
<pre>
% <code>\textit{dolce far niente:}</code>
% <code>\begin{macrocode}</code>
<code>\relax</code>
% <code>\end{macrocode}</code>
% -- genug,
</pre>
<code>\DocInput{⟨<i>c+k</i>⟩}</code> fhrt <span style="color:#aa0000"><code>\MakePercentIgnore</code></span>
vor <code>\input{⟨<i>c+k</i>⟩}</code> aus, Effekt wie
<pre>
<code>\textit{dolce far niente:}</code>
<code>\begin{macrocode}</code>
<code>\relax</code>
<code>\end{macrocode}</code>
-- genug,
</pre>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#docinput2">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="docinput2">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center">(<code>\DocInput</code>)</h2>
(bertrag:)
<pre>
<code>\textit{dolce far niente:}</code>
<code>\begin{macrocode}</code>
<code>\relax</code>
<code>\end{macrocode}</code>
-- genug,
</pre>
… so kommt der <span style="color:#aa0000">Code</span> in eine
<span style="color:#aa0000">Listing</span>-Umgebung, der <span style="color:#aa0000">Rest</span> wird
<span style="color:#aa0000">„normal“</span> in LaTeX-Qualitt gesetzt.
<p>
<span style="color:#aa0000">„Minimales Markup“</span> wrde bedeuten,
dass man <span style="color:#aa0000">dasselbe</span> Ergebnis …
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#docinput-min">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="docinput-min">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h2 align="center"><span style="color:#aa0000">„Minimale“ Kennzeichnung</span> des Codes</h2>
<table width="420"><tr><td >
… statt mit
<pre>
% <code>\textit{dolce far niente:}</code>
% <code>\begin{macrocode}</code>
<code>\relax</code>
% <code>\end{macrocode}</code>
% -- genug,
</pre>
schon mit
<pre>
% <code>\textit{dolce far niente:}</code>
<code>\relax</code>
% -- genug,
</pre>
erhlt.
Dies erreichen …
</td></tr></table>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#docinput-alt">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="docinput-alt">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><span style="color:#aa0000">„smartes“</span> <code>\DocInput</code></h2>
– <span style="color:#aa0000">Algorithmus</span> klar:<br>
 – nach Zeile
<em>mit</em> „<code>%</code>“ vor <em>„ohne“</em>
„<code>\begin{macrocode}</code>“,<br>
 – im umgekehrten Fall „<code>\end{macrocode}</code>“
einfgen –
<ol>
</li>
<li><a href="http://ctan.org/pkg/gmdoc" target="_blank"><code>gmdoc</code></a>
(<span style="color:#aa0000">Grzegorz Murzynowski</span>;
<span style="color:red">ich meine mich zu erinnern:</span><br>
wie bei <code>wiki.sty</code> sind die
<span style="color:#aa0000">Zeilenendzeichen aktiv</span><br>
und schauen sich den nchsten Zeilenanfang an)
</li>
<li><a href="http://ctan.org/pkg/lineno" target="_blank"><code>lineno</code></a> (<span style="color:#aa0000">Stephan Bttcher</span>)
– eine <acronym>UNIX</acronym>-Shell wendet ein
in der Datei <code>lineno.sty</code> enthaltenes
<a href="http://de.wikipedia.org/wiki/awk" target="_blank">awk</a>-Skript auf <code>lineno.sty</code>
an, erzeugt Dokumentationsdatei <code>lineno.tex</code> …
</li>
<li><code><span style="color:#aa0000">makedoc</span>.sty</code> (selbst) bietet statt awk
eine Art TeX-basierte Skriptsprache und unterschiedliche
<span style="color:#aa0000">Zeilenparser</span>,<br>
um jeweils eine Dokumentationsdatei zu erzeugen.
</li></ol>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#kommentarz-kombi">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="kommentarz-kombi">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h2 align="center"><span style="color:#aa0000">„Interpretationen“</span> von Kommentarzeichen</h2>
<table width="560"><tr><td >
<span style="color:#aa0000">echter</span> Kommentar vs. <span style="color:#aa0000">„Auskommentieren“</span>,
ich:
<pre>
<code>\typeout{ok}</code> %% Code
% <code>\typeout{ko}</code> %% auskommentierter Code
%% <- falls ko %% Kommentar
%% % <- falls KO %% auskommentierter Kommentar
%% %% <- 2011/10/01 %% Kommentar zum Kommentar
</pre>
<span style="color:#aa0000">ergibt</span> mit <code>makedoc</code> und von mir bevorzugten
Einstellungen:
<blockquote>
<code>\typeout{ok} %% Code</code><br>
% <code>\typeout{ko} %% auskommentierter Code</code><br>
←falls ko
</blockquote>
– Parsermakros
fr verschiedene <span style="color:#aa0000">„Stile“</span>,
etwa Pakete <span style="color:#aa0000">anderer</span> Autoren, die
<span style="color:#aa0000">keine „<code>%%</code>“</span> verwenden
</td></tr></table>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#makedoc-input">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="makedoc-input">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h2 align="center"><span style="color:#aa0000"><code>makedoc</code></span>s <code>\DocInput{⟨<i>job</i>⟩}</code></h2>
<table width="600"><tr><td >
Genaue Entsprechung zu <code>\DocInput</code> fehlt derzeit.<br>
„⟨<i>job</i>⟩“ ergibt sich von selbst, oder …<br>
Verschiedene <span style="color:#aa0000">Skriptbefehle</span>
untersttzen unterschiedliche <span style="color:#aa0000">Dokumentationsstile</span>
(bersicht:
<a href="http://mirror.ctan.org/macros/latex/contrib/nicetext/doc/mdoccheat.pdf" target="_blank"><tt>mdoccheat.pdf</tt></a>).<br>
<p>
c+k-Dateien werden mit <code>makedoc</code> <em>nicht direkt</em> eingelesen.
<br>Die Hauptdatei
<ol>
</li>
<li><span style="color:#aa0000">erzeugt</span> aus (je)der c+k-Datei eine
<span style="color:#aa0000">Dokumentationsversion</span>
(<span style="color:#aa0000">„<code>.txt</code>→<code>.tex</code>“</span>,
Einfgen von „<span style="color:#aa0000">Listing</span>-Wrappern“,
<span style="color:#aa0000">Zeichenkettenersetzungen</span>
fr <span style="color:#aa0000">Gliederung</span> und <span style="color:#aa0000">typografische Zeichen</span>,
dazu Datei
<a href="http://mirror.ctan.org/macros/latex/contrib/nicetext/use/mdoccorr.cfg" target="_blank"><tt>mdoccorr.cfg</tt></a>/<a href="http://mirror.ctan.org/info/fifinddo-info/mdoccorr.pdf" target="_blank"><tt>mdoccorr.pdf</tt></a>,
</li>
<li>liest und <span style="color:#aa0000">setzt</span> die erzeugte Datei dann als
<span style="color:#aa0000"><code>.tex</code>.</span>
</li></ol>
<span style="color:#aa0000">Genauer</span> …
</td></tr></table>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#makedoc-lauf">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="makedoc-lauf">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center">Dokumentationslauf</h2>
[Genauer] … <span style="color:#aa0000">kompiliere</span>
ich typischerweise die Dokumentation
<ol>
</li>
<li><code>⟨<i>job</i>⟩.<span style="color:#aa0000">pdf</span></code> von
<code>⟨<i>job</i>⟩.<span style="color:#aa0000">sty</span></code> aus
<code>⟨<i>job</i>⟩.<span style="color:#aa0000">tex</span></code>.
</li>
<li><code>⟨<i>job</i>⟩.<span style="color:#aa0000">tex</span></code>
enthlt <code>makedoc</code>-Befehle
zur Erzeugung von
<code>⟨<i>job</i>⟩.<span style="color:#aa0000">doc</span></code> aus
<code>⟨<i>job</i>⟩.<span style="color:#aa0000">sty</span></code> und zum Einlesen von
<code>⟨<i>job</i>⟩.<span style="color:#aa0000">doc</span></code>,
</li>
<li>kann noch Dokumentation von
<span style="color:#aa0000">Ergnzungspaketen</span>
⟨<i>add</i>⟩ via
<code>⟨<i>add</i>⟩.<span style="color:#aa0000">doc</span></code> einbinden.
</li>
<li><code>⟨<i>job</i>⟩<span style="color:#aa0000">.doc</span></code>/<code>⟨<i>add</i>⟩<span style="color:#aa0000">.doc</span></code>
knnen<br>(nach <code>\RequirePackage{makedoc}</code>)<br>
ganz zu Anfang des TeX-Laufs innerhalb einer Gruppe erzeugt
und dann in der <code>{document}</code>-Umgebung mit
<span style="color:#aa0000"><code>\input</code></span> eingelesen werden.
</li></ol>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#erfolg">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="erfolg">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center">Erfolge/Scheitern</h2>
<ol>
</li>
<li>Ich kann damit <span style="color:#aa0000">flott</span>
Pakete schreiben/dokumentieren<br>
(auch mit <span style="color:#aa0000">Dokumentation</span> als
<span style="color:#aa0000">„<a href="http://de.wikipedia.org/wiki/Roadmap" target="_blank">Roadmap</a>“</span> beginnen).
<br>
<em>Nach</em> Einrichten des
Dokumentations-<span style="color:#aa0000">Workflows</span><br>
luft mittlerweile meist alles <span style="color:#aa0000">„wie am Schnrchen“.</span>
</li>
<li>
<span style="color:#aa0000">Einrichten</span> eines solchen Workflows
war aufwndig,<br>dafr jetzt <span style="color:#aa0000">Vorlagen</span>
sowie <span style="color:#aa0000">Bash</span>- und
<span style="color:#aa0000"><code>fifinddo</code>-Skripts</span>.
</li>
<li><span style="color:#aa0000">Fehler</span> wegen Umwegs ber
<span style="color:#aa0000">erzeugte</span> Dateien<br>
(mehr Zeilen als in Quelldatei)
manchmal <span style="color:#aa0000">schwer verstndlich</span> …
</li>
<li>
In der <span style="color:#aa0000">Praxis</span> kann ich (derzeit)
doch <span style="color:#aa0000">LaTeX-Befehle</span><br>
(Backslashs, …, vgl. <a href="#minimal-mehr">Vorgabe</a>)
<span style="color:#aa0000">nicht</span> ganz <span style="color:#aa0000">vermeiden</span>,<br>
wohl vor allem bei <span style="color:#aa0000">Verweisen</span> …
</li>
<li>Dennoch gelungene <span style="color:#aa0000">„Fremddokumentationen“:</span><br>
<a href="http://mirror.ctan.org/macros/latex/contrib/nicetext/demo/arseneau.pdf" target="_blank"><tt>arseneau.pdf</tt></a>,
<a href="http://mirror.ctan.org/macros/latex/contrib/nicetext/demo/substr.pdf" target="_blank"><tt>substr.pdf</tt></a>.
</li></ol>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#catcodes">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="catcodes">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h2 align="center">Vorteile und Problematik der <span style="color:#aa0000">Zeichenkategorien</span> (<code>\catcode...</code>)</h2>
<table width="560"><tr><td >
<ol>
</li>
<li>fr <span style="color:#aa0000">Dokumentation</span>svorverarbeitung
Einlesen als <span style="color:#aa0000">„reinen Text“</span>
(<code>\dospecials</code> <span style="color:#aa0000">„<code>other</code>“</span>)
</li>
<li><span style="color:#aa0000"><code>\PatternCodes</code></span> fr Ersetzungsregeln
anzupassen
</li>
<li><code><span style="color:#aa0000">blog</span>.sty</code> (<a href="http://ctan.org/pkg/morehype" target="_blank"><code>morehype</code></a>-Bndel)
nutzt dagegen „minimale“ <span style="color:#aa0000">TeX-Syntax</span>,
<span style="color:#aa0000">expandiert</span> Makros zu <span style="color:#aa0000"><acronym>HTML</acronym></span>-Code
(Hauptdatei „<code>makehtml.tex</code>“ o. ä.
wandelt ⟨<i>job</i>⟩<span style="color:#aa0000"><code>.tex</code></span>
zeilenweise
in ⟨<i>job</i>⟩<span style="color:#aa0000"><code>.html</code></span> um).
</li></ol>
</td></tr></table>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#teil-10">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="teil-10">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><span style="color:#bbccdd">Teil 10:</span>
<table width="" height="21" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
<span style="color:#aa0000">HTML</span> erzeugen</h2>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#html-statt-pdf">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="html-statt-pdf">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h2 align="center"><span style="color:#aa0000">Nutzen</span> von <acronym>HTML</acronym> (vs. <acronym>PDF</acronym>)</h2>
<table width="520"><tr><td >
<ol>
</li>
<li><span style="color:#aa0000">Internetauftritt/CMS</span>
</li>
<li>„Elektronischer <span style="color:#aa0000">Zettelkasten</span>“
<ol type="a"
</li>
<li>Querverweise
</li>
<li>gegliederte/kommentierte <span style="color:#aa0000">Link-Sammlungen</span>
</li>
<li>Hervorhebung von <span style="color:#aa0000">Stichwrtern</span>
in Texten aus anderen Formaten
(<a href="http://mterry.name/xpad" target="_blank">Xpad</a>/<a href="http://de.wikipedia.org/wiki/Tomboy (Software)" target="_blank">Tomboy</a>)
</ol>
</li>
<li>besserer <span style="color:#aa0000">Lesefluss ohne Seiten</span>umbrche,<br>
ohne problematische <span style="color:#aa0000">Zeilen</span>umbrche
</li>
<li><span style="color:#aa0000">keine Arbeit mit Umbrchen</span><br>(auer gedankliche Gliederung)
</li>
<li><span style="color:#aa0000">Bildschirmflche</span> voll nutzen
</li></ol>
</td></tr></table>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#html-alt">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="html-alt">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440">
<h2 align="center"><span style="color:#aa0000">HTML</span>-Erzeugung – <span style="color:#aa0000">Alternativen</span></h2>
<ul>
</li>
<li>HTML-Editoren, CMSe?; Formeln? keine Ahnung, <span style="color:red">egal</span>
</li>
<li><strong><a href="http://ctan.org/pkg/tex4ht" target="_blank"><code>TeX4th</code></a></strong>
(Eitan Gurari†;
<i><a href="http://de.wikipedia.org/wiki/TeX4ht" target="_blank">Wikipedia</a></i> sehr informativ)
– <a href="http://de.wikipedia.org/wiki/TeX4ht" target="_blank"><span style="color:#aa0000">verarbeitet <code>.dvi</code></span></a>, kommt insofern (wohl) mit allen Paketen/Makros
zurecht, ohne sie einzeln zu behandeln
– damit <span style="color:#aa0000">Webseiten</span> pflegen<span style="color:red">?</span>
</li>
<li>diverse <strong>Syntax-Wandler</strong> wie
<a href="http://de.wikipedia.org/wiki/LaTeX2html" target="_blank">LaTeX2html</a> (Perl), <a href="http://hevea.inria.fr" target="_blank"><code>hevea.inria.fr</code></a>,
<a href="http://evalwhen.com/tex2page" target="_blank">TeX2page</a>,
<a href="http://ctan.org/pkg/tth" target="_blank"><code>TtH</code></a>
(<a href="http://de.wikipedia.org/wiki/C (Programmiersprache)" target="_blank">C</a>;
<a href="http://hutchinson.belmont.ma.us/tth/" target="_blank">Home:</a> Formeln!);
vgl. <a href="http://tug.org/interest.html#web" target="_blank"><code>tug.org/interest.html#web</code></a>
</li>
<li><code><strong>blog</strong>.sty</code>
(<a href="http://ctan.org/pkg/morehype" target="_blank"><code>morehype</code></a>-Bndel)
– expandiert Makros zu HTML;
<span style="color:#aa0000">LaTeX</span>-Makros <span style="color:#aa0000">umdefiniert</span>,
<span style="color:#aa0000">neue</span> Makros fr bestimmte
<span style="color:#aa0000"><acronym>HTML</acronym>-Strukturen</span>, z. B.<code><span style="color:#aa0000">lnavicol</span>.sty</code>
</li></ul>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#html-und-pdf">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="html-und-pdf">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h2 align="center"><acronym>HTML</acronym> und <acronym>PDF</acronym> aus <span style="color:#aa0000">selber Quelle</span>?</h2>
<table width="540"><tr><td >
<ol>
</li>
<li><code>\labelsection</code> etc. – <span style="color:#aa0000">„<code>htmlTeX</code>“</span><br>
(<span style="color:#aa0000"><acronym>HTML</acronym></span> regt zu Makros an, die <span style="color:#aa0000">auch</span> fr
<span style="color:#aa0000"><acronym>PDF</acronym></span>-Erzeugung interessant wren,<br>
angefangen mit logischer Auszeichnung wie
<code><code></code>/<code>\code</code>,
<code><strong></code>/<code>\strong</code>.)
</li>
<li><code><span style="color:#aa0000">texlinks</span>.sty</code>
(<a href="http://ctan.org/pkg/morehype" target="_blank"><code>morehype</code></a>-Bndel)<br>
bietet <span style="color:#aa0000">Beispiele</span> fr <span style="color:#aa0000">Makros</span>,
die <span style="color:#aa0000">gleichermaen</span>
<ul>
</li>
<li>fr <span style="color:#aa0000"><code>hyperref</code>/<acronym>PDF</acronym></span>
</li>
<li>wie fr <span style="color:#aa0000"><acronym>HTML</acronym></span>-Erzeugung mit
<code><span style="color:#aa0000">blog</span>.sty</code>
</li></ul>
geeignet sind
(fuen auf wenigen
„<a href="http://de.wikipedia.org/wiki/Pivot" target="_blank">Pivot</a>/<a href="http://de.wikipedia.org/wiki/Angelpunkt" target="_blank">Angelpunkt</a>“-Makros
wie etwa <code>\href</code>,<br>nur ein solches fr
<code>hyperref</code> vs. <code>blog</code> unterschiedlich zu definieren).
</li></ol>
</td></tr></table>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#blog-probleme">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="blog-probleme">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h2 align="center">Was (zur Zeit) <em>nicht</em> geht</h2>
<table width="560"><tr><td >
(weil Makros <span style="color:#aa0000">nur expandiert</span> werden,
vgl. <a href="http://de.wikipedia.org/wiki/Funktionale Programmierung" target="_blank">Funktionale Programmierung</a>):
Zhler, optionale Argumente, ∗-Varianten, <code>\unskip</code>, <code>\verb</code>;
<code>\begin</code> ffnet keine Gruppe fr lokale Einstellungen,
solche knnen ohnehin nicht vorgenommen werden.
(„Was man an TeX hat.“)
– Mathe: Brche/Wurzeln? vgl. dazu
<a href="http://hutchinson.belmont.ma.us/tth/" target="_blank">TtH</a>.
<table width="" height="9" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
<span style="color:#aa0000">Ausweg</span> irgendwann: besondere Behandlung
von Zeilen, die bestimmte einzelne Makros enthalten,
wie etwa
<code>\EXECUTE{⟨<i>einstellungen</i>⟩}</code>,
<code>\begin</code>, <code>\end</code>.
<table width="" height="9" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
Wandlung <span style="color:#aa0000">zeilenweise</span> erschwert auch Verteilen
von <span style="color:#aa0000">Makroargumenten ber mehrere Zeilen</span>
(„Klammer rechtzeitig ffnen“).
Knftige Alternativen wren <a href="http://ctan.org/pkg/catchfile" target="_blank"><code>catchfile</code></a>
oder „bis zur nchsten leeren Zeile am Stck“ einlesen.
</td></tr></table>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#schluss">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
<hr>
<table cellpadding="0" cellspacing="0">
<tr><td width="256"height="80"></td><td>
<a name="schluss">
<table width="668" height="80" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a>
</td><td width="256"></td></tr><tr><td /><td height="440"align="center">
<h2 align="center">Dank</h2>
<table width="600"><tr><td >
<ul>
</li>
<li><code><span style="color:#aa0000">blog</span>.sty</code> wurde (2010)
mittelbar/teilweise durch die
<a href="http://de.wikipedia.org/wiki/Deutsche Forschungsgemeinschaft" target="_blank">DFG</a>
untersttzt
</li>
<li>den <span style="color:#aa0000">Einstieg</span> in <span style="color:#aa0000"><acronym>HTML</acronym></span>
verdanke ich in erster Linie meinem Bruder,
Rainer Lck (<a href="http://www.webdesign-bu.de" target="_blank"><code>www.webdesign-bu.de</code></a>)
</li>
<li>frs <span style="color:#aa0000">Zuhren</span> <span style="color:#006600">[Zuschauen]</span>
</li></ul>
und <strong>nachtrglich:</strong>
<ul>
</li>
<li>an <span style="color:#aa0000">Uwe Ziegenhagen</span> (u. a.) fr Hinweis auf<br>
<a href="http://de.wikipedia.org/wiki/Markdown" target="_blank">Markdown</a> und
<a href="http://johnmacfarlane.net/pandoc" target="_blank">pandoc</a>,
</li>
<li>an <span style="color:#aa0000">Bernd Raichle</span> fr Hinweis auf
<span style="color:#aa0000">Kees van der Laan</span>s (NTG) Arbeiten ber
„minimales Markup“,
</li>
<li>„<span style="color:#aa0000">technischen</span> Helfern“
(Kabel/<a href="http://www.x.org/wiki/Projects/XRandR" target="_blank"><code>xrandr</code></a>)!
</li></ul>
</td></tr></table>
</td><td /></tr>
<!-- bottom margin -->
<tr valign="top"><td />
<td align="center"><a href="#START">
<table width="668" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td>
<td><a href="#inhalt">
<table width="256" height="504" border="0" cellpadding="0" cellspacing="0"><tbody>
<!-- HVspace -->
<tr valign="top"><td></td> </tr>
</tbody></table>
</a></td> </tr>
</table>
</body></html>
|