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
|
\documentclass[a4paper]{article}
\usepackage{bugtracker}
\usepackage[intlimits]{amsmath}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{hyperref}
\hypersetup{pdfborder={0 0 0}}
% \usepackage{amsthm}
% Ein Haekchen aus pifont:
\usepackage{pifont}
\newcommand{\ok}{\ifmmode\text{\ding{51}}\else \ding{51}\fi}
\newcommand{\scissor}{\ifmmode\text{\ding{33}} \else \ding{33}\fi}
\declarebugtrackeritem{pgfbug}{1}
\bugtrackerset{
prefix=bugtracker/minimal_,
}
% Fix overful hboxes automatically:
\tolerance=2000
\emergencystretch=15pt
\author{Christian Feuers\"anger}
\title{Todolist for PGFPlots\\\texttt{\small\pgfplotscommandtostring\pgfplotsrevision\temp\temp}}
\begin{document}
\maketitle
\tableofcontents
\section{Tests}
last test verifications:
\begin{tabular}{lllll}
& pgf CVS & pgf 2.10 & pgf 2.00 &pgf 2.00+compat=default\\
pgfplotstests & for 1.5.1 & for 1.5.1 & for 1.4 &2009-12-30 \\
manual & for 1.5.1 & for 1.5.1 & for 1.5 & \\
pgfplotstable.pdf & for 1.5.1 & for 1.5.1 & for 1.5\\
example latex & for 1.5 & for 1.5 & 2009-12-30 \\
example context & for 1.5.1 & for 1.5.1 & 2009-12-30 \\
example plain tex & for 1.5.1 & for 1.5.1 & 2009-12-30 \\
tests context & for 1.4 & for 1.5.1\\
\end{tabular}
\section{Future work}
\begin{itemize}
\item docs: replace `\verb|row sep=\\|' by newlines, it should work now!\ok
\item docs: search for FIXME
\item hist 98\% \ok
\item quiver 95\% \ok
\item contours 95\% ready.
add "labels=if less than X" ?
contour gnuplot currently works if and only if the mesh contains end-of-scanline markers and is in ordering x varies (everything gnuplot-specific)
documentation is incomplete \ok
\item[perhaps] contour filled 10\% ready
\item plot graphics 3D:
\begin{itemize}
\item Documentation \ok
\item datascaling
\end{itemize}
\item patch plots lib: 95\%
\begin{itemize}
\item
implement displacement input
\item bug for quad rectangle in middle point
\item \ok perhaps 1d quadratic/cubic patches (simple)?
\item \ok color data per patch, also for connectivity data
\item document 'shader=flat' in patchplot lib
\item document miter limit and line join options. miter limit=1 is good, use it\ok
$\rightarrow$ perhaps \verb|miter limit=1| as initial config for \verb|patch| plots?\ok
\end{itemize}
\item polar axes: 90\% ready
\begin{itemize}
\item Documentation \ok
\item missing feature: input of cartesian coords \ok
\item special cases \ok (?)
\item tests
\end{itemize}
\item ternary: 95\% ready
\begin{itemize}
\item but there are still quite a lot of feature request concerning them
\item konnodalplots 90\% ready
\end{itemize}
\item smith charts: 90\% ready
now
\begin{itemize}
\item the huge smith chart is sub-optimal
\item perhaps enough for the first stable?
\end{itemize}
\item internal coordmath framework: 80\% ready, but not used everywhere and
undocumented
\item layer graphics support for axes 0\% (should be easy, implement in new branch)
\begin{itemize}
\item new key \verb|/pgfplots/on layer| and \verb|/pgfplots/use layers=<sequence>| (or empty value)
\item give the key a family such that it won't be extracted from styles
\item the \verb|use layers| activates that stuff. Perhaps it can be set automatically somehow?
Perhaps with advanced key filtering? Or I provide an error message if \verb|on layer| is used although \verb|use layers| is off.
\item provide a set of positions where the \verb|on layer| key is checked
\end{itemize}
\item view configuration:
\begin{itemize}
\item \ok document gnuplot import/export
\item view matrix input?
\end{itemize}
\item check 'empty lines' feature -> should have compat mode
\item new public axis API is 90\% complete:
documentation is missing
log scaling is difficult, still
\item Bugfixes
\begin{itemize}
\item what about 'scale' transformations? Are they correct?
\end{itemize}
\end{itemize}
\section{Documentation todo}
\begin{bugtracker}
\begin{doctodo}[+]
document that \verb|axis lines=none| is essentially an alias for \verb|hide axis| .
\end{doctodo}
\begin{doctodo}[+]
Document how to use decorations inside of plots
\begin{verbatim}
\begin{tikzpicture}[]
\begin{axis}[axis lines=middle,
xmin=-2,
xmax=2,
ymin=-2,
ymax=2,
xtick={-1,1},
ytick={-1,1},
yticklabel=\ ,% this disables the standard tick label *text* (but not the line)
extra description/.code={
% this generates custom y labels to implement individual
% styles for every tick:
\node[below left] at (axis cs:0,-1) {$-1$};
\node[above left] at (axis cs:0,1) {$1$};
},
axis line style={->},
]%,x=1cm,y=1cm]
\addplot[samples=100,domain=0:2*pi,
% tedious, but necessary: pgfplots accidentally resets the
% "decorate" option at the beginning of the path (probably a
% bug).
% This is a work-around:
every path/.style={
postaction={decorate},
every path/.style={},
},
decoration={markings,
mark=at position 0.25 with {\arrow{>}},
mark=at position 0.5 with {\arrow{>}},
mark=at position 0.75 with {\arrow{>}}}
]
({sin(deg(2*x))}, {sin(deg(x))});
\end{axis}
\end{tikzpicture}
\end{verbatim}
\end{doctodo}
\begin{doctodo}
document some FAQ for number formatting options.
This should contain how to get non-exponential number printing for log axes
\end{doctodo}
\begin{doctodo}[+]
\verb|\pgfplotspointplotattime| .
\end{doctodo}
\begin{doctodo}
bei dem Bsp-Tex zu pgfplotstable scheint eine Zeile im Tex-File zu fehlen:
\verb|\usepackage{pgfplotstable}|
Außerdem wäre es zum Einstieg für das aus der Datei lesen schön, wenn es
zu den Daten auch ein kurzes Beispiel-File für einen Plot gäbe.
\end{doctodo}
\begin{doctodo}[+]
document the possibiliy of skewed 3d axes by means of manually provided unit vectors
\end{doctodo}
\begin{doctodo}[+]
the \verb|\addplot table from| is still supported -- document a footnote about the ``from'' keyword.
\begin{verbatim}
\begin{tikzpicture}
\begin{axis}
% All these things are valid:
\pgfplotstableread{data-set-two.txt}\datatable
\addplot table[y = c] {\datatable} ;
\addplot table[y = d] \datatable ;
\addplot table[y = a] from \datatable ;
\addplot table[y = b] from {\datatable} ;
\end{axis}
\end{tikzpicture}
\end{verbatim}
\end{doctodo}
\begin{doctodo}[+]
contour: documentation is missing in large parts.
mentioning of point meta is missing .
\end{doctodo}
\begin{doctodo}
document the new 'data cs' feature
\end{doctodo}
\begin{doctodo}[+]
Document how to make mesh plots with (white) filled cells (see matlabs mesh function).
Should be the same as surf with faceted color=white.
\end{doctodo}
\begin{doctodo}[+]
Document \verb|scale mode| and other plot graphics related fine tunings
\end{doctodo}
\begin{doctodo}[+]
improve docs for \verb|\pgfplotsforeachungrouped|:
\begin{verbatim}
\pgfplotsforeachungrouped \i/\j in {
1 / a,
2 / b,
3 / c
}{
\edef\temp{\noexpand\node at (axis cs: \i,0.5) {\j};}
% \show\temp % zum verstaendnis, was als resultat dann in \temp steht
\temp
}
\end{verbatim}
\begin{verbatim}
\pgfplotsforeachungrouped \i/\j in {
1 / a,
2 / b,
3 / c
}{
I = \i, J = \j;
}
\end{verbatim}
\end{doctodo}
\begin{doctodo}[+]
mention \verb|xtick=data| in docs for \verb|symbolic x coords|
\end{doctodo}
\begin{doctodo}[+]
provide more examples and more detailed docs for \verb|xbar| and \verb|ybar| plot handlers
docs: Wie gehabt, die
Groesse, Aufloesung und die Zuordnung der Axen etwas detailierter zu
beschreiben waere so mein Tip
Example files:
\begin{minimal}
\documentclass[a4paper]{report}
\usepackage{pgfplots}
\pgfplotsset{compat=1.3}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
xbar,
width=12cm,
height=3.5cm,
enlarge y limits=0.5,
xlabel={\#participants},
xmin=0,
symbolic y coords={no,yes},
ytick=data,
nodes near coords,
nodes near coords align={horizontal},
]
\addplot coordinates {(3,no) (7,yes)};
\end{axis}
\end{tikzpicture}
\begin{tikzpicture}
\begin{axis}[
xbar,
width=12cm,
height=3.5cm,
enlarge y limits=0.5,
xlabel={\#participants},
symbolic y coords={no,yes},
ytick=data,
nodes near coords,
nodes near coords align={horizontal},
]
\addplot coordinates {(1,no) (9,yes)};
\end{axis}
\end{tikzpicture}
\begin{tikzpicture}
\begin{axis}[
xbar,
width=12cm,
height=3.5cm,
enlarge y limits=0.5,
xlabel={\#participants},
xmin=0,
symbolic y coords={set A,set B},
ytick=data,
nodes near coords,
nodes near coords align={horizontal},
]
\addplot coordinates {(6,set A) (4,set B)};
\end{axis}
\end{tikzpicture}
\begin{tikzpicture}
\begin{axis}[
ybar,
enlargelimits=0.15,
xlabel={\# of bananas},
ylabel={\#participants},
ytick={0,1,2,3},
ymin=0,
symbolic x coords={1,2,3,4,5,more},
nodes near coords,
]
\addplot coordinates {(1,1) (2,1) (3,3) (4,2) (5,1) (more,2)};
\end{axis}
\end{tikzpicture}
\begin{tikzpicture}
\begin{axis}[
ybar stacked,
enlargelimits=0.15,
legend style={at={(0.5,-0.20)},
anchor=north,legend columns=-1},
ylabel={\#participants},
symbolic x coords={tool1, tool2, tool3, tool4, tool5, tool6, tool7},
xtick=data,
x tick label style={rotate=45,anchor=east},
]
\addplot+[ybar] plot coordinates {(tool1,0) (tool2,2) (tool3,2) (tool4,3) (tool5,0) (tool6,2) (tool7,0)}; % never
\addplot+[ybar] plot coordinates {(tool1,0) (tool2,0) (tool3,0) (tool4,3) (tool5,1) (tool6,1) (tool7,0)}; % rarely
\addplot+[ybar] plot coordinates {(tool1,6) (tool2,6) (tool3,8) (tool4,2) (tool5,6) (tool6,5) (tool7,6)}; % sometimes
\addplot+[ybar] plot coordinates {(tool1,4) (tool2,2) (tool3,0) (tool4,2) (tool5,3) (tool6,2) (tool7,4)}; % often
\legend{never, rarely, sometimes, often}
\end{axis}
\end{tikzpicture}
\begin{tikzpicture}
\begin{axis}[
ybar,
enlargelimits=0.15,
legend style={at={(0.5,-0.15)},
anchor=north,legend columns=-1},
ylabel={\#participants},
symbolic x coords={tool8,tool9,tool10},
xtick=data,
nodes near coords,
nodes near coords align={vertical},
]
\addplot coordinates {(tool8,7) (tool9,9) (tool10,4)};
\addplot coordinates {(tool8,4) (tool9,4) (tool10,4)};
\addplot coordinates {(tool8,1) (tool9,1) (tool10,1)};
\legend{used,understood,not understood}
\end{axis}
\end{tikzpicture}
\begin{tikzpicture}
\begin{axis}[
ybar,
enlargelimits=0.15,
legend style={at={(0.5,-0.2)},
anchor=north,legend columns=-1},
ylabel={\#participants},
symbolic x coords={excellent,good,neutral,not good,poor},
xtick=data,
nodes near coords,
nodes near coords align={vertical},
x tick label style={rotate=45,anchor=east},
]
\addplot coordinates {(excellent,0) (good,8) (neutral,2) (not good,0) (poor,0)};
\end{axis}
\end{tikzpicture}
\begin{tikzpicture}
\begin{axis}[
ybar,
enlargelimits=0.15,
legend style={at={(0.5,-0.2)},
anchor=north,legend columns=-1},
ylabel={\#participants},
symbolic x coords={excellent,good,neutral,not good,poor},
xtick=data,
nodes near coords,
nodes near coords align={vertical},
x tick label style={rotate=45,anchor=east},
]
\addplot coordinates { (excellent,0) (good,7) (neutral,3) (not good,0) (poor,0)};
\end{axis}
\end{tikzpicture}
\end{document}
\end{minimal}
\end{doctodo}
\begin{doctodo}[-]
release notes:
mention improvements of 'shader=interp'
\end{doctodo}
\begin{doctodo}[-]
new 'output cs' feature (when it is finished)
\end{doctodo}
\begin{doctodo}[+]
There is a typo on section 4.5.12: "As for for dimensional patch plots "
\end{doctodo}
\begin{doctodo}[-]
quiver: the tests have a further pretty example where quiver is on top of
a surf, attached to z =2 or so.
\end{doctodo}
\begin{doctodo}[+]
document 'shader=faceted interp'
\end{doctodo}
\begin{doctodo}[+]
document 'mesh/type'
\end{doctodo}
\begin{doctodo}[+]
document the 'plot graphics/points' feature.
\end{doctodo}
\begin{doctodo}[-]
try a bar plot with individually shaded bars
\end{doctodo}
\begin{doctodo}[+]
document 'contour prepared', 'contour external' and 'contour gnuplot'.
\end{doctodo}
\begin{doctodo}[-]
contour external: Do not forget the \verb|\", \'| etc special handling .
\end{doctodo}
\begin{doctodo}[+]
contour: document 'labels over line' style
\end{doctodo}
\begin{doctodo}[-]
contour: a change label dist
\end{doctodo}
\begin{doctodo}[+]
contour: document the special handling of "point meta".
\end{doctodo}
\begin{doctodo}[+]
clickable:
document 'popup size' and its variants
document `clickable coords size'
document 'richtext' and the formatting things
document \verb|\n| and friends
\end{doctodo}
\begin{doctodo}[+]
document ternary lib
+ do not forget 'cartesian cs' and its applications
\end{doctodo}
\begin{doctodo}[-]
document frac whole format
\end{doctodo}
\begin{doctodo}[-]
document /pgfplots/empty line
\end{doctodo}
\begin{doctodo}[+]
document 'clickable coords' and 'clickable coords code' features
\end{doctodo}
\begin{doctodo}[-]
document 'execute at begin axis' and its new variants
\end{doctodo}
\begin{doctodo}[-]
document how to plot against the coordindex
\end{doctodo}
\begin{doctodo}[+]
document the new 'getcolumnbyname={create col/....}' feature
\end{doctodo}
\begin{doctodo}[+]
document linear regression
\end{doctodo}
\begin{doctodo}[-]
document how to identify the source of "dimension too large" errors:
tracingstuff.
\end{doctodo}
\begin{doctodo}[-]
document how to fix dimension too large problems: restrict to domain for
example
\end{doctodo}
\begin{doctodo}[+]
colorbar styles are not consistent between docs and code
\end{doctodo}
\begin{doctodo}[-]
It seems as if the AMS command \verb|$\text{\ref{ref:to:a:plot}}$| instantiates the
\verb|\ref| at least four times. Document somehow that it is better to use '\verb|\hbox|'
instead
\end{doctodo}
\begin{doctodo}[-]
pgfplotstable: show how to use '\verb|\begin{longtable}|'
\end{doctodo}
\begin{doctodo}[-]
clickable lib:
I have the impression that acroread fires warnings only for the manual - not always when the clickable lib is used. Why!?
\end{doctodo}
\end{bugtracker}
\section{Bugs/Features in PGF/TikZ}
\begin{bugtracker}
\begin{pgfbug}
number printer: apply
\verb|set thousands separator={\cdot}| also to fractional parts:
\begin{minimal}
\documentclass{article}
\usepackage{pgf}
\pgfset{/pgf/number format/.cd,
set thousands separator={{{\cdot}}},
precision=5,
}
\begin{document}
\pgfmathprintnumber{12345.54321} \par
$12 \cdot 2345.543 \cdot 21$ expected \par
\end{document}
\end{minimal}
\end{pgfbug}
\begin{pgfbug}
When reading the manual v2.0 I found a typo 5.1 "Styling the
nodes".
Just after the first block of code, there is a sentence saying
"... can achieve them. Once way is to use ..." which should
be "One way is to use ..."
\end{pgfbug}
\begin{pgfbug}
Beamer + pgf: the default template introduces a white line on top. Interestingly, it happens only for PGF CVS + beamer, but it appears to be dependent on third-party tools as well (see mail conversation with Stefan Tibus)
\end{pgfbug}
\begin{pgfbug}
When using externalize function together with a transform canvas, the result is somehow croped. See this example, compare output with deativated and activated externalize.
\begin{verbatim}
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{external}
\tikzexternalize % activate!
\begin{document}
\begin{tikzpicture}[transform canvas={scale=0.7}]
\node {root}
child {node {left}}
child {node {right}
child {node {child}}
child {node {child}}
};
\end{tikzpicture}
A simple image is \tikz \fill (1,0) circle(5pt);.
\end{document}
\end{verbatim}
\end{pgfbug}
\begin{pgfbug}[open]
pgf users Vol 50 issue 6:
\begin{verbatim}
Hi,
Thanks for TikZ. I'm trying to use the externalization library with
the class file gOMS2e.cls, which is provided for the journal
Optimization Methods and Software. The class file and related
files/documentation can be found here:
http://www.tandf.co.uk/journals/authors/gomslatex.zip
My problem is that the externalized figures are shifted up and to the
left significantly, cutting them off. This problem does not occur
when not using externalization.
This seems to be related to the problem discussed here:
http://sourceforge.net/tracker/index.php?func=detail&aid=3037831&group_id=142562&atid=752792
and may also be related to this one:
http://sourceforge.net/mailarchive/forum.php?thread_name=4C0F342B.5040008%40ins.uni-bonn.de&forum_name=pgf-users
In the other cases, the solution was to use \tikzifexternalizing for
whatever conflicts with the externalization, but it seems that I can't
do this when my class file is the offending bit. Is this true? I
would really like to be able to use the correct \documentclass to
generate the figures so that the size/fonts/etc. are consistent
throughout the resulting document.
A minimal test example is included at the end of this message. It
appears that the image is shifted ~1.25cm to the left and ~0.8cm up.
The problem goes away when using \documentclass{article}.
I'm using the CVS version of pgf, and I get the same result when I
produce postscript figures by using latex and setting
\tikzset{external/system call={
latex \tikzexternalcheckshellescape -halt-on-error
-interaction=batchmode -jobname "\image" "\texsource";
dvips -o "\image".ps "\image".dvi}}
%----------------------------------------------------------------------------------
\documentclass[printer]{gOMS2e}
\usepackage{tikz}
\usetikzlibrary{external}
\tikzexternalize
\begin{document}
\begin{center}
\begin{tikzpicture}
\draw[step=.5cm] (-3,-3) grid (3,3);
\draw[blue,line width=2mm] (-0.5,-3) -- (-0.5,1.2) -- (3,1.2);
\end{tikzpicture}
\end{center}
\end{document}
%----------------------------------------------------------------------------------
Any help would be appreciated; I'm afraid it's over my head at this point.
Thanks!
\end{verbatim}
\end{pgfbug}
\begin{pgfbug}[open]
\verb|\pgfmathdivide@{-0.8}{1.00002}\pgfmathresult| yields
\makeatletter
\pgfmathdivide@{-0.8}{1.00002}\pgfmathresult
instead of -0.8
\end{pgfbug}
\begin{pgfbug}
\begin{verbatim}
\documentclass{article}
\usepackage{german}
\usepackage[utf8]{inputenc} % erlaubt direkte Nutzung von Umlauten
\usepackage{pgfplots} % fuer plots
\usepackage{pgfplotstable} % fuer numeriktabellen
\usepackage{array,colortbl,booktabs}
\usetikzlibrary{external}
\tikzexternalize[force remake]
% DOESN'T WORK. Needs to disable externailization
\usepackage{vmargin}
\setpapersize{A4}
\setmarginsrb{2.5cm}{1cm}{2cm}{2cm}{8mm}{15mm}{5mm}{15mm}
\begin{document}
\begin{tikzpicture}
%\tracingmacros=2 \tracingcommands=2
\begin{axis}
\addplot {x};
\end{axis}
\end{tikzpicture}
\end{document}
\end{verbatim}
\end{pgfbug}
\begin{pgfbug}[+]
Implement support for space trimming and empty entries in \verb|\usetikzlibrary| and its variants
\end{pgfbug}
\begin{pgfbug}[-]
external bug:
\begin{verbatim}
\documentclass[
pagesize=auto, % 1
]{scrbook}
\usepackage{tikz}
\usetikzlibrary{external}
\tikzexternalize
\begin{document}
\KOMAoption{twoside}{semi} % 2
test
\tikz \draw (0,0) circle (3pt);
\end{document}
\end{verbatim}
\end{pgfbug}
\begin{pgfbug}[-]
consider a matrix style which applies only to the outer matrix node style
(see feature request
\verb|https://sourceforge.net/tracker/?func=detail&atid=1060657&aid=3019259&group_id=224188|
)
\end{pgfbug}
\begin{pgfbug}[-]
make assignments to \verb|\pgf@x| and \verb|\pgf@y| always \verb|\global|
\end{pgfbug}
\begin{pgfbug}[-]
implement \verb|\pgfmathfloattocount|
\end{pgfbug}
\begin{pgfbug}[-]
external lib: think whether it is possible to provide the real jobname
without explicit user input. Idea: transport it as TeX code argument to pdflatex
\end{pgfbug}
\begin{pgfbug}[-]
provide '$\times$' or more general formatting rules to number printer
\end{pgfbug}
\begin{pgfbug}[-]
code 2 args doesn't work correctly with spaces between the arguments!?
\end{pgfbug}
\begin{pgfbug}[+]
external lib: implement \verb|\tikzpicturedependsonfile#1|
\end{pgfbug}
\begin{pgfbug}[+]
in pgfplots: invoke \verb|\tikzpicturedependsonfile|.
perhaps the plot-from-table-struct should also use it.
\end{pgfbug}
\begin{pgfbug}[+]
external lib: 'list and make' does not work together with \verb|\include| (aux files!) or other file writing things -- at least not if one tries to do that in parallel.
\end{pgfbug}
\begin{pgfbug}[+]
consider the "plot function" patch from Andy Schlaikjer
\end{pgfbug}
\begin{pgfbug}[+]
it seems fadings don't work correctly with externalization!?
\end{pgfbug}
\begin{pgfbug}[-]
include addition of Christophe Jorssen for MD5 checksums in external lib
\end{pgfbug}
\begin{pgfbug}[+]
write new sub-package 'pgfmanual.sty' which contains a good user interface to the manual styles, environments and all that.
\end{pgfbug}
\begin{pgfbug}[+]
external lib: catcode changes inside of pictures do not work properly.
\end{pgfbug}
\begin{pgfbug}[-]
the fpu can't be used inside of paths. That should be fixed.
$\leadsto$ the problem is that paths may use \verb|\pgfmath...| routines directly.
$\leadsto$ this should work! At least with the public math macros \verb|\pgfmathadd|.
The \verb|\pgfmathadd@| might be implemented differently.
\end{pgfbug}
\begin{pgfbug}[+]
in the manual, the first two arguments of
pgfqkeysactivatesinglefamilyandfilteroptions were inverted.
\end{pgfbug}
\begin{pgfbug}[+]
some predefined filters do not process unknown options correctly
\end{pgfbug}
\begin{pgfbug}[+]
external lib in pgf: think whether 'empty image extension' is a bug or a
feature.
$\leadsto$ feature of \verb|\pgfimage|! Otherwise it wouldn't be possible to provide an extension!
$\leadsto$ bug for external lib which never uses extensions!
\end{pgfbug}
\begin{pgfbug}[-]
fix landscape bug (pdflscape) in external lib (PGF)
\end{pgfbug}
\begin{pgfbug}[+]
the pgf math parser has wrong precedence for '-' prefix op:
\verb|exp(-x^2)| is wrong.
\end{pgfbug}
\begin{pgfbug}[-]
pack the default 'system call' for dvips etc into drivers!
\end{pgfbug}
\begin{pgfbug}[-]
active '|' characters result in compilation bugs (\verb|\usepackage{program}|)
\end{pgfbug}
\begin{pgfbug}[-]
'text height=1em' realisieren mit [node font units]1em
\end{pgfbug}
\begin{pgfbug}[-]
compatiblity code todo:
- the example for plot graphics (with view=0{90}) doesn't work.
$\leadsto$ that's the '\verb|exp(0-x^2)|' bug which is still in pgf 2.00!
\end{pgfbug}
\end{bugtracker}
% BUGS
\section{Bugs in PGFPlots}
\begin{bugtracker}
\begin{bug}
Using \verb|hide axis| or \verb|axis lines=none| causes the axis to vanish -- but it will still consume space in the bounding box!
A work-around for the user who reported the bug was to use \verb|clip=false|:
\begin{minimal}
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\pgfplotsset{compat=1.4}
\begin{document}
\begin{figure}
\centering
\fbox{%
\begin{tikzpicture}
\begin{axis}[axis equal,scale=2,axis lines=none,clip=false]
\addplot3[surf,samples=9,domain=-1:1,y domain=0:2*pi,z buffer=sort,opacity=0.75]
({cos(deg(y)) * (1 + x/2 * cos(deg(y)/2))},
{sin(deg(y)) * (1 + x/2 * cos(deg(y)/2))},
{x/2 * sin(deg(y)/2)});
\end{axis}
\end{tikzpicture}}
\caption{M"obiusband}
\end{figure}
\end{document}
\end{minimal}
Interestingly, this does NOT work for 1d plots... here is what I found out today:
\begin{itemize}
\item excluding the clip path helps for the example above.
\item it has no effect for 1d plots (2d axis)
\item excluding the background path instruction from the low level node causes the bounding box to be empty -- for both 2d and 3d
\end{itemize}
See \verb|unittest_hideaxis*|.
\end{bug}
\begin{bug}[+]
Adding a decoration to a plot requires \verb|every path/.style={decorate,every path/.style={}}| because pgfplots sets its options inside of a \verb|\scope[<options>]|.
This should be fixed.
\end{bug}
\begin{bug}
disable tick scale label if the ticks have been disabled.
\verb|https://sourceforge.net/tracker/index.php?func=detail&aid=3457210&group_id=224188&atid=1060656|
\end{bug}
\begin{bug}
nodes near coords is broken for layer branch
\end{bug}
\begin{bug}[closed]
\verb|axis equal,view={0}{90}| for a 3d axis leads to compilation errors (although it seems to work)
\end{bug}
\begin{bug}
xbar and nodes near coords does not automatically align the nodes, see \verb|http://tex.stackexchange.com/questions/31701/pgfplots-nodes-near-coords-on-xbar-chart-is-off|
\end{bug}
\begin{bug}
view direction is imprecise. It seems as if the $z$ direction is wrong.
See the recent commits on branch \verb|mesh_bg_colormap|
\end{bug}
\begin{bug}
cannot provide clip path usage in pgfplots commands because of the nested scopes.
to reproduce, try to give \verb|\addplot+[/tikz/clip]| to some plot.
\end{bug}
\begin{bug}
3d: automatic label placement for 'axis lines=center' is buggy
\end{bug}
\begin{bug}
\verb|\pgfplotsforeachungrouped| cannot be combined with three or more arguments like \verb|\foreach|
\end{bug}
\begin{bug}
If one specifies \verb|\scope| within an axis, the plots (partially) use their variables, but legends do not.
\begin{minimal}
\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{
compat=newest,
}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
% reverse legend, % uncomment and one entry is missing
legend pos=north west,
]
\begin{scope}[only marks]
\addplot
coordinates { (0,0) (1,1) } node [right] {a};
\addplot
% [green] % uncomment and legend does exactly the wrong thing
coordinates { (0,1) (1,2) } node [right] {b};
\end{scope}
\begin{scope}[mark=none]
\addplot
coordinates { (0,0.5) (1,1.5) } node [right] {c};
\addplot
% [orange] % uncomment and it works
% (I think this is luck, because it does the same
% thing as the [green] example above)
coordinates { (0,1.5) (1,2.5) } node [right] {d};
\end{scope}
\legend{
a,
b,
c,
d,
}
\end{axis}
\end{tikzpicture}
\end{document}
\end{minimal}
\end{bug}
\begin{bug}
the below example of a latex file gives the following error upon the 2nd run of latex. The first run works fine. This happens both when running dvilualatex and just latex, both from TexLive 2011.
The error:
\begin{verbatim}
...
(/usr/local/texlive/2011/texmf-dist/tex/generic/tex4ht/color.4ht)
(/usr/local/texlive/2011/texmf-dist/tex/generic/tex4ht/html4.4ht)
(/usr/local/texlive/2011/texmf-dist/tex/generic/tex4ht/html4-math.4ht))
(./epub.aux)
! Missing \endcsname inserted.
<to be read again>
\protect
l.30 \ref{govconsumptionlegend}
?
\end{verbatim}
\begin{verbatim}
\makeatletter
\def\HCode{\futurelet\HCode\HChar}\def\HChar{\ifx"\HCode\def\HCode"##1"{\Link##1}\expandafter\HCode\else\expandafter\Link\fi}\def\Link#1.a.b.c.{\g@addto@macro\@documentclasshook{\RequirePackage[#1,html]{tex4ht}}\let\HCode\documentstyle\def\documentstyle{\let\documentstyle\HCode\expandafter\def\csname tex4ht\endcsname{#1,html}\def\HCode####1{\documentstyle[tex4ht,}\@ifnextchar[{\HCode}{\documentstyle[tex4ht]}}}
\makeatother
\HCode "xhtml,png,charset=utf-8".a.b.c.
\documentclass[11pt,a4paper]{book}
\def\pgfsysdriver{pgfsys-tex4ht.def}
\usepackage{pgfplots}
\pgfplotsset{width=\textwidth,compat=1.3,every axis/.append style={font=\footnotesize},cycle list name=black white}
\begin{document}
\begin{tikzpicture}
\begin{axis}[ylabel=\%,x tick label style={ /pgf/number format/1000 sep=},ymin=0,xmin=1950,xmax=2009,legend to name=govconsumptionlegend,title=Government Consumption Share of PPP Converted GDP Per Capita at 2005 constant prices]
\addplot[smooth,solid] coordinates {
(1950,12.98732304) (1951,11.18937899) (1952,10.63447043) (1953,11.25741618) (1954,11.35201741) (1955,10.98310036) (1956,11.27808626) (1957,11.06275337) (1958,11.21626046) (1959,11.18458192) (1960,11.02716074) (1961,10.97486816) (1962,10.19712891) (1963,8.50170024) (1964,8.220444391) (1965,8.181873469) (1966,7.859215042) (1967,8.269806768) (1968,8.023789126) (1969,7.867343418) (1970,8.469691612) (1971,8.352726749) (1972,9.263915297) (1973,7.560088984) (1974,7.436700475) (1975,9.207375031) (1976,9.725811776) (1977,9.495010597) (1978,13.74144043) (1979,22.99348928) (1980,23.05639171) (1981,24.02424559) (1982,28.25010594) (1983,35.38307779) (1984,40.11885923) (1985,43.3304334) (1986,44.7847218) (1987,46.7237337) (1988,35.62924609) (1989,30.65659214) (1990,39.89428582) (1991,27.48910619) (1992,24.75024034) (1993,24.68286164) (1994,23.26013887) (1995,23.69594547) (1996,22.53334681) (1997,21.35901868) (1998,21.53873871) (1999,22.22968487) (2000,21.95238646) (2001,21.3231532) (2002,21.29835897) (2003,21.6183452) (2004,21.30177929) (2005,21.51748623) (2006,20.88675316) (2007,20.32549306) (2008,21.13794484) (2009,21.75075984)
};
\addlegendentry{Country 1}
\addplot[smooth,dotted] coordinates {
(1950,8.90574995) (1951,9.181850378) (1952,9.4040808) (1953,9.790597533) (1954,9.766571438) (1955,9.721345475) (1956,9.898347958) (1957,9.986947451) (1958,10.13725015) (1959,10.11995062) (1960,9.9669931) (1961,9.781482565) (1962,9.968596797) (1963,10.33417822) (1964,10.07453069) (1965,10.17668623) (1966,10.4859246) (1967,10.6188237) (1968,10.93369976) (1969,11.01396095) (1970,11.25808879) (1971,11.43128231) (1972,11.45138898) (1973,11.36045323) (1974,11.33276575) (1975,11.50069671) (1976,11.72466305) (1977,12.25394557) (1978,12.52158998) (1979,12.61603185) (1980,12.68712893) (1981,13.01282874) (1982,12.97669774) (1983,12.92432378) (1984,12.72145426) (1985,12.63447969) (1986,12.49591698) (1987,12.22704263) (1988,12.05291461) (1989,12.07675903) (1990,12.25254614) (1991,12.74485006) (1992,13.14305947) (1993,13.41082617) (1994,12.89670369) (1995,12.41585298) (1996,12.34588672) (1997,12.01926401) (1998,12.00221677) (1999,11.69852271) (2000,11.11468531) (2001,11.08248726) (2002,11.05693806) (2003,10.89817902) (2004,10.44900187) (2005,10.05582475) (2006,9.829361577) (2007,9.567882534) (2008,9.714898563) (2009,10.42225882)
};
\addlegendentry{Country 2}
\end{axis}\end{tikzpicture}
\ref{govconsumptionlegend}
\end{document}
\end{verbatim}
\end{bug}
\begin{bug}[+]
the table package does not support non-ASCII column names. If there are non-ASCII column names, it might fail to produce a readable error message.
\end{bug}
\begin{bug}[prio=2]
\#3213889 hyperref boxes are in wrong position for vertical labels
see \url{http://tex.stackexchange.com/questions/13364/how-to-make-pgfplots-vertical-labels-have-proper-hyperref-erence-box
} for problem description and potential fixes
\end{bug}
\begin{bug}[prio=1]
CRASH:
\begin{minimal}
\begin{tikzpicture}
\begin{axis}[
scale mode=scale uniformly,
x={(1pt,0pt)},
y={(-0.5pt,0.5pt)},
z={(0pt,1pt)},
]
% addplot3 works (with 3d coords):
\addplot coordinates {
(0,0) (1,0) (0,1)
};
\end{axis}
\end{tikzpicture}
\end{minimal}
\end{bug}
\begin{bug}[prio=1]
Using $0$ in pgfplots coordinate systems does not necessarily mean ``no offset''. This is misleading. Bug sourceforge \#3168030:
\begin{minimal}
\documentclass[a4paper]{article}
\usepackage{german}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{pgfplotstable}
\usepackage{booktabs}
\usepackage{array}
\usepackage{colortbl}
\begin{document}
\begin{tikzpicture}
\begin{axis}[enlarge x limits=false, extra description/.code={\draw[very thick] (axis cs:2.5,0) -- ++(rel axis cs:0,1.1) node[above,align=center,font=\small]{important};} ]
\addplot coordinates{
(0,1)
(1,2)
(2,3)
(3,4)
(4,5)};
\end{axis}
\end{tikzpicture}
\begin{tikzpicture}
\begin{axis}[enlarge x limits=true, extra description/.code={\draw[very thick] (axis cs:2.5,0) -- ++(rel axis cs:0,1.1) node[above,align=center,font=\small]{important};} ]
\addplot coordinates{
(0,1)
(1,2)
(2,3)
(3,4)
(4,5)};
\end{axis}
\end{tikzpicture}
\end{document}
\end{document}
\end{minimal}
\end{bug}
\begin{bug}[prio=2]
The clipping of tick lines uses the middle of axis lines; it does not incorporate the line width of the axis lines.
\begin{minimal}
\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.3,
every axis/.append style={semithick},
every tick/.append style={semithick,color=black},
tick align=outside
}
\begin{document}
\thispagestyle{empty}
\begin{figure}[p]
\centering
\begin{tikzpicture}
\begin{axis}[xmin=0,
xmax=30,
ymin=0,
ymax=1.2
]
\end{axis}
\end{tikzpicture}
\end{figure}
\end{document}
\end{minimal}
\end{bug}
\begin{bug}[prio=2]
can someone confirm the following behavior. The y label of a plot gets
truncated in some circumstances if the external library is used. This
happens for me if no title is specified for a plot. Consider the
following example:
\begin{minimal}
\documentclass[11pt,a4paper]{article}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=1.3}
\usepgfplotslibrary{external}
\tikzexternalize[force remake]
\begin{document}
\begin{tikzpicture}
\begin{axis}[y tick scale label style={inner sep=1pt}]
\addplot {x * 10^8};
\end{axis}
\end{tikzpicture}
\end{document}
\end{minimal}
\end{bug}
\begin{bug}[prio=8,+]
Decorations in plots appear to be problematic (this is a duplicate! caused by the fact that decorate=false is used at the beginning of every plot, need to adjust every path style):
\begin{minimal}
\documentclass{scrartcl}
\usepackage{pgfplots}
\usetikzlibrary{decorations}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot+[postaction={draw, decorate, decoration=border}] coordinates {(0,0) (5,0.5)}; %funktioniert nicht
\end{axis}
\draw [postaction={draw, decorate, decoration=border}] (0,-3cm) -- ++(5cm,0.5cm); %funktioniert
\end{tikzpicture}
\begin{tikzpicture}
\begin{axis}
\addplot+[postaction={draw, decorate, decoration=border},
% tedious, but necessary: pgfplots accidentally resets the
% "decorate" option at the beginning of the path (probably a
% bug).
% This is a work-around:
every path/.style={
postaction={decorate},
every path/.style={},
},
] coordinates {(0,0) (5,0.5)}; %funktioniert nicht
\end{axis}
\end{tikzpicture}
\end{document}
\end{minimal}
\end{bug}
\begin{bug}[prio=10,closed]
Markers in legends are not (always?) filled properly
\begin{minimal}
\documentclass{article}
\usepackage{pgfplots}
\usepackage{pgfplotstable}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot [mark=*,only marks] coordinates { (-1,1) (1,-1) };
\legend{measured data}
\end{axis}
\end{tikzpicture}
\end{document}
\end{minimal}
caused by the fact that options of `every axis legend' are in effect at this time -- which includes \verb|fill=white|.
\end{bug}
\begin{bug}[prio=11,closed]
polar lib: the clipping of markers doesn't work correctly for partial polar axes.
\end{bug}
\begin{bug}[prio=1]
The legend has the \verb|text depth=0.15em| initial configuration, which is extremely bad for legend entries with huge depth (large fractionals or formulas?)
\end{bug}
\begin{bug}
\url{http://groups.google.at/group/comp.text.tex/msg/adcb1d071c2cba40}
If I use a yshift in a scope to draw two graphs superimposed, the x
label in the second plot (the one in the yshift scope) is not
positioned correctly. I need to manually add another yshift, with the
same value in the opposite direction, to get the label at the correct
place. This happens if the \verb|axis x line = middle| option is used.
Without that option, the x label is positioned correctly. Example
follows:
\begin{minimal}
\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.3}
\begin{document}
\begin{tikzpicture}
\begin{axis}[width=10cm,height=3cm,xlabel={$x$}]
\addplot coordinates {
(0,1) (1,-1) (2,1)
};
\end{axis}
\begin{scope}[yshift=-3cm]
\begin{axis}[width=10cm,height=3cm,xlabel={$x$},
axis x line = middle]
\addplot coordinates {
(0,1) (1,-1) (2,1)
};
\end{axis}
\end{scope}
\end{tikzpicture}
\end{document}
\end{minimal}
Using \verb|xlabel style = {yshift=3cm}| in the second plot will correctly
position the x label (to its default position).
Gab
\end{bug}
\begin{bug}[prio=2,closed]
One cannot load the clickable lib before pgfplots:
see also \url{https://sourceforge.net/tracker/?func=detail&atid=1060656&aid=3033981&group_id=224188}
\end{bug}
\begin{bug}[closed]
the unit vector ratio impl does not work as intended: the manual example
\begin{minimal}
\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[axis equal]
% FokkerDrI_layer_0.patches.dat contains:
% # each row is one vertex; three consecutive
% # vertices make one triangle (patch)
% 105.577 -19.7332 2.85249
% 88.9233 -21.1254 13.0359
% 89.2104 -22.1547 1.46467
% # end of facet 0
% 105.577 -19.7332 2.85249
% 105.577 -17.2161 12.146
% 88.9233 -21.1254 13.0359
% # end of facet 1
\addplot3[patch]
file
{plotdata/FokkerDrI_layer_0.patches.dat};
\end{axis}
\end{tikzpicture}
\end{document}
\end{minimal}
fails and resorts to guesses!
\end{bug}
\begin{bug}[prio=3]
\verb|\addplot table[blue]| ignores the color options!
\end{bug}
\begin{bug}[prio=10]
providing \verb|ymin=0| for a logarithmic axes has no effect; and there is no sanity checking
\end{bug}
\begin{bug}[prio=1]
The \verb|mark list| produces a lot of
\begin{verbatim}
\XC@edef #1#2->\begingroup \ifnum \catcode `\!=13 \edef !{\string !}\fi \ifnum \catcode `\:=13 \edef :{\string :}\fi \ifnum \catcode `\-=13 \edef -{\string -}\fi \ifnum \catcode `\+=13 \edef +{\string +}\fi \ifnum \catcode `\;=13 \edef ;{\string ;}\fi \ifnum \catcode `\"=13 \edef "{\string "}\fi \ifnum \catcode `\>=13 \edef >{\string >}\fi \edef #1{#2}\@onelevel@sanitize #1\aftergroupdef #1#1
[........]
{\if}
\@@tmp ->.!80!black
{true}
{the character !}
Missing character: There is no ! in font nullfont!
{the character 8}
Missing character: There is no 8 in font nullfont!
{the character 0}
Missing character: There is no 0 in font nullfont!
{the character !}
Missing character: There is no ! in font nullfont!
{the character b}
Missing character: There is no b in font nullfont!
{the character l}
Missing character: There is no l in font nullfont!
{the character a}
Missing character: There is no a in font nullfont!
{the character c}
Missing character: There is no c in font nullfont!
{the character k}
Missing character: There is no k in font nullfont!
{\def}
{\else}
\end{verbatim}
bugs. Probably fixed with more recent version of xcolor?
\end{bug}
\begin{bug}[closed]
It is not possible to provide \verb|#| comments in inline tables.
\begin{verbatim}
\pgfplotstabletypeset[
]{
# GHz dB
1 0
2 -10
3 0
}
\end{verbatim}
The problem occurs since the \verb|#| has special handling and many internal checks fail. I started to implement special handling, but that might require vast changes.
One solution is to use
\begin{verbatim}
\toks0={#1}
\edef\macro{\the\toks0}
\end{verbatim}
instead of
\begin{verbatim}
\def\macro{#1}
\end{verbatim}
anywhere in the code -- the \verb|\def| introduces special checks for the \verb|#| whereas the \verb|\toks| does not.
\end{bug}
\begin{bug}[prio=7,+]
It is not possible to use \verb|\addplot ... node[pos=0.5] {a};| in pgfplots.
Reason: the timer information is tikz high level, but pgfplots uses the PGF basic layer.
DONE.
Open: the \verb|\pgfplotspointplotattime| should provide more useful output: SCI notation and it should respect custom trafos
\end{bug}
\begin{bug}[closed]
Groupplots + named nodes doesn't yield the correct output. Perhaps scoping difficulties? Or problems adjusting the stored coords?
\begin{minimal}
\documentclass[10pt]{article}
\usepackage{pgfplots}
\usepgfplotslibrary{groupplots}
\begin{document}
\begin{tikzpicture}%
%\begin{axis}[%
\begin{groupplot}[%
group style={group size=1 by 1},%
]%
\nextgroupplot;
\node[name=a] at (axis cs:0.1,-1) {N};
\addplot coordinates{(0,1) (1,2)};
\end{groupplot}
%\end{axis}
\draw (a) circle (5pt);
\end{tikzpicture}%
\end{document}
\end{minimal}
\end{bug}
\begin{bug}[prio=1]
providing \verb|\legend{}| without any \verb|\addplot| commands causes a problem
\end{bug}
\begin{bug}[prio=3,closed]
It is not (properly) possible to provide \verb|surf| to \verb|\addplot|.
\begin{verbatim}
\begin{tikzpicture}
\begin{axis}[]
\addplot[surf,domain=0:720,samples y=25] {cos(x)*sin(y)};%
\end{axis}
\end{tikzpicture}
! Package pgfplots Error: Sorry, you can't use 'y' in this context. PGFPlots expected to sample a line, not a mesh. Please use the [mesh] option combined with [samples y>0] and [domain y!=0:0] to indicate a twodimensional input domain.
\end{verbatim}
OK, I've been working on it:
\begin{itemize}
\item it is now possible to use \verb|\addplot[surf]| and it works.
\item it is \emph{not} yet possible to \emph{sample} matrices with \verb|\addplot[surf]|.
I added the \verb|sample dim| key. But it does not work yet... the plot expression implementation needs to be refactored.
\end{itemize}
\end{bug}
\begin{bug}[closed]
Verify that the list termination (either with \verb|\\| or with \verb|,|) works correctly
\end{bug}
\begin{bug}[closed]
ternary lib: \verb|\addplot| doesn't work correctly, only \verb|\addplot3|
\end{bug}
\begin{bug}[open]
after using a preset key (milli) with x SI prefix, Next, I want to switch to the normal mode, so I write simply: x SI prefix=none, unfortunately the 'none' value is undefined and the compilation can not proceed
\end{bug}
\begin{bug}[closed]
I'm trying to create an extra y tick on a plot, but I want the tick and
label to be on the right side of the plot. I want all the other y ticks
and labels are all on the left side of the plot.
It's almost working properly, but it won't put the extra label on the
right side of the plot where I want it. The tick is appearing on the
right side, but the label is staying on the left side with all the other
labels. I was using version 1.2.2 before and this was working fine, but
I just upgraded to version 1.4 because I wanted to use a new feature
that wasn't present in 1.2.2. Is it possible this was broken somewhere
along the way?
\begin{minimal}
\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
small,
width=12cm,
height=1.8in,
ymin=0,
ymax=10,
xmin=0,
xmax=2,
ybar,
ymajorgrids=true,
yminorgrids=false,
minor y tick num=0,
ytick pos=left,
xtick pos=left,
ytick align=center,
yticklabel={$\pgfmathprintnumber{\tick}\%$},
xtick align=outside,
x tick style={},
xticklabel style={rotate=45,anchor=east,font=\scriptsize\sffamily},
extra y tick style={tick pos=right, ticklabel pos=right, grid
style={thick,color=black}},
extra y ticks={6.25},
extra y tick labels={Extra Label},
]
%\addplot plot[error bars/.cd,y dir=plus,y explicit,x dir=none] table
%[x=Index,y expr=100*\thisrow{AvgLocked},y error=Diff]{locked_tabbed.dat};
\end{axis}
\end{tikzpicture}
\end{document}
\end{minimal}
\end{bug}
\begin{bug}[-,prio=1]
the axis line combination styles can't be adjusted for 3D because they are
evaluated too early.
\end{bug}
\begin{bug}[-]
external lib + dvi/ps + windows: it seems the ';' doesn't work; use '\&' to
separate commands
\end{bug}
\begin{bug}[-]
check y tick scale label for 2nd y axis
\end{bug}
\begin{bug}[closed]
foreach variants in pgfplots accept only one parameter
\begin{verbatim}
% \foreach \x/\y in {1/a, 2/b, 3/c}
% {\node at (axis cs:0,\x) {\y};}% % doesn't work
% \pgfplotsforeachungrouped \x/\y in {1/a, 2/b, 3/c}
% {\node at (axis cs:0,\x) {\y};}% % doesn't work
\end{verbatim}
\end{bug}
\begin{bug}[-]
groupplots + extra braces or foreach are incompatible.
\end{bug}
\begin{bug}[-]
numplotspertype and forget plot and ybar interval yields errors.
\end{bug}
\begin{bug}[-]
expression plotting and empty 'y' results in errors. Perhaps it would be
better to handle that explicitly somehow?
(occurs for hist when one input line is empty)
\end{bug}
\begin{bug}[-]
view normal vector does not correctly respect plot box ratio and x dir
\end{bug}
\begin{bug}[closed]
plot box ratio has a strange input format (compare with unit vector ratio).
\end{bug}
\begin{bug}[-]
clickable and Windows Acrobat Reader 9 has been reported to fail
it this still active?
\end{bug}
\begin{bug}[-]
/pgfplots/samples at and /tikz/samples at work on the same axe. Tantau says that this key support foreach statement and thus the dotes notation. However, when I want to use two or more different dots notation within pgfplots, latex crashes !
Here is an example which clarify this issue :
\verb|\addplot+[mark=none,variable={\t}, samples at = {\foreach \x in {0,10,...,180,200,...340} {\x, }360}] ({sin(t*2)}, {cos(t)}); |
\end{bug}
\begin{bug}[-,prio=2]
potential incompatibility: clickable and external. The clickable lib writes
into pgfplots.djs which might cause multithreaded problems.
\end{bug}
\begin{bug}[-]
groupplots: mixing 2d/3d in one groupplot doesn't reset 'zmin,zmax' ?
\end{bug}
\begin{bug}[+]
'clip=false' does not disable marker clipping!
\end{bug}
\begin{bug}[-]
multiple ordinates: grid lines are drawn on top of function plots; that's bad.
Check:
I think you have to change the process line previousely invoked, and make the axes generation at the end :
1. generating adequate grid $\leadsto$ 2. plotting functions $\leadsto$ 3. creating axes, tick nodes...
You can take a minute look at figure 1 @ "The addplot Command: Coordinate Input" section 4.2 p 19.
and you can remark that colour filling overlaps x- and y-axis ! So I suggest that you use "excute at end picture=<axis generation code>" tikz option or similar to avoid this issue.
\end{bug}
\begin{bug}[-]
3D axes: it is difficult to get an 1:1 correspondence to tikz.
\end{bug}
\begin{bug}[closed]
3D axes: providing three unit vectors is not sufficient, one also needs to set
'view={}{}'. That should be done automatically.
- 3D axes: Providing three unit vectors manually yields incorrect axis
initialisation.
\end{bug}
\begin{bug}[-]
3D axis: provide support for manual axis configuration,
- depth (n vector),
- foreground/background,
- tick label axes,
- ...
\end{bug}
\begin{bug}[-]
Patch plots: directly transform cdata. Should simplify interpolation during
refine/triangulation etc. and shouldn't make a difference otherwise.
\end{bug}
\begin{bug}[closed]
manual errors of given pgfplots\_unstable version:
94 2.5.12 \verb|addplot+[patch] --> addplot3+[patch]|
162 "xmode, ymode, zmode" and "x dir, ..."
come again on page 177
\end{bug}
\begin{bug}[closed]
don't loose \verb|\ref|'s when externalizing
I'll provide a minimal later
\end{bug}
\begin{bug}[-,closed]
incompatibility pdfpages (most recent version), MikTeX and tikz external lib
(something with shipout routine)
\end{bug}
\begin{bug}[-]
plot graphics: \verb|\ref| legend doesn't work properly
\end{bug}
\begin{bug}[-,prio=9]
french babel and colorbars are not fully compatible. The problem is that
colorbars use '\verb|\addplot| graphics {};' with a fixed catcode for the ';' --
which might lead to problems.
\end{bug}
\begin{bug}[-]
markers should not be drawn on top of everything else. Always restore the
clipping region for each plot.
\end{bug}
\begin{bug}[-,closed]
mesh/patch plots:
- jump thing + z buffer=sort probably doesn't work
\end{bug}
\begin{bug}[-]
ternary axes: the 'marker clipping' doesn't work (naturally)
\end{bug}
\begin{bug}[-]
polar axes:
\begin{itemize}
\item \ok is wrong since 'near ticklabel' anchor uses pointunitx which is not correctly initialised for polar axes.
\item axis equal
\item \ok data scaling needs to be disabled for X axis.
\item \ok auto tick labels work only for the case of disabledatascaling
\end{itemize}
\end{bug}
\begin{bug}[-]
contour:
the table/meta=2 default is wrong.
\end{bug}
\begin{bug}[-,prio=2]
OK : 'every node near coord/.append style={scale=0.7}'
NOT OK: 'every node near coord/.append style={scale=0.7},ybar'
-$\leadsto$ sequence of shift and scale matters ...
\end{bug}
\begin{bug}[-]
dimension too large sanity checking: TeX uses the maximum value instead.
Perhaps that can be checked?
\end{bug}
\begin{bug}[-,prio=2]
view={0}{90} and enlargelimits=auto is not always satisfactory: it disables enlarged
limits, but for contours, I'd like to have it.
What is to do?
\end{bug}
\begin{bug}[-]
provide remark at end document "Package pgfplots: consider using the preamble
command \verb|\pgfplotsset{compat=1.3} to improve label placement|"
\end{bug}
\begin{bug}[-]
there are a lot of .code 2 args styles which do not support spaces between
their arguments. Fix this.
\end{bug}
\begin{bug}[-]
contour external should allow different variations how to deal with
end-of-scanline markers. gnuplot requires empty lines; matlab doesn't deal
with them as far as I know.
\end{bug}
\begin{bug}[-,prio=2]
contour external doesn't handle explicitly provided matrix data (mesh/rows and
mesh/cols) yet.
\end{bug}
\begin{bug}[-,prio=2]
contour external doesn't handle the ordering flag correctly.
\end{bug}
\begin{bug}[-]
the quiver/scale arrows thing might need an "auto" option. If I don't add it
now, it'll probably never work in the future.
\end{bug}
\begin{bug}[-]
`1.23456e4;' in a log plot resulted in hard-to-read error messages. Improve
sanity checking here.
\end{bug}
\begin{bug}[-,prio=2]
the title style for 'footnotesize' is not as I want it to: it doesn't respect
the depth below the baseline. Or does it need a \verb|\strut|?
\end{bug}
\begin{bug}[-]
avoid dimension too large errors which occur due to a data range restrictions.
Example:
data range = 0:6000
view range = 0:1
$\leadsto$ results in error.
But that's easy to detect! Just compute the point coordinate in float (after
the scaling is complete). Then, install a filter somewhere. perhaps an "a
posteriori" filter in the pointxyz command?
\end{bug}
\begin{bug}[-,closed]
the autodetection of the '\verb|\\|' list format is buggy: it should return true if
and only if the last element is '\verb|\\|', not if '\verb|\\|' occurs inside of the
argument.
\end{bug}
\begin{bug}[-]
\verb|yticklabels={<list>}, extra y ticks={...}| is incompatible since the extra
ticks share the same tick typesetting routine (which, in turn, queries the
<list>).
\end{bug}
\begin{bug}[-,closed]
'\verb|\addplot[only marks]|' does not assign a plot mark; one needs 'mark=*'
explicitly. that's confusing...
see also \url{https://sourceforge.net/tracker/?func=detail&atid=1060656&aid=3045389&group_id=224188}
\end{bug}
\begin{bug}[-]
The 'text depth' in legend entries is incompatible with 'text width'.
The problem: text width is realized using \verb|\begin{minipage}[t]|
so its contents is all in the depth. Setting text depths overrides the
height!
\end{bug}
\begin{bug}[-,prio=1]
the '/pgfplots/table/.search also' is overwritten during \verb|\addplot table| with
/.search also={/pgfplots}. That's not so good.
\end{bug}
\begin{bug}[-]
one can't provide 'disable log filter' to addplot (but it might be
interesting)
\end{bug}
\begin{bug}[-]
FPU: atan doesn't check for unbounded inputs.
\end{bug}
\begin{bug}[-]
unbounded inputs: improve warning messages: they should not contain low level
FPU args.
\end{bug}
\begin{bug}[-]
the user interface to set 'tickwidth=0' for a SINGLE axis is not very good: it seems one needs 'xtick style={/pgfplots/tickwidth=0}' to do so...
$\leadsto$ can be solved if tickwidth has a family, I guess. Something like 'draw' which will not be pulled by pgfplots. But then remains a problem of key paths.
\end{bug}
\begin{bug}[-]
I have seen that 'plot table' with very large files can produce pool size problems -- even if the coordinates are all filtered away.
In other words: the code can't simply read a file and throw its contents away.
The problem appears to be some math parsing using the table/x expr and friends.
'pool size = names of control sequences and file name'
$\leadsto$ the math parser could be improved with ifcsname
\end{bug}
\begin{bug}[-]
axis lines and 3D: some tick lines are not drawn, see manual examples
\end{bug}
\begin{bug}[-,closed]
check for placement of tick scale label for compat=newest
$\leadsto$ I improved them for 2d and 3d
$\leadsto$ needs some further checks, I guess
\end{bug}
\begin{bug}[-]
providing zmin/xmax to an axis activates 3D mode, ok -- but lower dimensional input routines appear to fail.
\end{bug}
\begin{bug}[-]
one can't provide 'scale' as argument to a (3d) axis
\end{bug}
\begin{bug}[closed]
getthisrow still has to be fixed
\end{bug}
\begin{bug}[-]
it may still happen that log-axes get only *one* tick label (in my case \verb|10^{-0.2}|). That should never happen.
The range is about ymin=4.7e-1, ymax=9.5e-1
\end{bug}
\begin{bug}[-]
log samples in plot expression for 3D plots
\end{bug}
\begin{bug}[-]
different log bases and gnuplot
\end{bug}
\begin{bug}[+]
3D gnuplot: z buffer fails (see tests)
\end{bug}
\begin{bug}[-]
I tried placing a named coordinate inside one axis and using it in
another. It failed.
CF: The axis is drawn inside of its own picture which will only be shifted if everything has been drawn. That will be the origin of this problem I guess
Miraculously I can use the coordinate outside axis env. So I have
reached the following solution:
\end{bug}
\begin{bug}[-]
plot coordinates doesn't check too well if
1. addplot3 is used but only two coords are given
2. addplot is given but three coordinates are provided (also for plot expression)
\end{bug}
\begin{bug}[+]
gnuplot: set terminal table seems to be deprecated.
\end{bug}
\begin{bug}[closed]
gnuplot and 3D
$\leadsto$ I need a shared interface to prepare the required keys for expression plotting
\end{bug}
\begin{bug}[-]
the compat things are not yet complete: I wanted to check when it is really necessary (for example if 'x dir' is used)
\end{bug}
\begin{bug}[-]
the nodes near coords feature produces unexpected results when used together
with markers $\leadsto$ this is due to the default configuration of scatter plots.
\end{bug}
\begin{bug}[closed]
check whether /pgfplots/ keys are processed properly in legends. This is
certainly not the case for the \verb|\label/\ref| legend!
$\leadsto$ which ones are the problem?
\end{bug}
\begin{bug}[-]
the ybar style won't be set inside of \verb|\label{}|
\end{bug}
\begin{bug}[-]
axis equal for semilog plots is not correct (?)
\end{bug}
\begin{bug}[-]
backwards compatibility problem:
axis descriptions can't contain /pgfplots/ styles any longer! This is a key
path issue :-(
\end{bug}
\begin{bug}[-]
BUG: in empty axes, '\verb|xtick=\empty|' is ignored.
\end{bug}
\begin{bug}[closed]
finish impl of ticklabel pos.
I should use the same thing for tickpos as well.
And: the default arg processing which uses ticklabel pos = tickpos needs to be
fixed.
the 2D axes are wrong.
\end{bug}
\begin{bug}[-]
The automatic tick labeling sometimes produces inconsistent or confusing
labels:
1. engineering and fixed number style are mixed up.
2. If range of an axis is so small that the labels differ only on the third
decimal, still only two decimals are used.
\end{bug}
\begin{bug}[closed]
3D: axis equal implementation might not be correct (at least not for view
special cases)
\end{bug}
\begin{bug}[-]
3D:
error bars and
stacked plots
need to be updated.
\end{bug}
\begin{bug}[closed]
the \verb|\thisrow| commands in the table package does not (always) respect aliases!
\end{bug}
\begin{bug}[-]
interp shader is displayed transparently in evince
\end{bug}
\begin{bug}[-]
\begin{verbatim}
3D: the use of \addplot3 and \addplot is not sanitized properly
Possibilities:
- used \addplot when \addplot3 should have been used
- used \addplot3 where \addplot should have been used.
What can happen here!? Shouldn't this work in every case?
- The "xtick" value is not applied unless there is a coordinate in the x range:
$\leadsto$ that's the handling of empty figures...
not working:
\begin{axis}[xtick=0]
\end{axis}
not working:
\begin{axis}[xmin=-5,xmax=5,xtick=0]
\end{axis}
not working:
\begin{axis}[xmin=-5,xmax=5,xtick=0]
\addplot coordinates { (-10, 0) };
\end{axis}
working:
\begin{axis}[xmin=-5,xmax=5,xtick=0]
\addplot coordinates { (0, 0) };
\end{axis}
\end{verbatim}
\end{bug}
\begin{bug}[-]
think about basic level commands for the axis lines -- this should also allow
\pgfpathclose !
\end{bug}
\begin{bug}[closed]
the arguments to \verb|plot file[#1] and plot table[#1]| are not consistent with
rest. They need to be treated as behavior options (maybe in a different key
path).
\end{bug}
\begin{bug}[closed]
verify that 'draw=none' works! Is something broken here?
$\leadsto$ write tests!
+ it appears to be desired that (at least some) markers invoke
\verb|\pgfusepathqfillstroke|
$\leadsto$ they always 'draw', regardless of tikz color settings.
$\leadsto$ ok, I patched that in my marker code... (hackery :-( )
- no, it works only partially:
draw=none or fill=none works as expected.
But 'blue' disables filling!?
- Possible fix:
Overwrite \verb|\filltrue \fillfalse, \drawtrue, \drawfalse|:
they should set a further boolean '\verb|\drawbooleanhasbeenset|' and
'\verb|\fillbooleanhasbeenset|'.
$\leadsto$ Replace the \verb|\pgfusepathqfillstroke| if and only if the respective
booleans have been set *explicitly*. If they are unchanged, fall back to
a "reasonable" default.
\end{bug}
\begin{bug}[-]
In 3D case axis [xyz] line != box, there is just ONE hyperplane.
My implementation works only if either ALL are box or ALL are 'middle'.
\end{bug}
\begin{bug}[closed]
3D case : grid lines work correctly, but they are not satisfactory.
I'd like grid lines in the background only.
\end{bug}
\begin{bug}[-]
3D case : tick/grid lines are on top of the axis lines. This leads to
poor quality.
\end{bug}
\begin{bug}[+]
the clickable library does *not* work inside of figure environments
$\leadsto$ yes. That's fixed; was a bug in hyperref.
- I could try to re-implement it without insdljs.
Ideas:
- the document catalog's names dictionary needs to '/JavaScript
[(<arbitrary script name>) <dictionary with JS>]' entry.
The <dictionary with JS> contains document level javascript.
- it is very simple to generate these entries for my case.
Unfortunately, this may be incompatible with 'insdljs' or other tools
which write DLJS.
- I am not sure why the floating figures of TeX produce an
incompatibility here. It appears the 'hidden' flag in the form fields
are the problem - if that is the case, I'd need to reimplement the
form annotations (which could be more difficult).
\end{bug}
\begin{bug}[-]
javascript stuff does not work if the complete figure is rotated (sidewaysfigure).
\end{bug}
\begin{bug}[-]
javascript: incompatiblity with external library:
1. filenames: \verb|\jobname| contains characters with incompatible catcodes and
that funny insdljs package tries to assemble macros with these
characters.
$\leadsto$ fixed; I simply use pgfplotsJS as temporary file name.
2. the images as such have corrupted forms
$\leadsto$ Can be fixed if
\verb|\usepackage{eforms} |
is used BEFORE loading pgf. The reason: \verb|\begin{Form}| and the shipout-hackery
of the pgf externalization bite each other.
\verb|\begin{Form}| must come before the shipout hackery of pgf.
3. \verb|\includegraphics |does not preserve PDF forms.
\end{bug}
\begin{bug}[-]
the interrupt bounding box feature should still update the data bounding box.
Otherwise, transformations may fail.
\end{bug}
\begin{bug}[-]
extra ticks can be disabled by the tick special cases for axis lines (when two
axis lines cross each other)
\end{bug}
\end{bugtracker}
% FEATURES
\section{Feature Proposals PGFPlots}
\begin{bugtracker}
\begin{feature}
improve support for circle / ellipse paths inside of an axis
compare \url{http://www.digipedia.pl/usenet/thread/16719/198}
\url{http://sourceforge.net/mailarchive/forum.php?thread_name=D595FD68-AFAB-4C1C-8B9D-A2F84D1A0598\%40mac.com&forum_name=pgfplots-features}
\end{feature}
\begin{feature}
provide log labels without exponents, i.e. $10000$ instead of $10^4$
\end{feature}
\begin{feature}
it would be nice to have automatic PNG export for huge graphics. Such an approach, combined with plot graphics,
could result in considerably smaller pdfs and faster rendering. At the same time, it would not suffer the limitation which arises if one uses the external lib and converts the complete figure to png (including axis descritpions)
\end{feature}
\begin{feature}
There is no simple way to provide LOG colorbars:
\begin{enumerate}
\item ymode=log is not supported in `every colorbar' due to key filtering problems
\item disablelogfilter appears to be useless and does not respect `log basis'
\end{enumerate}
If those two this would be fixed, one could provide \verb|colorbar style={ymode=log,disablelogfilter}| and would get a proper logarithmic colorbar. Perhaps even combined with \verb|log basis| ... ?
\end{feature}
\begin{feature}
Cases-statement in math parser
\end{feature}
\begin{feature}
provide a way to provide more customization to stacked plots as in
\verb|http://tex.stackexchange.com/questions/13627/pgfplots-multiple-shifted-stacked-plots-in-one-diagram|
\end{feature}
\begin{feature}
the \verb|empty line| feature should produce a log notice when it finds an empty line in compat mode.
\end{feature}
\begin{feature}
smith charts: provide the same as now, but mirrored (concentric from left end rather then right end)
\end{feature}
\begin{feature}
Support something like '\verb|\addplot table[x symbolic expr={\thisrow{year}-\thisrow{month}-\thisrow{day}}]|'.
\end{feature}
\begin{feature}
What about a `draft' mode which does nothing but typeset an empty axis without descriptions?
\end{feature}
\begin{feature}
Provide features of an axis \emph{outside} of the axis environment. For a start, this could use the \texttt{axis cs} (or an alias to it).
Details and examples:
\url{https://sourceforge.net/tracker/?func=detail&atid=1060659&aid=3086794&group_id=224188}
\end{feature}
\begin{feature}
add 'force 2d axis' key (or similar)
\end{feature}
\begin{feature}
could you extend the /tikz/prefix key so it also works as a prefix for imported files/tables?
So far one has to type for example
\verb| \addplot table {plots/data/test.txt};|
If there would be a search path like \verb|\graphicspath| for graphics it would be really nice.
See also \url{https://sourceforge.net/tracker/?func=detail&atid=1060659&aid=3020246&group_id=224188}
\end{feature}
\begin{feature}
Support standard filters for \verb|hist| and its variants.
Improve filtering for \verb|hist| and similar plot handlers.
I already added the \verb|hist/data filter| and \verb|pre filter| keys (undocumented!). Use them.
\end{feature}
\begin{feature}[-]
the 'xtick' syntax accepts only numbers, not even constant expressions are
possible (and 'pi' is even more complicated).
\end{feature}
\begin{feature}
Table Package: support context--based \verb|row predicate|s (some kind of WHERE clauses)
\end{feature}
\begin{feature}
Is it possible to have bar plots which do not start from the x or y axis?. For example a bar plot from (0,2) to (0,3).
\end{feature}
\begin{feature}
support the \verb|/data point/x| method for all key filters and in all contexts (i.e. in the same context where \verb|\thisrow| is accepted)
\end{feature}
\begin{feature}
Support selection of individual 3D axis lines which shall be drawn (or ``floor'')
\end{feature}
\begin{feature}
Support custom unit vectors for 3D axes
\end{feature}
\begin{feature}[-]
bar plots: provide constant zero level?
\end{feature}
\begin{feature}[-]
implement properly layered graphics --- especially for grid lines
should probably also respect multiple ordinates
\end{feature}
\begin{feature}[-]
linear regression which passes through (0,0) (see mail of Stefan Pinnow)
\end{feature}
\begin{feature}[-]
plot graphics 3D: handle the case when the first two points share the same x
(or y) coordinate
\end{feature}
\begin{feature}[-]
hist does not allow modifications to the data range
\end{feature}
\begin{feature}[-]
see the interesting things at
\url{http://peltiertech.com/Excel/Charts/axes.html#Broken}
broken (y) axis: remove interval [a,b]
idea:
if y<a : visualize as usual
if a<y<b : use coordinate y=a
if b<y : use coordinate y=y-(b-a)
axis:
\begin{itemize}
\item
compute two sets of axis descriptions. Perhaps one can try to
compute the step size just once, and discard only [a,b] afterwards?
This would require to use a canvas axis length corresponding to the
unremoved axis range.
BTW: I need access to the unremoved axis range; both for tick computation
and for 'nodes near coords' or the clickable lib.
\item draw a decoration at the break.
\item perhaps also a decoration near affected coords.
\item perhaps I should apply the thing during the visualization phase, not
before. Then, I have all limits and the correct coordinates; only canvas
coords are affected.
\end{itemize}
\end{feature}
\begin{feature}[-]
plot graphics for 3D axes.
\end{feature}
\begin{feature}[-]
feature to replicate axis descriptions on both sides
\end{feature}
\begin{feature}[-]
polar axes: polar bar plots (see sourceforge feature request and
\url{http://matplotlib.sourceforge.net/examples/pylab_examples/polar_bar.html} )
\end{feature}
\begin{feature}[-]
couldn't you add something like
\verb|\providecommand*\pgfplotsset[1]{}|
to the "tikzexternal.sty" so one doesn't have to do it by hand when
switching from tikz/pgfplots?
\end{feature}
\begin{feature}[-]
discontinuity in the middle of a plot
(as an example see the phase diagram of water
\url{http://pruffle.mit.edu/3.00/Lecture_29_web/img20.gif})
\end{feature}
\begin{feature}[-]
ternary diagram for extractions (more details will come)
\end{feature}
\begin{feature}[-,prio=9]
filled area between 2 addplot's (already requested in mailing list)
perhaps style 'fill plot' which is applied in vis phase. There, one can
access the postprocessed information of the previous plot.
DUPLICATE
\end{feature}
\begin{feature}[-]
make work \verb|\matrix in \matrix| so one can use groupplots or
"Allignment in Array Form" (section 4.18.4) with legends
\end{feature}
\begin{feature}[-]
nested axes would be a nice feature.
TODO:
- update the list of global state variables
- "interrupt" these variables somehow.
- make sure local redefinitions of TikZ commands (like point commands)
work; the \verb|\let...@orig=| assignments should be handled somehow.
- What about keys? They will be inherited from the outer axis...
perhaps the best would be an
\begin{verbatim}
\endgroup
<nested axis>
\begingroup
<restore state>
\end{verbatim}
which includes the keys of the outer axis!?
\end{feature}
\begin{feature}[closed]
support for "spy"glass into particular parts of an axis
appears to work correctly!?
\end{feature}
\begin{feature}[-]
groupplots: group-wide axis labels
\end{feature}
\begin{feature}[closed]
It would be really great to have the possibility to attach a style to every nth row of a data table. For example, I would like to have a \verb|\midrule| not after every line or after odd/even lines but after every fifth (or whatever) line.
\end{feature}
\begin{feature}[-][prio=1]
log plots: minor tick num would be useful here! If tick labels are placed at
'1e-5, 1e0', minor tick num= 4 would lead to the minor tick lines at
'1e-4,1e-3,1e-2,1e-1' which is useful.
So:allow minor tick num for log axes.
$\leadsto$
need to adjust the check for "uniform log ticks"
\end{feature}
\begin{feature}[-]
is there a way to get the current row/col index during addplot?
\end{feature}
\begin{feature}[-]
plot shell:
- It would be nice if the standard shell interpreter could be replaced.
Idea:
\verb|\pgfkeys{/pgfplots/plot shell/interpreter/.code 2 args={sh #1 > #2}}|
then in the code
\verb|\pgfkeysvalueof{/pgfplots/plot shell/interpreter/.@cmd}{#1.sh}{#1.out}\pgfeov|
- the pgfshell macro is quite general and could be added to pgf (as
suggested by you, Stefan). However, this would also need modifications in
tikz.code.tex to get some sort of high-level user interface.
I find plot shell very useful, and it could be added easily. My
suggestion:
Either write a high level user interface for tikz or rename the command
to pgfplotsshell and put it into pgfplotscoordprocessing.code.tex.
In the meantime, I added it to pgfplotscoordprocessing.code.tex (bottom).
- there is a potential difficulty with the 'addplot table shell' command
(which is a good solution!): the semicolon in this routine will have a
fixed catcode. But packages like babel with french language will change it
to active, so french people can't use addplot table shell. The solution
is technical and I am not proude of my own anyway... we'll just have to
think about one.
- documentation for the 'table shell' feature is missing yet.
- I am not sure if the replication of /tikz/prefix and /tikz/id is helpful
or confusing....
\end{feature}
\begin{feature}[-,prio=9]
> Is it possible to shade the area between two curves, using pgfplots, such as
> in this example: \url{http://www.mathworks.com/matlabcentral/fileexchange/13188}
> The only shading I could find is between one curve and the x axis... Shading
> between curves seems to be possible, but only with stacked curves. Is is
> possible to disable stacking somehow, but keep the closedcycle behavior?
DUPLICATE
\end{feature}
\begin{feature}[-]
new \verb|\plotnumofactualtype| thing: if you set /tikz/ plot handlers in
\verb|\begin{axis}|, they won't be set before the visualization phase. consequently,
I can't count them!
Idea: add a 'family' to each of them. Or wright a coord filter which checks
for \verb|\tikz@plot@handler| . Or write pgfplots styles which set them.
\end{feature}
\begin{feature}[-]
feature request for line styles in tikz/pgf or pgfplots respectively:
add dash-dotted line which is quite commen in engineering field
for example something like
\begin{verbatim}
\tikzset{
dash-dot/.style={
dash pattern=on 4pt off 3pt on 1pt off 3pt,
},
}
\end{verbatim}
\end{feature}
\begin{feature}[+]
Konnodalplots fuer Ternary Axes
given: pairs of points $(A_i,B_i)$ with $A_i,B_i \in R^3$ for the connodals
aim: connect $A_i -- B_i$ for each $i$ \emph{and} create the binodal line $A_1 -- A_2 -- \dotsb A_n -- B_n -- B_{n-1} --\dotsb B_1$
Remarks of stefan:
Im Anhang ist ein Beispiel gezeigt, wie es gehen k\"onnte.
Noch einmal zur Kl\"arung der Begriffe, mit denen ich gleich argumentieren werde:
\begin{itemize}
\item
Binodale: Kurve
\item
Konode(n): Gerade(n) [engl.: tie line]
\item Kritischer Entmischungspunkt:
Ist der Punkt, an dem die beiden Punkte der Konode zusammenfallen.
(nicht eingezeichnet)
\item Mischungsl\"ucke: Das Gebiet, was von der Binodalen eingeschlossen wird.
[engl.: miscibility gap]
\end{itemize}
Im Anhang findest du zum Einen die Daten-Datei und zwei m\"ogliche
Darstellungsformen.
Das "\verb|gibbs_phase_diagram|" ist die Darstellung im Dreieckdiagram (was auch
Gibbs'sches Phasendiagramm oder Gibbs'sches Phasendreieck genannt wird);
"\verb|cartesian_phase_diagram|" entsprechend im Kartesischen Phasendiagramm.
\IfFileExists{gibbs_phase_diagram.pdf}{\includegraphics[width=7cm]{gibbs_phase_diagram.pdf}}{}
\IfFileExists{cartesian_phase_diagram.pdf}{\includegraphics[width=7cm]{cartesian_phase_diagram.pdf}}{}
Wenn man die Daten generiert, bekommt man \"ublicherweise 2 Matrizen mit den
jeweiligen Zusammensetzungen an den Enden der Konoden ($A_y$ bzw. $B_y$, wobei y die
jeweilige Komponente ist). Diese kann man dann einfach nebeneinander setzen und
erh\"alt z.B. das mitgelieferte Textfile.
Jetzt k\"onnte man schon einmal die Binodale zeichnen. Dazu generiert mein Kollege
in Matlab eine neue Matrix, indem er die UpDownGeflippte-Matrix B unter die
Matrix A h\"angt und diese dann zeichnen l\"asst.
Damit die Binodale "sch\"on rund" ist, erzeugt man h\"aufig mehr Punktepaare, als
man nachher als Konoden anzeigen lassen m\"ochte. In den mitgelieferten Plots ist
so nur jede 5. Konode eingezeichnet.
Die Frage ist nun, wie man das Abfragen der Konoden gestalten kann. Daf\"ur g\"abe
es jetzt die M\"oglichkeit einen Key zu erstellen, der sowas sagt wie "plot every
Xth tie line".
Ich denke mal, du brauchst auch noch einen sch\"onen Namen den Aufruf dieses
Spezialfalls. Da diese zum Zeichnen von Mischungsl\"ucken dient, w\"are der
Englische Name daf\"ur (s.o.) eine M\"oglichkeit.
was mir noch eingefallen ist:
- Zuweisung der Spalten
Es sollte weiterhin m\"oglich sein, Spalten zuzuweisen. Die Frage ist jetzt nur, wie man das macht. Am Einfachsten d\"urfte es sein, in den ersten 3 Spalten nach den Namen zu suchen. Sollte sie dort nicht gefunden werden, sollte eine Fehlermeldung erscheinen. Zum Zuweisen der "zweiten" dazugeh\"origen Spalte sollte zu der gefundenen Spaltennummer 3 hinzuaddiert werden. Metadaten k\"onnen somit erst ab der 7. Spalte auftauchen.
- kartesische Darstellung
hier hatte ich vergessen zu erw\"ahnen, wie dies \"uberhaupt funktioniert (vielleicht hast du es aber auch schon alleine herausbekommen).
Da sich die 3. Komponente immer als Differenz zu den gezeigten beiden ergibt, ist diese nicht zwingend zum Darstellen erforderlich. Ausgehend von der gleichen gegebenen table-Datei muss nun nur noch angegeben werden, welche beiden Komponenten dargestellt werden sollen. Dies sollte wie schon oben beschrieben wurde m\"oglich sein.
Das Plotten sollte dann out-of-the-box m\"oglich sein.
\end{feature}
\begin{feature}[-]
disable bounding box updated during addplot -- it makes no sense and wastes
time (unless the axis is hidden)
\end{feature}
\begin{feature}[closed]
output cs:
\begin{itemize}
\item
implement automatic limit computation
$\leadsto$ I prepared something like that; use it.
I guess I'll need to convert the streamed data to the accepted format of
the axis, at least in order to update limits.
\item IDEA:
\begin{itemize}
\item
provide the ``data cs'' as option (not ``output cs'')
\item convert to the required axis cs automatically before limits are checked
\item keep the converted coordinate system
\end{itemize}
\end{itemize}
\end{feature}
\begin{feature}[-]
polar:
\begin{itemize}
\item
is my current datascaling approach correct? I mean, is the linear trafo
feasible at all?
\item the *affine* radius datascaletrafo could be enabled, if only
parts of the circle are drawn at all, for example
xmin=0,xmax=45,
ymin=1e-4,ymax=1.003e-4
Idea: check arc size and disable the radius *affine* data scaling only if
the arc has more than 90 (?) degrees
Is that mathematically correct? And: is it useful at all?
\item handle "empty axis". It should reset to a circle, not a box.
\end{itemize}
\end{feature}
\begin{feature}[-]
patch visualization: provide displacement input format
\end{feature}
\begin{feature}[+]
write better on-the-fly table generation support like
\verb|\addplot table[y=create col/linear regression{x=Basis,y=L2/ref_h,xmode=log,ymode=log},]|
\end{feature}
\begin{feature}[+]
improve access to `create on use' things in addplot table.
\end{feature}
\begin{feature}[+]
linear regression: at least when used inside of addplot table, the initial
values of x,y,xmode,ymode should be acquired from pgfplots!
\end{feature}
\begin{feature}[-]
the following keys should process their argument with pgfmathparse:
\begin{itemize}
\item
\item [xyz]tick,
\item min/max
\item tickmin/max
\item meta min/max
\item domain/ y domain,
\item error bar arguments,
\item without FPU: width/height/ view
\item check optimizations of the math parser!
\item check if I can activate the FPU during the survey phase!
\end{itemize}
\end{feature}
\begin{feature}[-]
add polar coordinates
\end{feature}
\begin{feature}[-]
Idea for input stuff: implement high level user interface for coordinate
input, similar to the pgf basic level framework. Then, add styles on top of it
(try to be compatible with DV engine)
\end{feature}
\begin{feature}[-]
Idea:
implement an automatic /pgf/number format setting which determines a
suitable representation for a *set* of numbers.
For example,
1e-17 0.2 0.4 0.8
should be printed as
0 0.2 0.4 0.8
whereas
1e-17 2e-17 3e-17
should be printed using the scientific range (perhaps even using some sort
of scaling as for ticks).
This would be useful for contour plot labels as well.
$\leadsto$ a realization should check the data range (especially its exponent).
Thus, I want a *relative* number printing style.
\end{feature}
\begin{feature}[-]
new plot structure : use the `/data point' key interface coming with pgf CVS
\end{feature}
\begin{feature}[-]
new structure for math operations:
\begin{itemize}
\item aim: interface for math operations which works independent of lowlevel repr
\item> FPU vs basic pgf vs LUA vs 'fp.sty' vs ....
\item> log axes can be done in pgf (faster)
\item necessary: high level \verb|\pgfmathparse| *and* mid level invocation of
operations
\item necessary: parsenumber, tofixed, tostring
\item datascaling needs access to exponents and base 10 shifts
\item necessary: check for nan and inf
\item necessary: the max/min routines which are no longer supported by pgf (the
\verb|\pgfplotsmath...| routines)
\end{itemize}
interface:
\begin{itemize}
\item
transparent exchange of math mode routines
\item fast (enough)
\item for each axis separately (optimized for log)
\item variable number of arguments
\item expansion of arguments should be possible
\item the interface is necessary for *coordinate* arithmetics,
not necessarily for the pgf interaction (can keep register math)
\end{itemize}
realization ideas:
\begin{itemize}
\item command suffix for each axis '@basic' versus 'float'
\item central interface to invoke math ops:
\verb|\pgfplotscoordmath{x}{multiply}{{<arga>}{<argb>}}|
Idea: use \verb|\edef| on the arguments.
\item provide \verb|\pgfplotssetmathmode{x}{<suffix>}|
should assert that the desired interface is complete
\item \verb|\pgfmathparse| may need to be adjusted if it uses a different output
format than <suffix>
\end{itemize}
TODO:
\begin{itemize}
\item rethink data scaling transformation. Should it be done as ``coord math''?
\item handling of depth searching needs to be implemented with ``default'' coordmath
\item the log routines -$\leadsto$ also use it for table package.
BUGGY! compare examples in manual. Minor log ticks don't work at
all, default log tick labels are simply wrong.
\item disablelogfilter case
\item \ok error bars work with both, float and log
\item plothandlers.code.tex
\item prepare@ZERO@coords
\end{itemize}
\end{feature}
\begin{feature}[-]
rewrite the read number routines. They should allow 'disabledatafilter' thing
during addplot.
\end{feature}
\begin{feature}[-]
quiver plots:
\begin{itemize}
\item allow to disable update of axis limits
\item provide rescaling of arrows such that they don't overlap.
manual rescaling is simple, auto is more difficult.
auto: if I have a matrix, I could rescale such that its mesh width is
larger than the largest vector.
Same fo a vector of input data.
But what if I don't know whether it's a vector or matrix?
$\leadsto$ second run.
$\leadsto$ after the first, it should be possible to autocomplete the mesh
rows/cols. Try it. If that works, we have a matrix.
$\leadsto$ could be done from within the scanlinelength routines: auto-detect
mesh/rows
mesh/cols
mesh/ordering
mesh/width
but that fails if there is no scanline marker.
\item what with log plots? What with other axis features like symbolic trafos?
$\leadsto$ need difference type!
\item that is: quiver plots in log coords are *multiplicative* and invoke the
same routines. make special handling for '0'.
\item allow feature where (u,v) are *coords*, not vectors. this could allow
additive log quiver plots.
\end{itemize}
\end{feature}
\begin{feature}[-]
plot expression: make the sampling parameters available within survey phase
\end{feature}
\begin{feature}[-]
the table package uses a lot of logs -- but it can't change the log basis.
\end{feature}
\begin{feature}[-]
3D + axis line variants: someone might prefer GRID LINES as for the boxed case
combined with axis line=left...
\end{feature}
\begin{feature}[-]
bar plots:
\begin{itemize}
\item
bar interval plot handler which *assumes* uniform distances. This allows to eliminate the last, superfluos grid point (because it can be generated automatically as replication xlast + h for known h)
\item in fact, I could also implement
xlast + hlast
and introduce a new name like 'bar interval*' or something like that
\end{itemize}
\end{feature}
\begin{feature}[-]
Mails from Stefan Ruhstorfer:
\begin{itemize}
\item
Gruppierte S\"aulendiagramme sind nach meinem Wissenstand nur dann m\"oglich wenn man in der Axis-Definiton die Bedindung ybar angibt. Ich finde diese Ausrichtung sehr unflexible, da ich sehr oft \"uber das Problem stolpere, dass ich in meinem gruppierten S\"aulendiagramm noch eine waagrechte Linie oder \"ahnlichs einzeichnen m\"ochte um z.B. meine obere Toleranzgrenze einzuzeichnen. Bis jetzt mache ich das \"uber den normalen draw Modus, was auch ausgezeichnet funktioniert. Jedoch habe ich dann das Problem, dass ich keinen sch\"onen Legendeintrag mehr bekomme. Hier h\"ate ich 2 Vorschl\"age. Zum einen die Legende "freier" zu gestalten. Also so, dass man beliebig (ggf. auch ohne Plot) ein Legendenelement hinzuf\"uen kann und vllt. noch das zugeh\"orige Symbol festlegen kann. (Bis jetzt habe ich das Problem, das ich mit tricksen zwar meine Obere Tolerangrenze in die Legende bekomme, dann jedoch mit einem S\"aulenzeichnen davor).
Der andere Vorschlag ist, dass S\"aulendiagramm anders zu definiern. So das ich auch noch einen Plot hinzuf\"ugen kann, der mir eine waagrechte Linie ohne zu tricksen einzeichnen l\"asst.
\item Eine Gruppierung von stacked bars ist nach meinem Wissen nicht m\"oglich. Es ist zwar schwer sich ein Anwendungsgebiet daf\"ur vorzustellen, aber wenn sie danach mal suchen (speziell im Excelbereich) werden sie sehen, dass viele Leute so eine Funktion benutzen.
$\leadsto$ siehe auch folgemails mit Beispielskizzen
$\leadsto$ beachte: Fall 2.) erfordert mehr arbeit als lediglich 'line legend', weil ybar ja den koordinatenindex verarbeitet!
\end{itemize}
\end{feature}
\begin{feature}[-]
Mail by Hubertus Bromberger:
\begin{itemize}
\item \ok
Period in legend, without the need of using the math environment?
\verb|\legend{ML spcm$.$, CW spcm$.$, ML AC};|
\item Maybe a more straight forward way for legend to implement something like
shown in the graph. (see his mail .tex)
$\leadsto$ plot marks only at specific points.
thus, the legend image should contain both lines and marks, but there
are effectively two addplot commands.
\item As a physicist, I often have the problem to fit curves. A job gnuplot can do
very well. It should be possible using "raw gnuplot" but maybe you can either
provide an example or even implement a more straight forward way for this
purpose.
\item The color scheme is not really my taste.
In CONTEXT:
\begin{verbatim}
cycle list={%
{Col1,mark=*},
{Col2,mark=square*},
{Col3,mark=diamond*},
{Col4,mark=star},
{Col5,mark=pentagon*},
{Col6,mark=square*},
{Col7,mark=diamond*},
{Col8,mark=triangle*} }}
\definecolor[Col1][r=0.24106,g=0.05490,b=0.90588] % blau
\definecolor[Col2][r=1,g=0.05490,b=0.06667] % rot
\definecolor[Col3][r=0.65490,g=0.73333,b=0.01176] % grün
\definecolor[Col4][r=0.08627,g=0.92549,b=0.91373] % tyrkis
\definecolor[Col5][r=1,g=0.5,b=0] % orange
\definecolor[Col6][r=0.54118,g=0.51765,b=0.51765] % grau
\definecolor[Col7][r=0.80784,g=0.49804,b=0.06275] % okker
\definecolor[Col8][r=0.74902,g=0.07451,b=0.91765] % lila
\end{verbatim}
\item Sometimes it would be good to have a bit more of a programming language, but
still that's not what tex is made for. The python-script looks promising, it's
just, that I think it doesn't work with context.
\end{itemize}
\end{feature}
\begin{feature}[-]
add something like
\begin{verbatim}
\pgfplotstabletypeset[
cell { 1 }{ 2 }={\multirow{*}{3}{text}}
]
\end{verbatim}
\end{feature}
\begin{feature}[+]
I got several feature requests for non-cartesian axes.
Perhaps there is a way to generalize the complete procedure... as far as I
remember, I use the pointxyz routines anyway to place tick marks and so on.
Perhaps it can be reconfigured to do something "advanced".
Idea: nonlinear transformation into the axis combined with special drawing
rotuines for the axis?
ternary diagrams
\url{http://staff.aist.go.jp/a.noda/programs/ternary/ternary-en.html}.
smith charts
\url{http://www.mathworks.com/access/helpdesk/help/toolbox/rf/f2-999699.html}
\url{http://www.siart.de/lehre/smithdgr.pdf}
\end{feature}
\begin{feature}[+]
smith charts
\url{http://www.siart.de/lehre/tutorien.xhtml#smishort}
\url{http://www.siart.de/lehre/smithdgr.pdf}
\url{www.amanogawa.com/archive/docs/G-tutorial.pdf}
\url{http://www.mathworks.com/access/helpdesk/help/toolbox/rf/f2-999699.html}
ok, basic things work todo still:
\begin{itemize}
\item UI for default tick positions
\item \verb|dense smithchart ticks| is not perfect
\item there are problems with limits beyond +-16000
\end{itemize}
\end{feature}
\begin{feature}[-]
ternary diagrams todo:
\begin{itemize}
\item the \verb|\pgfplotsqpointoutsideofaxis|
work only for position 1, nothing in-between (since it doesn't compute the
other axis components correctly)
\item data ranges are currently only correct if in [0,1] or if one provides the
[xyz]min and [xyz]max keys (and the ternary limits relative=false).
How should it work!?
\end{itemize}
\end{feature}
\begin{feature}[X]
idea: 'mesh/ordering=auto'. Just check for 'x varies' and 'y varies'! The two
first points inside of a scanline are enough.
\end{feature}
\begin{feature}[-]
contour:
\begin{itemize}
\item labels={true,false,auto}
$\leadsto$ auto should deactivate labels if there are too many contour lines.
\item labels should not be clipped...
\item add label position shifting facilities.
$\leadsto$ identify by contour label *and* an optional index. There may be more
than one line.
\end{itemize}
\end{feature}
\begin{feature}[-]
contourf: I guess filled contour plots could be possible if always two
adjacent color levels are combined into a single path which is then filled
with the simplified even/odd rule (not the winding fill rule). With the
underlying smoothness assumption $C^0$, there can't be any level between two
adjacent ones, and there can't be self-intersections.
\end{feature}
\begin{feature}[-]
it would be very interesting to allow more flexible handling of empty lines in
input data, especially files.
\end{feature}
\begin{feature}[-]
contour draft TODO:
\begin{itemize}
\item color of text nodes
\item make sure there is at least one label node
\item implement contourf
\begin{itemize}
\item often: use 'even odd rule' to fill adjacent contours.
\item but this works only if adjacent contours are contained in each other.
\item if that's not the case, perhaps I need to add an artifical path from
the data limits.
\item idea: in case I know the corner values, I'd know which contour
plateau requires the artifical path.
\item other idea: I could implement some sort of even-odd rule in TeX. This
should also yield the information.
\end{itemize}
\end{itemize}
\end{feature}
\begin{feature}[-]
implement simplified constructions to access DIFFERENCE coordinates.
For example, \verb|\draw| ellipse needs x radius and y radius.
\end{feature}
\begin{feature}[-,prio=9]
it might be interesting to fill the area between two paths. Perhaps there is
such a feature in pgf; or perhaps I can generalize the \verb|\closedcycle|
implementation written for stacked plots.
DUPLICATE
\end{feature}
\begin{feature}[+]
provide a \verb|\numplotsperplothandler| or something like that. This would improve
things for bar plots!
\end{feature}
\begin{feature}[-]
the 'table/y index' should be changed. It should be min(numcols,1) instead of 1.
\end{feature}
\begin{feature}[-]
table package and axes should improve their communication.
Namely:
\begin{itemize}
\item
\item communicate table names.
\item communicate xmode/ymode
\item communicate log basis [xy]
\end{itemize}
\end{feature}
\begin{feature}[-]
provide and document access to (sanitized?) mesh/rows and mesh/cols fields
during the survey phase. This might allow 2d key filters
\end{feature}
\begin{feature}[-]
Praktisch f\"ande ich, wenn man folgende Dinge spezifizieren kann:
1. Welche Zeilen aus der Datei ausgelesen sollen (h\"aufig gibt es nicht
nur 1, sondern mehrere Header-Zeilen, oder auch am Ende noch sonstige
Zeilen)
\end{feature}
\begin{feature}[-]
improve support for multiple ordinates
\end{feature}
\begin{feature}[-]
it would be useful if the clipping could be disabled for certain parts of the
axis. Is that possible?
\begin{itemize}
\item yes.
Idea: start clipping for every axis element separately! Shouldn't be
much more expensive than a single marker path.
\item should work in the same way as before, there is no difference!
\item scopes should introduce no further problems
\item I could eliminate the nasty marker list
\end{itemize}
\end{feature}
\begin{feature}[-]
provide a \verb|\pgfplotspathcube| command as generalization from the cube marker.
The cube command should work similar to pathrectangle or rectanglecorners.
\end{feature}
\begin{feature}[-]
re-implement sampling loops. I should discard the compatibility with foreach
internally in order to gain accuracy! Maybe it is necessary to invoke
different loops - one for tikz foreach (samples at) and one "standard"
sampling routine.
\end{feature}
\begin{feature}[-]
optimization ideas:
\begin{itemize}
\item replace \verb|\pgfpointscale| with a 'q' version $\leadsto$ it invokes the expensive math parser.
\item pgfmultipartnode evaluates every anchor twice
\item implement a cache for expensive, repeated math operations like 'view'
directions or common results of $1/||e_i||$ .
\item search for unnecessary math parser invocations; replace with 'q' versions
if possible.
\item implement a hierarchical generalization of the 'applist' container (a tree
applist of arbitrary length)
\item eliminate the deprecated 'non-legend-option' processing.
\item remove the different (empty) paths of the axis node -- it appears they are
not necessary and waste only time and mem.
\item try implementing an abstract 'serialize' and 'unserialize' method - it
might be faster to re-process input streams instead of generating
preprocessed coordinate lists.
\item try to reduce invocations of pgfkeys
\item optimize the filtered pgfkeys invocations - the filter is slower than
necessary!
\item the plot mark code invokes a lot of math parsing routines - which is a waste
of time in my opinion. All expressions etc. have already been parsed.
\item the point meta transform is set up twice for
scatter plots.
\item my elementary data structures always use \verb|\string| to support macros as data structure names. I fear this might be ineffective.
Perhaps its better to check if the argument is a macro (at creation time, thus only once) and call \verb|\edef#1{\string#1}| to assign some sort of name to it.
This will invoke \verb|\string| only once. Is this faster?
\item eliminate the 'veclength' invocations for single axes - they can be
replaced with "inverse unit length * (max-min)"
\item the key setting things can be optimized with pgfkeysdef
\item create the /pgfplots/.unknown handler (.search also=/tikz) once and remember it.
\item the (new) tick label code might be very expensive:
\begin{itemize}
\item check for (unnecessary) calls to \verb|\pgfpointnormalised| -- the normal
vectors are already normalised!
\item check the cost for bounding box size control of the tick labels --
maybe this can be optimized away if it is not used. But this decision
is not easy.
\end{itemize}
\end{itemize}
\end{feature}
\begin{feature}[-]
perhaps math style \verb|{grid=major, axis x line=middle, axis y line=center, tick align=outside}|
\end{feature}
\begin{feature}[-]
asymmetric error bars
\end{feature}
\begin{feature}[-]
provide access to axis limits and data bounding box.
It would be useful to get access to axis coordinates, for example in 'circle (XXX)'
\end{feature}
\begin{feature}[-]
allow math expressions for axis limits etc. Idea: try float parsing routine;
if it fails: use math parser first.
\end{feature}
\begin{feature}[-]
write a public math interface which provides access to axis internals like
limits, the 'dimen-to-coordinate' method and so on.
$\leadsto$ it might be useful to use pgfmathparse for any numerical input argument as
well.
\end{feature}
\begin{feature}[-]
Store the axis limits into the axis' node as saved macros. This would allow
\begin{itemize}
\item 'use [xy] limits of=<axis name>'
\item access to axis limits from other macros.
\item provide a command
\verb|\pgfplotslimits{current axis}{x}{min}|
which expands to the 'xmin' limit.
PROBLEM: to WHICH limit: the untransformed one? The transformed one? The
logarithmized one?
\begin{itemize}
\item> I can't compute exp(xmin) in log plots!
\item Ideas:
\item provide both, if possible. It is NOT possible for log axes.
\item use log-limits ( possibly combined with 'logxmin=' option ?)
\item The operation requires several operations because floats need to
be converted. Idea: do that only for NAMED AXES.
\item all user-interface macros must be expandable!
\item I don't want to spent time for number format conversions
unnecessarily here!
\item provide \verb|\pgfplotslimits| and \verb|\pgfplotstransformedlimits|
combined with simpler key-value interfaces
\item I could also provide access to the unit lengths (they are
available as macro anyway)
\item ALTERNATIVE: implement access to axis limits as a math function
which simply defines \verb|\pgfmathresult|.
\item that is probably the most efficient way to do it. I only need to
register the new function(s) to PGF MATH.
\item PGF 2.00: use \verb|\csname pgfmath@parsefunction@\pgfmath@parsedfunctionname\endcsname|
\item PGF > 2.00: use \verb|\pgfmathdeclarefunction|
Is it possible to provide 'string' arguments which are not
parsed? No.
\end{itemize}
\end{itemize}
\end{feature}
\begin{feature}[-]
I could provide public macros for the data transformations (and inverse
transformations). This would also allow relatively simple access to axis
limits.
\end{feature}
\begin{feature}[-]
cycle list should be implemented using an array structure. That's faster.
\end{feature}
\begin{feature}[-]
what about a feature like 'draw[xmin=...,xmax=...] fitline between points (a)
(b)'?
\end{feature}
\begin{feature}[-]
interpolate missing coordinates for stacked plots.
\end{feature}
\begin{feature}[-]
the error bar implementation is relatively inefficient. Think about something like
'/pgfplots/error bars/prepare drawing'
which sets common style keys for every error bar
\end{feature}
\begin{feature}[-]
think about using a combination of the visualization engine of pgf CVS and my
prepared-list-structure. Maybe I can adjust the list format for the current
plot type? I need
\begin{itemize}
\item scatter/line plots 2D
\item meta coords
\item quiver may need extra vectors
\item matrix plots may need twodimensional structure
\item error bars could be handled more consistently
\item ...
\item> implement a visualization class which provides methods
\begin{itemize}
\item prepare()
\item visualize()
\item serialize()
\item visualizestream()
and provide protected pgfplots methods
\item axis$\leadsto$preprocesscoordinate (filters, logs)
\item visualizer$\leadsto$prepare()
\item axis$\leadsto$processcoordinate()
\item visualizer$\leadsto$serialize()
\item axis$\leadsto$postprocesscoordinate()
The markers as they are implememted now don't really fit into this framework.
The clipping region is not really what I want here...
Idea: enable/disable clipping separately for each drawing command!
\end{itemize}
\end{itemize}
\end{feature}
\begin{feature}[-]
the coordindex shouldn't be changed by z buffer=sort
\end{feature}
\begin{feature}[-]
table package: provide abstract layer for low level storage interface.
Idea: the interface should allow the container interface
\begin{itemize}
\item push\_back()
\item get(i)
\item set(i)
\item foreach()
\item pop\_front()
\item newempty()
\item clone()
\item unscope()
\item startPushBackSequence()
\item stopPushBackSequence()
\end{itemize}
$\leadsto$ this could allow to use arrays for fast algorithms. At least it would make
things easier to read.
Problem as always: the 'unscope()' operation.
Currently, I have two different structures: the applists which have fast
construction properties and the standard lists which implement the rest.
Can I combine both? Yes, by means of the incremental construction pattern:
\begin{verbatim}
\startPushBackSequence
\push_back
\push_back
\push_back
\stopPushBackSequence
\end{verbatim}
$\leadsto$ inside of the construction, only \verb|\push_back| is allowed and the structure is
in "locked state" (low level: applist repr)
$\leadsto$ Idea: the creation is fast, afterwards, it has flexibility.
\end{feature}
\begin{feature}[-]
It is certainly possible to write some sort of CELL-BASED 'mesh/surf' shader -
a combination of 'flat corner' and cell based rectangles:
\begin{itemize}
\item every coordinate denotes a CELL instead of a corner,
\item the "shader" maps the cdata into the colormap to determine the cell color
\item details?
\begin{itemize}
\item to get well-defined cells, I have to enforce either a non-parametric
lattice grid or do a LOT of additional operations (?).
\item alternative: define N*M cells by N+1 * M+1 points.
\item perhaps a combination of both?
$\leadsto$ that's more or less the same as 'flat mean' up to the further
row/column pair
\end{itemize}
\item it would be generally useful to have an "interval" or "cell" mode:
the idea is that every input coordinate defines an interval (1d) or a cell
(2d). To define the last cell, one needs to add one "mesh width" somehow.
I just don't know where:
\begin{itemize}
\item the artificial cell should be processed with the normal streams -
including limit updates, stacking etc.
\item the artificial cell needs to know when the end-of-stream occurs.
For 1d plots, that may be possible. For 2D plots, this information
requires a valid 'cols' key.
\item I suppose it would be best to patch @stream@coord.. at least for the
'cell' mode.
\item Idea:
\begin{itemize}
\item the \verb|\pgfplots@coord@stream@coord| implementation realizes the
cell-mode: after every 'cols' coordinate, a further one is
replicated. This needs the "last mesh width".
Furthermore, it needs to accumulate a row vector, the "last row".
This last row is need during stream@end to replicate the further
row:
\item the \verb|\pgfplots@coord@stream@end| implementation has to realize the
last step of cell mode: the replication of a further row. It also
has to realize the implementation of 'interval' mode (replication
of last coordinate).
My idea is to simply use an applist for this row accumulation. The
format should be compatible with \verb|\pgfplots@coord@stream@foreach@NORMALIZED|.
That doesn't produce problems, even when the end command is invoked within
a foreach@NORMALIZED loop - because the loop has already ended.
\end{itemize}
\end{itemize}
\end{itemize}
\end{feature}
\begin{feature}[+]
external lib + makefile support: provide data files automatically as prereqs
\end{feature}
\begin{feature}[-]
support \verb|\multicolumn| for legends
\end{feature}
\begin{feature}[-]
it appears line breaks in legend descriptions are a problem (?)
$\leadsto$ bug in pgf: \verb|\\| is overwritten and won't be restored.
\end{feature}
\begin{feature}[+]
external lib + makefile support: provide data files automatically as prereqs
\end{feature}
\begin{feature}[-]
pgfplotstable file open protocol: provide public listener interface
\end{feature}
\begin{feature}[-][]
\verb|\addplot coordinates {\macro};|
\end{feature}
\begin{feature}[-]
precise width calculation idea:
\begin{itemize}
\item Problem: total width depends on width of axis descriptions
\item width of axis descriptions depends on position of axis descriptions
\item position of axis descriptions depends on width of axis
\item width of axis depends on width of axis descriptions
\item non-linearly coupled system.
\item Idea: introduce a loop.
\begin{itemize}
\item details:
\begin{enumerate}
\item
place axis descriptions + the axis rectangle into a box.
\item Measure box'es width, throw it away if it is too bad. Keep it and stop iteration otherwise.
\item recompute the complete scaling.
\item go back to step 1.) and iterate
\end{enumerate}
\item one or two iterations should be enough .
\item it's not necessary to recompute the prepared and stored plots. Just keep them in main memory until the scaling is fixed.
\end{itemize}
\end{itemize}
\end{feature}
\end{bugtracker}
\end{document}
|