File size: 234,146 Bytes
3f03314 | 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 | {"query_id": 134116, "query": "Accents in BibTeX"}
{"query_id": 184855, "query": "Inserting phrase \"Page\" before page number in backref package"}
{"query_id": 131089, "query": "How to install pgfplots in Ubuntu 12.04.3 LTS?"}
{"query_id": 42246, "query": "Table vertical line"}
{"query_id": 19462, "query": "How to add more bibliographies with different names"}
{"query_id": 66216, "query": "Draw arc in tikz when center of circle is specified"}
{"query_id": 183525, "query": "Predefined lists to loop through by \\@for or \\foreach"}
{"query_id": 40067, "query": "Numbering Sections with Sequential Integers"}
{"query_id": 69728, "query": "Indenting lines of code in algorithm"}
{"query_id": 44427, "query": "Rotate picture with caption"}
{"query_id": 78680, "query": "Compare revisions of pdf"}
{"query_id": 53382, "query": "Centering all images"}
{"query_id": 114989, "query": "No file %.nls while using nomencl"}
{"query_id": 39073, "query": "Printing entire PDF slide not just one item per page"}
{"query_id": 10657, "query": "Complete references in between the document"}
{"query_id": 56414, "query": "Adding white space under a letter or symbol"}
{"query_id": 99130, "query": "coloring the page numbers in the table of contents"}
{"query_id": 76025, "query": "Pgfplots: title covers scientific notation"}
{"query_id": 193328, "query": "How can I do the following in latex"}
{"query_id": 53388, "query": "Customizing LaTeX - create a document class or a package?"}
{"query_id": 102510, "query": "Can I create a shortcut to another program with LaTeX Beamer class?"}
{"query_id": 133273, "query": "Can TikZ emulate PSTricks' inline \\Rnodes, scattered along a complex equation?"}
{"query_id": 103843, "query": "How to trim the length of \\toprule?"}
{"query_id": 102511, "query": "Command for the abbreviated author"}
{"query_id": 59926, "query": "How to draw Brownian motions in tikz/pgf"}
{"query_id": 157225, "query": "Is there a shorthand for matrices that doesn't use an environment"}
{"query_id": 64046, "query": "Why isn't \\textwidth the width of the text?"}
{"query_id": 180029, "query": "Why doesn't `\\\\` make a newline in TikZ?"}
{"query_id": 80505, "query": "How to make document custom page dimensions?"}
{"query_id": 143086, "query": "LaTeX: \\endnote doesn't work"}
{"query_id": 146596, "query": "highlighting vowels using a background color"}
{"query_id": 52061, "query": "Beamer: double uncover hides instead of watermarks"}
{"query_id": 60913, "query": "How to have two left margins at different points on one page?"}
{"query_id": 76492, "query": "How to draw hierarchical boxes with vertical lines of sight?"}
{"query_id": 22645, "query": "Hiding the title of the bibliography"}
{"query_id": 75173, "query": "Problem compiling LaTeX file created on Linux"}
{"query_id": 34612, "query": "ntheorem environment with indentation"}
{"query_id": 5828, "query": "Where to find custom beamer themes"}
{"query_id": 27096, "query": "href to an image label - how to jump to the image instead of the caption below the image?"}
{"query_id": 55573, "query": "Vertical space after Bibliography name"}
{"query_id": 149618, "query": "Can't compile BibTeX bibliography"}
{"query_id": 127801, "query": "Sections without numbers"}
{"query_id": 54248, "query": "Change token of biblatex alphabetic style"}
{"query_id": 2311, "query": "Add a legend title to the legend box with pgfplots?"}
{"query_id": 135462, "query": "Text collage (word cloud) in LaTeX?"}
{"query_id": 103854, "query": "Is it possible to mark designated entries in a bibliography with an asterisk?"}
{"query_id": 158563, "query": "Why does the setspace package change my fancyhdr design?"}
{"query_id": 133280, "query": "Centering an item in cases environment"}
{"query_id": 93852, "query": "what is the correct way to check for latex, pdflatex and html in the same latex document?"}
{"query_id": 113636, "query": "Changing the font size and position of glossaries title"}
{"query_id": 181321, "query": "line exceeds margin in cover letter"}
{"query_id": 64053, "query": "Change thickness of TikZ pattern library patterns"}
{"query_id": 68894, "query": "Increase space between listings env. and surrounding text"}
{"query_id": 163933, "query": "\\foreach from 1 to 1"}
{"query_id": 91678, "query": "Self-replicating (La)TeX document"}
{"query_id": 135468, "query": "How do I stop indenting first paragraphs when using amsbook style?"}
{"query_id": 159438, "query": "Package hyperref Warning: Token not allowed in a PDF string"}
{"query_id": 69748, "query": "Align to center"}
{"query_id": 23942, "query": "Bibliography tools that are compatible with biblatex and biber"}
{"query_id": 168398, "query": "\\begin{equation}: \"Display math should end with $$\" error?"}
{"query_id": 175919, "query": "Pathological listings problem: tilde in \\lstinline in a footnote"}
{"query_id": 148779, "query": "No pdf produced by simple document"}
{"query_id": 35933, "query": "Indenting a whole paragraph"}
{"query_id": 75181, "query": "Write Cyrillic in equations just like Greek letters?"}
{"query_id": 125612, "query": "warning: pdflatex> libpng warning: iCCP: known incorrect sRGB profile"}
{"query_id": 193306, "query": "Page breaks and memory"}
{"query_id": 112793, "query": "LaTeX quote length / on 1 line (moderncv)"}
{"query_id": 41370, "query": "What are the possible dimensions / sizes / units LaTeX understands?"}
{"query_id": 88025, "query": "Space length between the chapter number and the chapter title"}
{"query_id": 138980, "query": "Matlab Laprint and jpg,pdf figures"}
{"query_id": 32425, "query": "Enumerate/itemize without margins in table cell best practice"}
{"query_id": 67575, "query": "How to type error function in LaTeX math environment"}
{"query_id": 115808, "query": "How do I make an exact copy of a table, but keep its number for referencing?"}
{"query_id": 115809, "query": "How to use a ballot character instead of a bullet?"}
{"query_id": 183516, "query": "Footnote with no footnotemark"}
{"query_id": 93845, "query": "Suppress printing of only \\bibentry references with natbib?"}
{"query_id": 138988, "query": "Error \u201cUndefined control sequence\u201d"}
{"query_id": 67577, "query": "update manager, how to update packages"}
{"query_id": 21777, "query": "Is there a nice solution to get a \"presenter mode\" for Latex presentations?"}
{"query_id": 195974, "query": "wrapfig how to designate where the figure should come and of what size exactly"}
{"query_id": 121246, "query": "How do you start out each document?"}
{"query_id": 4519, "query": "How do I create an invisible character?"}
{"query_id": 82713, "query": "Is a PDF output from a LaTeX document, a \"derived work\" from the LPPL standard packages?"}
{"query_id": 152801, "query": "Xticklabels with exponential to the end of the axis"}
{"query_id": 175901, "query": "Invisible dots in texmaker editor"}
{"query_id": 29257, "query": "How to prevent LaTeX from line-breaking a phrase?"}
{"query_id": 59953, "query": "How to use TeX Live on Fedora 17?"}
{"query_id": 155073, "query": "Tikz \\foreach: How to iterate over a list stored in a macro?"}
{"query_id": 58628, "query": "Optional argument for newcommand?"}
{"query_id": 67571, "query": "No hyphen for a word"}
{"query_id": 140824, "query": "Numbered letters"}
{"query_id": 4515, "query": "What's the right order when loading packages?"}
{"query_id": 64078, "query": "Removing repeated page numbers from table of contents"}
{"query_id": 89372, "query": "Using LaTeX to create a resume in PDF"}
{"query_id": 136730, "query": "Alternatives to FF Nexus"}
{"query_id": 184813, "query": "Remove language string from biblatex \\printbibliography"}
{"query_id": 155018, "query": "Use of optional argument stretch in \\parbox"}
{"query_id": 124354, "query": "How to type the letter \"i\" with two dots (diaeresis) in math mode?"}
{"query_id": 56450, "query": "My limits are moved"}
{"query_id": 29227, "query": "Can \\includegraphics be used to change an image color?"}
{"query_id": 187089, "query": "Wrong pages in biblatex backref link with hyperref"}
{"query_id": 145691, "query": "Using \\includegraphics within the caption of a figure"}
{"query_id": 44868, "query": "Drawing heatmaps using TikZ"}
{"query_id": 32401, "query": "Footnote backreference with hyperref"}
{"query_id": 32885, "query": "Code to title the bibliography 'References' instead of Bibliography"}
{"query_id": 84921, "query": "href not working with image (but OK with text)"}
{"query_id": 27041, "query": "Automate Fixed Width Page, length > some minimum length, but only as long as needed"}
{"query_id": 124349, "query": "Features of popular class files"}
{"query_id": 2347, "query": "Avoiding page breaks shortly after section/subsection headings"}
{"query_id": 114553, "query": "How set hyphen (divis) to specific unicode char"}
{"query_id": 103885, "query": "How to type an inline chi in Latex"}
{"query_id": 5852, "query": "beamer: footnote text collides with navigation symbols"}
{"query_id": 70747, "query": "listings breaklines not working"}
{"query_id": 111040, "query": "Compile with stix font?"}
{"query_id": 31556, "query": "Do not display one special acronym in list of acronyms"}
{"query_id": 89377, "query": "Using \\sffamily for tick labels in pgfplots"}
{"query_id": 30228, "query": "Custom first page with fancyhdr"}
{"query_id": 110191, "query": "How to automatically add a dereferencing tooltip to eqrefs, footnotes etc.?"}
{"query_id": 158997, "query": "Is there a way to format a diff patch block?"}
{"query_id": 135417, "query": "Width-per-column not working in ConTeXt columnset"}
{"query_id": 21752, "query": "Insertion of perpendicular symbol at intersection of two perpendicular lines"}
{"query_id": 100393, "query": "Resize CD output from amscd"}
{"query_id": 93867, "query": "TikZ doesn't fill when node coordinates are used"}
{"query_id": 134564, "query": "Problem with biblatex apa style and uppercase umlauts"}
{"query_id": 22609, "query": "How can I have text colored on screen and black on printing?"}
{"query_id": 122163, "query": "How to type mdash in bibtex"}
{"query_id": 20425, "query": "\"Z-level\" in TikZ"}
{"query_id": 59977, "query": "Make two beamer blocks the same height / make one beamer block the same height as another"}
{"query_id": 147878, "query": "What does \\empty do?"}
{"query_id": 171960, "query": "No page number for special page"}
{"query_id": 58647, "query": "How to make table with divided column"}
{"query_id": 76057, "query": "Hidden environment"}
{"query_id": 169648, "query": "How to make long references inside the text? Latex"}
{"query_id": 106923, "query": "Math Symbol for Corresponds (Better definition of smash)"}
{"query_id": 184827, "query": "how to left justify comments to indent same as other text in Algorithmic"}
{"query_id": 31545, "query": "Rounded corner colored box around figure"}
{"query_id": 155011, "query": "File location containing the shortcuts of LyX"}
{"query_id": 69302, "query": "How to remove or reduce space for hand-written signature in `closing` of `letter` documenty class?"}
{"query_id": 161715, "query": "How to draw a Pascal's triangle?"}
{"query_id": 135427, "query": "bibtex error in LaTeX"}
{"query_id": 112343, "query": "Beautiful table samples"}
{"query_id": 40000, "query": "pgfplots: Using a column header as the plot title"}
{"query_id": 28359, "query": "Changing oneside and twoside layout"}
{"query_id": 41335, "query": "Citations: Sort and Compress with superscript (Nature style) using non-superscript dash (xetex+Linux Libertine)"}
{"query_id": 20877, "query": "Comma as decimal marker with siunitx (Spanish usage)"}
{"query_id": 79594, "query": "Outsourcing TikZ code"}
{"query_id": 59988, "query": "fancyhdr - anomalous behaviour on first page"}
{"query_id": 84944, "query": "How I can delete frametitle after pagebreak in mdframed box?"}
{"query_id": 57326, "query": "How to take out two arrows from the same line?"}
{"query_id": 143044, "query": "Presentation - set theory"}
{"query_id": 28350, "query": "Linux Libertine and pdfTeX: glyph `a' undefined"}
{"query_id": 122145, "query": "Is there a package (or command) to escape filesystem paths?"}
{"query_id": 99191, "query": "LaTeX editor similar to Word"}
{"query_id": 60972, "query": "merge consecutive skips like css"}
{"query_id": 59985, "query": "Skip the chapter title but still enter it into the Table of Contents"}
{"query_id": 154192, "query": "How to put the character ] inside the short version of caption on list of table?"}
{"query_id": 133253, "query": "Leftmargin problem at the bibliography"}
{"query_id": 71616, "query": "How can I produce a .svg file from a TikZ diagram?"}
{"query_id": 134107, "query": "How to vertically align cell in a longtable environment"}
{"query_id": 102552, "query": "bibtex - how to have a web link without the url (ideally to have a link on the number)"}
{"query_id": 184802, "query": "Problem Update Module at ConTeXt?"}
{"query_id": 111002, "query": "What's the difference between $$ $$ and \\begin{equation} \\end{equation}?"}
{"query_id": 115843, "query": "Command to generate captchas"}
{"query_id": 44834, "query": "How to put a big bracket under different parts of a equation so that I could write e.g. a text specific to that part in the equation?"}
{"query_id": 1050, "query": "What's the difference between \\newcommand and \\newcommand*?"}
{"query_id": 111009, "query": "How to modify sections in my table of contents?"}
{"query_id": 169673, "query": "Citation warnings - Citation 'bibtexkey' on page 7 undefined."}
{"query_id": 168334, "query": "Get a large 0 in a diagonal or triangular matrix matrix"}
{"query_id": 172834, "query": "bibtex: upper letter in the title"}
{"query_id": 76077, "query": "How do I draw a scatterplot with a function plot?"}
{"query_id": 11934, "query": "Creating tables with spanning rows/columns"}
{"query_id": 124316, "query": "TikZ externalize fails to recognize changes"}
{"query_id": 10606, "query": "Putting a bar in the margin"}
{"query_id": 194605, "query": "formula with numerator and denominator of a fraction in display mode"}
{"query_id": 112342, "query": "Is it possible to make \\pnode obey swapaxes?"}
{"query_id": 106900, "query": "Aligning brackets"}
{"query_id": 33703, "query": "Extract x, y coordinate of an arbitrary point in TikZ"}
{"query_id": 18569, "query": "Last sentence broken between two pages"}
{"query_id": 159871, "query": "how to get something like: \"\u21131-Norm\""}
{"query_id": 26181, "query": "Create context sensitive headings"}
{"query_id": 183129, "query": "Changing the order of crossreferences in biblatex footnotes"}
{"query_id": 75568, "query": "Drawing delta-complexes (essentially labeled directed graphs) with TikZ?"}
{"query_id": 46201, "query": "How do I rotate a tikz rectangle about a specific axis?"}
{"query_id": 163510, "query": "Aligned equations in tables"}
{"query_id": 32041, "query": "How can I divide my book into different project without repeating myself?"}
{"query_id": 163511, "query": "insert chapters into document"}
{"query_id": 97357, "query": "Citation problem using biblatex"}
{"query_id": 185785, "query": "Facing Table of contents problem?"}
{"query_id": 185783, "query": "Strange Biblatex behaviour when citing two different entries with the same first author"}
{"query_id": 131929, "query": "hyperlink in bibliography"}
{"query_id": 39919, "query": "biblatex, authoryear-icomp: brackets around the year in footnotes"}
{"query_id": 76422, "query": "How to start a new line when drawing a finite state machine using TikZ?"}
{"query_id": 86227, "query": "Verbatim inside tikz node"}
{"query_id": 103444, "query": "Show ToC of only a section in beamer (completely hide other subsections)"}
{"query_id": 106953, "query": "How to create multicolumns list environment with the package 'enumerate'?"}
{"query_id": 77759, "query": "Best way of breaking a line?"}
{"query_id": 194253, "query": "biblatex - how to romanize words in italic title and v.v"}
{"query_id": 51129, "query": "Section reminders at the top of each page?"}
{"query_id": 86221, "query": "How to force the text to enter into a single page"}
{"query_id": 45347, "query": "Vertical and horizontal lines in pgf-tikz"}
{"query_id": 49705, "query": "TexnicCenter: Multiple tabs in ONE window instead of Multiple Instances (Multiple Windows)?"}
{"query_id": 45346, "query": "Line Breaks in Text Mode not Working"}
{"query_id": 99526, "query": "bug in pgfplots or other packages"}
{"query_id": 97343, "query": "\\includegraphics optional argument not resolved if macro"}
{"query_id": 74244, "query": "Configuring Texmaker to run mpost for FeynMP Graphics"}
{"query_id": 99524, "query": "Biblatex: Chronological sorting in citations only"}
{"query_id": 24422, "query": "Possible to Embed Base64 Encoded Images in TeX Documents?"}
{"query_id": 74243, "query": "Automatically create two PDF output files from one tex file"}
{"query_id": 97340, "query": "Bibtex: How to input accentuation on url?"}
{"query_id": 116758, "query": "Math lists: commas inside or outside of math mode?"}
{"query_id": 44019, "query": "Typesetting algorithms in LaTeX like Knuth"}
{"query_id": 68808, "query": "LaTeX Template for Technical Books"}
{"query_id": 66628, "query": "LaTeX Beamer: Frame outside sections?"}
{"query_id": 66629, "query": "Unicode-math math-style does not work for Latin capitals and Greek"}
{"query_id": 195116, "query": "How does one reference theorem names in a section title in the amsbook class?"}
{"query_id": 173307, "query": "How can I get the center of a scaled image wherever I want it---(x,y)---in the document?"}
{"query_id": 54644, "query": "Name delimiters in biblatex"}
{"query_id": 52463, "query": "install package on linux"}
{"query_id": 127886, "query": "Keep getting \"aux file\" error with the lastpage package"}
{"query_id": 140400, "query": "Figures in latex using loop"}
{"query_id": 7602, "query": "How to add a gif file to my LaTeX file?"}
{"query_id": 14622, "query": "Condition to determine if current line ends or starts the page"}
{"query_id": 6754, "query": "What is the canonical way to redefine the \\emph command"}
{"query_id": 83186, "query": "How can I pass class/package options with spaces in values?"}
{"query_id": 150682, "query": "Newcommand + Stepcounter"}
{"query_id": 85365, "query": "Weird relative positioning of superscript and subscript with \\dot, \\bar"}
{"query_id": 79928, "query": "Extract all emphasized words from latex document"}
{"query_id": 194264, "query": "how to make aligned equations in multline?"}
{"query_id": 195111, "query": "Help to draw an arbitrary surface with in TikZ"}
{"query_id": 165718, "query": "How to make a delimiter out of a character, eg \\right!, similar to \\right)"}
{"query_id": 24879, "query": "How to include PDF as graphics and as attachment without using extra file space"}
{"query_id": 48846, "query": "biblatex \u2013 et al. beginning from second citation?"}
{"query_id": 165714, "query": "Visualisation of the Cantor set"}
{"query_id": 24872, "query": "How to create a diagram for the content of a text?"}
{"query_id": 64459, "query": "overfull vbox warning disable"}
{"query_id": 126550, "query": "Updating Bibliographies On the Fly"}
{"query_id": 25723, "query": "What is the command to just slightly increase the text height of a particular page?"}
{"query_id": 164860, "query": "Problem with Swedish hyphenation using apa6 with \\usepackage[swedish]{babel}"}
{"query_id": 99550, "query": "How do I convert pt/in/cm/mm to em/ex as they are defined at a given point in the document?"}
{"query_id": 48849, "query": "Curved connector ends with arrow"}
{"query_id": 37716, "query": "How to highlight a non-ascii keyword using the listings package?"}
{"query_id": 95191, "query": "Avoid page break in listing"}
{"query_id": 196413, "query": "Which packages come standard with Ubuntu's `texlive` package?"}
{"query_id": 55985, "query": "How to rid of automatic .pdf label from \\includegraphics?"}
{"query_id": 86248, "query": "How can I '\\input' a file without getting the implicit newline?"}
{"query_id": 128722, "query": "How can I create a header with boxes?"}
{"query_id": 150212, "query": "LaTeX tricks with emacs+auctex"}
{"query_id": 193381, "query": "Latex acronym package: english terms with german translation"}
{"query_id": 56839, "query": "\\chaptername is used even for appendix chapters in ToC"}
{"query_id": 8946, "query": "How to combine Acronym and Glossary"}
{"query_id": 152872, "query": "LaTeX Warning: Citation `foo' on page N undefined on input line XX"}
{"query_id": 159041, "query": "Changing the spacing inside equation with underbrace"}
{"query_id": 55988, "query": "How to change symbol separating description item definitions with enumitem"}
{"query_id": 87575, "query": "Retaining double quotation marks in biblatex-chicago with British localization"}
{"query_id": 88423, "query": "Manual font installation"}
{"query_id": 137256, "query": "LyX - undefined control sequence but package seems to be added"}
{"query_id": 139430, "query": "Problem with the command \\pause"}
{"query_id": 140416, "query": "Register accuracy?"}
{"query_id": 87571, "query": "Example template for a hierarchy diagram"}
{"query_id": 165708, "query": "Why does the vertical bar disappear in one cell of my table?"}
{"query_id": 23559, "query": "How to control enumitem's description list via leftmargin and labelwidth keys"}
{"query_id": 118918, "query": "How to insert copyright line on Title Page?"}
{"query_id": 183598, "query": "Histogram and nodes near coords"}
{"query_id": 188807, "query": "Displaying pdf in TeXStudio with minted package"}
{"query_id": 65798, "query": "pgfplots: How to change the alignment of one single node"}
{"query_id": 102595, "query": "Error message because of eqnarray, footnotes, tables or caption?"}
{"query_id": 75116, "query": "What can I use to typeset MATLAB code in my document?"}
{"query_id": 185770, "query": "How remove margin in a paragraph that continues in two pages with different margin?"}
{"query_id": 34670, "query": "babel shorthand \"| doesn't work in macros"}
{"query_id": 66647, "query": "Remove indent with \\cite"}
{"query_id": 160490, "query": "Header in all pages contains page number in latex including chapter page"}
{"query_id": 116739, "query": "pgfplots: Plot around a Pole of a rational function"}
{"query_id": 125690, "query": "bibtex and genitive: the proper way to obtain \"Kuran's (1989) model\""}
{"query_id": 155909, "query": "Centering Two Matrices and Putting Them Side By Side"}
{"query_id": 12428, "query": "Code spanning over two pages with minted, inside listing with caption"}
{"query_id": 52482, "query": "Centering in the \\align* environment"}
{"query_id": 122177, "query": "Changing the formatting of equation numbers"}
{"query_id": 52486, "query": "How to make \"\\input\" in a \"\\include\"-d file use the correct current path?"}
{"query_id": 53338, "query": "Reducing spacing after headings"}
{"query_id": 44472, "query": "How do I center this qtree?"}
{"query_id": 4118, "query": "What's the quickest way to write \"2nd\" \"3rd\" etc in LaTeX?"}
{"query_id": 8959, "query": "Table and multi-page"}
{"query_id": 105672, "query": "Special characters in input file"}
{"query_id": 42289, "query": "remove unwanted contents from list of listings"}
{"query_id": 103012, "query": "Using ERT in LyX"}
{"query_id": 134157, "query": "How can I create multiple lines of equations in flashcards?"}
{"query_id": 19025, "query": "Embed link to an embedded file"}
{"query_id": 115479, "query": "Insert footnotes with \\href"}
{"query_id": 117659, "query": "xcookybooky -- Ingredients and Steps positioning issue"}
{"query_id": 127464, "query": "How could LaTeX replace the tokens <= by the command \\leq?"}
{"query_id": 184411, "query": "How to draw RDF graphs in LaTeX?"}
{"query_id": 25701, "query": "bibtex vs. biber and biblatex vs. natbib"}
{"query_id": 125282, "query": "listings package: no numbering in case the code has only one line"}
{"query_id": 25703, "query": "how to create PDF in grayscale mode or TikZ figure only?"}
{"query_id": 174604, "query": "How to download \"cyrtimes\" package for TexWorks in Windows 7?"}
{"query_id": 51161, "query": "How do I print the cite key along with the entire .bib file?"}
{"query_id": 12878, "query": "`backgroundcolor` in `lstset` does not work"}
{"query_id": 171576, "query": "Insert 4 figures in a square like structure"}
{"query_id": 98240, "query": "How to include images"}
{"query_id": 78644, "query": "how to run BibTex on an undefined citation within LaTex"}
{"query_id": 52499, "query": "Escape the ] character"}
{"query_id": 148799, "query": "How to input non-equivalence into LaTeX"}
{"query_id": 170249, "query": "Minimum number of characters in the last line of a paragraph"}
{"query_id": 139853, "query": "New environment with shaded box leaks into margin"}
{"query_id": 196870, "query": "Why does one sometimes get what appears to be arbitrary spacing with the subcaption package?"}
{"query_id": 86269, "query": "How do I insert a backslash inside a mathematical statement?"}
{"query_id": 11542, "query": "Left and right subscript"}
{"query_id": 6306, "query": "How to annotate PDF files generated by pdflatex?"}
{"query_id": 89771, "query": "Help on adjusting histogram plot created by TikZ"}
{"query_id": 104351, "query": "Fillable form: checkbox linked to hide/unhide sections; pushbutton to add/delete rows"}
{"query_id": 186604, "query": "Problem working fontspec, babel and datetime with cyrillic"}
{"query_id": 68841, "query": "Bold symbols for Greek letters"}
{"query_id": 47964, "query": "How to write a book in LaTeX"}
{"query_id": 65332, "query": "tikzpictures give huge pdf files when processed via dvips and ps2pdf"}
{"query_id": 7650, "query": "Centering \\vdots in a system of many equations"}
{"query_id": 7653, "query": "How to iterate through the name of files in a folder"}
{"query_id": 20021, "query": "How to highlight paragraph (linebreak preserving) as well as itemize, tabular etc.?"}
{"query_id": 169252, "query": "How to export a box to a standalone images?"}
{"query_id": 25710, "query": "How to Continue Enumerate Across Columns in Beamer"}
{"query_id": 117647, "query": "How can I make a page which is no larger than the size of one equation?"}
{"query_id": 147480, "query": "How to justify some block of text in beamer?"}
{"query_id": 22202, "query": "Can I have two different styles of bibliography in the same document?"}
{"query_id": 167077, "query": "Package babel Error: Unknown option `ngerman'"}
{"query_id": 13738, "query": "Circle around symbol"}
{"query_id": 114140, "query": "Indexing an argument to a new command produces odd results"}
{"query_id": 118980, "query": "3 images side by side"}
{"query_id": 152824, "query": "On the tableofcontents"}
{"query_id": 686, "query": "How to get rid of navigation symbols in beamer?"}
{"query_id": 78633, "query": "Color lines tabularx add padding?"}
{"query_id": 173744, "query": "LaTeX - Bibliography numbering"}
{"query_id": 204, "query": "Are there LaTeX performance profiling tools?"}
{"query_id": 205, "query": "What graphics packages are there for creating graphics in LaTeX documents?"}
{"query_id": 139861, "query": "Drawing TikZ pictures step by step for beamer slides"}
{"query_id": 140843, "query": "How to call pdftex.exe"}
{"query_id": 170231, "query": "Page numbering transition from frontmatter to mainmatter going wrong"}
{"query_id": 10226, "query": "How can I achieve dictionary headers for two page spreads in LaTeX"}
{"query_id": 159453, "query": "Does something like a fast LaTeX syntax checker for checking errors / warnings exist?"}
{"query_id": 18157, "query": "Rotating a letter"}
{"query_id": 179089, "query": "How to make an image occupy the remaining white space on a page?"}
{"query_id": 139865, "query": "continuing equation under the equal sign"}
{"query_id": 18156, "query": "Figures on left pages, text on right ones with class book, numbering only on right pages"}
{"query_id": 125264, "query": "Customizing cover sheet for dissertation"}
{"query_id": 18152, "query": "How can I adjust the horizontal spacing between legend entries in PGFPlots?"}
{"query_id": 44449, "query": "Using beamer overlays to set different styles in TikZ"}
{"query_id": 44448, "query": "Get a smaller pdf file out of pdflatex"}
{"query_id": 118969, "query": "Quickest way to search for valid \\fontfamily arguments?"}
{"query_id": 99596, "query": "different font family in math mode"}
{"query_id": 33314, "query": "Asana-math + LuaTeX : missing greeks/arrows"}
{"query_id": 12859, "query": "Define a variable in TikZ"}
{"query_id": 151989, "query": "Add page number with total page number on each page?"}
{"query_id": 171598, "query": "Get multiple citations; [1-5] instead of [1,2,3,4,5]"}
{"query_id": 31137, "query": "Date format in LaTeX"}
{"query_id": 159480, "query": "How to list all available named colors"}
{"query_id": 126589, "query": "Latex software for Android Tablet"}
{"query_id": 78668, "query": "Visualising a matrix as an image, or specifying directly values for segments rather than for vertices"}
{"query_id": 79517, "query": "Question about using the package exceltex"}
{"query_id": 10670, "query": "Quotes in LaTeX ?"}
{"query_id": 105644, "query": "How can I show LaTeX commands (without them being parsed)?"}
{"query_id": 93802, "query": "How do I make a Word file out of a .tex file?"}
{"query_id": 113283, "query": "Confused at + and ++ in TikZ"}
{"query_id": 12855, "query": "Getting those %#!^& signs in the footnote!"}
{"query_id": 86284, "query": "How to emphasize some author names using BibTeX?"}
{"query_id": 89793, "query": "Mail-merging documents from a database"}
{"query_id": 137219, "query": "Mirror-image \\colon?"}
{"query_id": 179074, "query": "Using `\\multirow`"}
{"query_id": 65355, "query": "\\flushbottom vs \\raggedbottom"}
{"query_id": 135039, "query": "How do I include a gnuplot graph in a beamer frame?"}
{"query_id": 44431, "query": "Combine listings package with my own enviroment"}
{"query_id": 126587, "query": "Choosing the paper size"}
{"query_id": 163961, "query": "Reference to the Table of Contents page"}
{"query_id": 169271, "query": "Append .eps to included figures"}
{"query_id": 200611, "query": "pdflatexmk beamer missing { inserted"}
{"query_id": 69717, "query": "Word not hyphenated when surrounded by $ signs, and causing errors without $ signs"}
{"query_id": 22662, "query": "Create caption without float *and* without caption package?"}
{"query_id": 126584, "query": "biblatex - \"n.d.\" when no date given"}
{"query_id": 23510, "query": "Chemcompound package : how to avoid the listoffigures scan ?"}
{"query_id": 174619, "query": "Include tex-files and compile separately"}
{"query_id": 43106, "query": "Change \\headheight for a \\pagestyle"}
{"query_id": 98253, "query": "How to avoid text style adoption in environment?"}
{"query_id": 126582, "query": "List of Algorithm: add \"algorithm\" label"}
{"query_id": 123073, "query": "bibLatex alphabetic style, maximal authors alphabetic style"}
{"query_id": 76474, "query": "Can Footnotes reside in another file?"}
{"query_id": 51196, "query": "Change definition of \\sameauthors to turn off by same dash"}
{"query_id": 226, "query": "Installing TTF fonts in LaTeX"}
{"query_id": 111098, "query": "How to have solid block emphasising a section"}
{"query_id": 111099, "query": "Hyperref not jumping to the top of the page"}
{"query_id": 79508, "query": "How to fill the limits of the two curves?"}
{"query_id": 5008, "query": "When to use bold, italics, small caps, typewriter etc.?"}
{"query_id": 12865, "query": "List of Figures - how to add caption label"}
{"query_id": 170252, "query": "Sub and super script in a diffent font"}
{"query_id": 87121, "query": "How do I best combine several documents?"}
{"query_id": 88451, "query": "Is it possible to write algorithms in LaTeX?"}
{"query_id": 110942, "query": "libertineGlyph and pdflatex"}
{"query_id": 102086, "query": "Latex: Equal spacing between equations on a page"}
{"query_id": 129563, "query": "I cannot put latex code with pgfplotstable package"}
{"query_id": 73789, "query": "How to remove the dots in the tableof contents"}
{"query_id": 7201, "query": "How to write the \\columnwidth to an external file"}
{"query_id": 9866, "query": "Latest advice on the euro symbol"}
{"query_id": 191945, "query": "Want to add the Skype and LinkedIn Icon on the left side of Friggeri Resume?"}
{"query_id": 165657, "query": "Creating a special table with different row lengths in latex"}
{"query_id": 200623, "query": "Latex code for patch simulation"}
{"query_id": 58152, "query": "How to emulate the traditional BibTeX styles (plain, abbrv, unsrt, alpha) as closely as possible with biblatex?"}
{"query_id": 40866, "query": "Pgfplots: How to get the data to be shown by hours instead of days?"}
{"query_id": 22191, "query": "Forcing a figure strictly on a separate page"}
{"query_id": 24371, "query": "Does enumitem conflict with beamer for lists?"}
{"query_id": 139370, "query": "Having difficulties installing latest version of Texmaker"}
{"query_id": 18939, "query": "Which LaTeX to install on Linux?"}
{"query_id": 60477, "query": "Remove space after figure and before text"}
{"query_id": 85776, "query": "Change figure numbering for appendix"}
{"query_id": 18936, "query": "configure latexmk in Texworks 0.2.3"}
{"query_id": 11069, "query": "Can I insert an image into an equation?"}
{"query_id": 196395, "query": "table with two multicolumns"}
{"query_id": 47495, "query": "cleveref + listings"}
{"query_id": 139375, "query": "References not updating from BibTex"}
{"query_id": 46161, "query": "Randomizing font selection in XeLaTeX, per character"}
{"query_id": 174121, "query": "Easy command or package for properly formatted integrals?"}
{"query_id": 106452, "query": "Is it possible to use tabularx inside a longtable environment?"}
{"query_id": 106457, "query": "How to redefine an environment to produce no output?"}
{"query_id": 40850, "query": "latexmk: Multiple custom-generated files and \\input"}
{"query_id": 107785, "query": "MiKTeX, TeXnicCenter: can't show PDF file"}
{"query_id": 108631, "query": "Mailmerge alternatives for exam variations?"}
{"query_id": 134928, "query": "IEEEtran 4 authors and 2 affiliations"}
{"query_id": 153669, "query": "can't renew math command '\\exp', why?"}
{"query_id": 118416, "query": "TikZ node causing problems inside a \\caption"}
{"query_id": 63516, "query": "Cite multiple authors with page references"}
{"query_id": 27417, "query": "Including a relative path to a class file"}
{"query_id": 140360, "query": "Inline Bibliography"}
{"query_id": 60007, "query": "Problem with TexLive installation on Fedora 17 to 20"}
{"query_id": 83108, "query": "Month Name in Upper case"}
{"query_id": 179806, "query": "why can't I get the A3 page where I want it (inside an A4 document)"}
{"query_id": 35027, "query": "How to exclude certain slides from handout"}
{"query_id": 27411, "query": "Small Caps and Bold Face"}
{"query_id": 34177, "query": "Get high resolution for bitmap fonts under pdflatex?"}
{"query_id": 171086, "query": "Connecting two elements in the equation"}
{"query_id": 15435, "query": "How do I use pgfmathdeclarefunction to create define a new pgf function?"}
{"query_id": 175443, "query": "How to use a custom, scalable, symbol in LaTeX"}
{"query_id": 31901, "query": "How to set security options to create PDF using pdflatex"}
{"query_id": 87940, "query": "Weird warning using pdfx"}
{"query_id": 16765, "query": "Biblatex, author-year, square brackets"}
{"query_id": 171084, "query": "Why does \\usepackage[british]{babel} change the hyphenation to wrong?"}
{"query_id": 7208, "query": "How to vertically-center the text of the cells?"}
{"query_id": 83101, "query": "Option clash for package xcolor"}
{"query_id": 17618, "query": "Formatting complex table from CSV using datatool"}
{"query_id": 17611, "query": "How does one type Chinese in LaTeX?"}
{"query_id": 120734, "query": "How can I make tabular span across pages"}
{"query_id": 1901, "query": "How can I draw arrows between words in linguistic examples?"}
{"query_id": 198103, "query": "file not found error while viewing pdftext"}
{"query_id": 51538, "query": "enumeration of sections in a chapter"}
{"query_id": 125182, "query": "How to change the font size only in one column of a table/tabular?"}
{"query_id": 39852, "query": "Set horizontal width of matrix in amsmath"}
{"query_id": 132752, "query": "Can we draw a distribution via LaTeX code inside a table?"}
{"query_id": 156723, "query": "Glossary with no title"}
{"query_id": 119737, "query": "Special Characters and autonum"}
{"query_id": 97773, "query": "How can I make a command/environment for a titled paragraph but with the text indented to the title (picture inside)?"}
{"query_id": 126036, "query": "XeTeX giving option clash error"}
{"query_id": 24357, "query": "How do I set document options at compile time?"}
{"query_id": 140380, "query": "pdfpages breaks display of small caps"}
{"query_id": 75990, "query": "How do I compress PDFs generated by pdflatex?"}
{"query_id": 60016, "query": "AUCTeX, preview-latex and Xelatex"}
{"query_id": 258, "query": "What is the difference between \\let and \\def?"}
{"query_id": 152359, "query": "LaTeX error in the LaTeX compilation while making pdf"}
{"query_id": 52870, "query": "How to push image at the bottom of the present slide?"}
{"query_id": 34166, "query": "Understanding minipages - aligning at top"}
{"query_id": 35497, "query": "How can I position equation numbers always to the left side?"}
{"query_id": 128205, "query": "How to randomly display a word from a list of words (a random student's name of my class)?"}
{"query_id": 13224, "query": "How to use a link as footnote that has special characters inside?"}
{"query_id": 52876, "query": "Tocloft: Make a 'pagebreak' (vertical skip between chapters)"}
{"query_id": 8549, "query": "How can I draw a horizontal line spanning only some of the table cells?"}
{"query_id": 107747, "query": "BibTeX language documentation"}
{"query_id": 150179, "query": "can I make apacite citation always use et al. for more than two authors?"}
{"query_id": 175476, "query": "Package tikz Error when writing some text in verbatim"}
{"query_id": 194194, "query": "Why this error? Missing $ inserted"}
{"query_id": 1915, "query": "Tikz: Strange color change."}
{"query_id": 120722, "query": "How to modify a bibliography style to surround titles in quotes in a bibliography?"}
{"query_id": 82280, "query": "Error in installing packages"}
{"query_id": 139398, "query": "Retrieve current subsection and subsubsection name without label"}
{"query_id": 5053, "query": "Is it possible to get unsrt + abbrv bibliography?"}
{"query_id": 105582, "query": "\\includepdf in A3 format"}
{"query_id": 153200, "query": "Coloring a Multicolmn"}
{"query_id": 154531, "query": "Add keys to table (with picture and code)"}
{"query_id": 9893, "query": "How to Rotate Text in Table across column spanning many rows"}
{"query_id": 102077, "query": "How to center align the whole table?"}
{"query_id": 9897, "query": "Showcase of brace tricks: }, \\egroup, \\iffalse{\\fi}, etc."}
{"query_id": 131439, "query": "The perl interpreter could not be found"}
{"query_id": 75511, "query": "How to repeat the page-contents on the same page"}
{"query_id": 154537, "query": "xeCJK messes up typographical quot and --"}
{"query_id": 131437, "query": "Recreate plot when data file changes"}
{"query_id": 59036, "query": "Using tikzlibrary spy without magnifying line width and/or mark size"}
{"query_id": 162157, "query": "Create a Tables of signs and variations of function using tkz-tab package"}
{"query_id": 34151, "query": "Example of mailmerge package with an Excel spreadsheet"}
{"query_id": 110911, "query": "Cutting the size between caption and image"}
{"query_id": 26549, "query": "How do I globally set the text color in XeLaTeX"}
{"query_id": 119730, "query": "Global scope or permanent length or savebox"}
{"query_id": 144741, "query": "The \\show command displays not all command"}
{"query_id": 24362, "query": "Page numbers vertically centered in the outer page margin"}
{"query_id": 60027, "query": "How do I typeset chemical formulae in the achemso package or related packages?"}
{"query_id": 82279, "query": "Cut one side of a rectangle node in TikZ"}
{"query_id": 176797, "query": "How to break table horizontally"}
{"query_id": 51555, "query": "Changing arrowheads size in pgfplots axes"}
{"query_id": 8558, "query": "Suppressing hyphenation across pages"}
{"query_id": 39844, "query": "How can I draw a dot under a symbol in math mode?"}
{"query_id": 85783, "query": "Changing the number of figure or equation automatically in text by changing the places of figures and equations"}
{"query_id": 180805, "query": "raggedright table paragraph with array package gives me error message, what am I doing wrong?"}
{"query_id": 53737, "query": "Numbering theorems within chapters"}
{"query_id": 110501, "query": "Auto Package download for TeXLive"}
{"query_id": 23009, "query": "Good free editors for non-European languages?"}
{"query_id": 137149, "query": "Multiple \\label commands before \\ref"}
{"query_id": 63540, "query": "How to draw a Catalan number diagram on TikZ"}
{"query_id": 153631, "query": "Latex : Three authors with two affiliations"}
{"query_id": 71167, "query": "How to use Xindy with MiKTeX?"}
{"query_id": 48785, "query": "Is there any LaTeX editor allowing you to tab through curly braces?"}
{"query_id": 200667, "query": "verbatim text in tables and macros"}
{"query_id": 59044, "query": "Moderncv package - cventry date width"}
{"query_id": 63545, "query": "Big tilde in math mode"}
{"query_id": 162587, "query": "How can I typeset the current subsection in the page header?"}
{"query_id": 272, "query": "How to make clickable links and cross-references in pdfs produced by LaTeX?"}
{"query_id": 106480, "query": "How to use \\section*{something} without removing it from the Table of Contents?"}
{"query_id": 40822, "query": "Add dynamic geographic maps"}
{"query_id": 171058, "query": "How to reference an Annex"}
{"query_id": 197206, "query": "how to download and install hobby package for this latex scheme"}
{"query_id": 279, "query": "How do I ensure that figures appear in the section they're associated with?"}
{"query_id": 86666, "query": "How to create both list of abbreviations and list of nomenclature using nomencl package?"}
{"query_id": 16712, "query": "Quartertone symbols"}
{"query_id": 47452, "query": "Writing { and } to a file with LaTeX"}
{"query_id": 84485, "query": "LaTeX capacity exceeded"}
{"query_id": 11025, "query": "LaTeX for Graph Theory?"}
{"query_id": 142977, "query": "How to get rid of \"chapter\"?"}
{"query_id": 150592, "query": "How to centralize specific objects in a table"}
{"query_id": 121635, "query": "Is it possible to tell pdflatex to terminate after the first error?"}
{"query_id": 77717, "query": "Editor for ConTeXt"}
{"query_id": 173230, "query": "How can I make beamer and tikz work in my PC?"}
{"query_id": 110972, "query": "eurosym seems to not be working"}
{"query_id": 5076, "query": "Is it possible to keep my translation together with original text?"}
{"query_id": 45266, "query": "tkz-graph: changing individual vertex type"}
{"query_id": 12363, "query": "Local texmf tree vs. `TEXINPUTS`"}
{"query_id": 162577, "query": "Turn off autorotate in ps2pdf"}
{"query_id": 166933, "query": "How to change the number of a subsection used in a cross-reference?"}
{"query_id": 65731, "query": "What is the thickness of \\hrulefill"}
{"query_id": 64403, "query": "How to make appendices behave like sections in ToC"}
{"query_id": 132703, "query": "Having y-axis in log scale base 2 using pgfplots"}
{"query_id": 35462, "query": "How can I make the content list of a PDF expanded by default?"}
{"query_id": 161245, "query": "Tikz arrow originating from a node going east"}
{"query_id": 23499, "query": "Incorrect bookmarks and page number in table of contents"}
{"query_id": 67917, "query": "Template Specification"}
{"query_id": 128262, "query": "Why importing pgfplots changes behavior of \\vfill?"}
{"query_id": 118466, "query": "How to change font for a TextField with pdfLaTeX?"}
{"query_id": 23495, "query": "Change size of one page to A3 in a document with papersize of A4"}
{"query_id": 52426, "query": "Add keyword to a lstlisting language"}
{"query_id": 194186, "query": "Latex table alignment"}
{"query_id": 43085, "query": "BibTeX: where to write Sir in author's name?"}
{"query_id": 45264, "query": "duotone PDF files with lualatex"}
{"query_id": 10188, "query": "Table of Contents with additional description of entries"}
{"query_id": 15873, "query": "Two column align environment with one line spanning both columns"}
{"query_id": 85321, "query": "Two column text question and choices"}
{"query_id": 171046, "query": "What are the differences between mdframed vs. tcolorbox"}
{"query_id": 198543, "query": "Trying to create Index, idx file created, ind file not created"}
{"query_id": 139341, "query": "Hyperref package. Is there any way to include multiple url addresses in one word (or in any given set of words)?"}
{"query_id": 153653, "query": "Error message when compiling ConTeXt document from Emacs"}
{"query_id": 71189, "query": "Using [pdf]{pstricks} with beamer doesn't work, but auto-pst-pdf does, why?"}
{"query_id": 153656, "query": "Macro for reference to a figure with a page number"}
{"query_id": 184351, "query": "How to color a single cell in a longtable"}
{"query_id": 26972, "query": "What GUI applications are there to assist in generating graphics for TeX?"}
{"query_id": 65747, "query": "Citation style in biblatex: (1) get rid of first names; (2) remove comma before year"}
{"query_id": 187861, "query": "Positioning of decorations on parallel lines"}
{"query_id": 27824, "query": "Using package nomencl"}
{"query_id": 107308, "query": "TeXShop: (R) gets converted into circled R"}
{"query_id": 176764, "query": "Grouped overlay bar chart in LaTeX?"}
{"query_id": 122948, "query": "Is there any reason to used pdflatex instead of lualatex?"}
{"query_id": 38965, "query": "Problem with using quotations in German document"}
{"query_id": 50258, "query": "margins of book class"}
{"query_id": 10159, "query": "Grouping the list of listings by chapter"}
{"query_id": 43069, "query": "How to replace a large block of text by an empty block of the same size?"}
{"query_id": 126061, "query": "Bibliography with BibLaTeX: Do not abbreviate first given (first) name and abbreviate all further given names"}
{"query_id": 67932, "query": "Is there a symbol for a circled intersection? Like \\oplus for the plus sign"}
{"query_id": 7278, "query": "Reasons to use plain TeX"}
{"query_id": 43068, "query": "How to create a table that spans over multiple pages, breaking single rows"}
{"query_id": 111806, "query": "Small descriptions next to matrix"}
{"query_id": 31085, "query": "Is there a standard way to title a list of bullets?"}
{"query_id": 119769, "query": "Change text color in table, preserve ability"}
{"query_id": 23477, "query": "Fancy chapter headings"}
{"query_id": 98654, "query": "How can I get a PDF with copyable text if I need to use \\usepackage[T1]{fontenc}?"}
{"query_id": 137181, "query": "Using \\section*{} messes up equation numbering?"}
{"query_id": 198525, "query": "How to Split Document in TexMaker"}
{"query_id": 137182, "query": "Can I produce natbib-formated text from BibTeX file without a corresponding bibliography entry?"}
{"query_id": 88857, "query": "custom automatic equation numbering"}
{"query_id": 118445, "query": "How to incorporate counter in list label"}
{"query_id": 53773, "query": "Left align (to the page) displayed math"}
{"query_id": 87525, "query": "Change starting page number"}
{"query_id": 121607, "query": "Enumeration indentation"}
{"query_id": 122938, "query": "List all sections in TOC in one line wrapped"}
{"query_id": 16701, "query": "Paragraph spacer: blank line and no indent, instead of indent"}
{"query_id": 55957, "query": "How do you write \"times\"?"}
{"query_id": 141677, "query": "Segmentation fault after Mavericks upgrade"}
{"query_id": 167804, "query": "Bar graph with groups(inner group bars next to each other) and whitespace between groups including error bars"}
{"query_id": 45242, "query": "Animations with movie15 and swf files"}
{"query_id": 87520, "query": "How to install TeX on android phones?"}
{"query_id": 56802, "query": "Hyperlinking a drawing"}
{"query_id": 12346, "query": "Use a quality glossary and acronym list in Lyx"}
{"query_id": 13677, "query": "Splitting very big numbers over several lines"}
{"query_id": 156784, "query": "Image appears before paragraph"}
{"query_id": 179420, "query": "Compiling LaTeX document empties .bbl file"}
{"query_id": 178573, "query": "Curly brackets with long content cross the margin"}
{"query_id": 71526, "query": "Repeat the same reference in footnote on different pages"}
{"query_id": 129168, "query": "Placing listing and figure side by side in memoir"}
{"query_id": 72852, "query": "How to add more information to the front page using document class report?"}
{"query_id": 130159, "query": "Splitting list of figures"}
{"query_id": 72853, "query": "How to get the code on a single page"}
{"query_id": 94645, "query": "Force Biblatex to Print Author in Citation"}
{"query_id": 163077, "query": "Convert sequence to table"}
{"query_id": 54195, "query": "Clash between tikz externalization and references to plots"}
{"query_id": 166585, "query": "Tabs vs spaces in listings: what's the difference and should I care?"}
{"query_id": 188377, "query": "Avoid latex rotating pages orientation"}
{"query_id": 192872, "query": "Headers with subscripts"}
{"query_id": 80007, "query": "Bookmark - hyperref are a couple of pages off"}
{"query_id": 179899, "query": "How can I highlight a keyword that contains a dash or a slash?"}
{"query_id": 176385, "query": "automatic new page when using \\tableofcontents etc"}
{"query_id": 178566, "query": "How to add full width header?"}
{"query_id": 1979, "query": "Good keyboard layouts for typing (La)TeX"}
{"query_id": 51922, "query": "How do I space out the lines in my gather block?"}
{"query_id": 131012, "query": "Notes on Sentences"}
{"query_id": 17213, "query": "Layouting the index-page"}
{"query_id": 107385, "query": "draw the connect line using tikz"}
{"query_id": 112710, "query": "How to set foreground (text) color in xcolor table?"}
{"query_id": 180425, "query": "authblk deleting authors' names"}
{"query_id": 171925, "query": "Change margins locally (for text)"}
{"query_id": 55054, "query": "\\bordermatrix with brackets [ ] instead of parentheses ( )"}
{"query_id": 2832, "query": "How can I have two tables side by side?"}
{"query_id": 60884, "query": "Text wrapping in multirow columns"}
{"query_id": 21709, "query": "Comments in BibTex"}
{"query_id": 31980, "query": "Masking \\end{lstlisting}"}
{"query_id": 100740, "query": "A package (installed according to TeX Live Utility) doesn't run"}
{"query_id": 133681, "query": "How do I add something to the preamble in LyX?"}
{"query_id": 179888, "query": "Biblatex formatting issues"}
{"query_id": 38139, "query": "How can I calculate the difference of 2 counters (pageref)?"}
{"query_id": 82650, "query": "Why is there no space after my new command?"}
{"query_id": 94627, "query": "Figures disappear in pdflatex!"}
{"query_id": 151098, "query": "\\newcommand vs. \\def (LaTeX/XeLaTeX/LuaLaTeX)"}
{"query_id": 111854, "query": "Section numbers have a zero in front with report document class"}
{"query_id": 153298, "query": "I think I found a bug at `polynom.sty` or my calculation is wrong"}
{"query_id": 35090, "query": "Strange behavior of XITS Math in XeLaTeX for \\underset and \\underaccent commands"}
{"query_id": 9485, "query": "How to fix table position"}
{"query_id": 15487, "query": "Why are my images blurry in pdflatex?"}
{"query_id": 199010, "query": "Looking for explanation of pstricks measurement units"}
{"query_id": 108201, "query": "Sync missing citation/ list missing citations in script"}
{"query_id": 118008, "query": "How to use en-dash with Cambria fonts?"}
{"query_id": 142160, "query": "Restore standard horizontal spacing for colored symbols in mathmode"}
{"query_id": 136719, "query": "~\\ref{fig:fun} wrong"}
{"query_id": 111856, "query": "How to change the color of symbols (mobile, email, homepage, etc) in moderncv?"}
{"query_id": 166132, "query": "Using array columns as arguments of a macro"}
{"query_id": 29640, "query": "How to modify spacing around quotation environment?"}
{"query_id": 120323, "query": "Is it possible to have pictures in .pdf and .eps in LaTeX?"}
{"query_id": 145662, "query": "Text in tabular dissappears if I set gray tabular background"}
{"query_id": 145668, "query": "Define styles to make series of similar pgfplots"}
{"query_id": 83531, "query": "Numbering equations with LyX"}
{"query_id": 121651, "query": "Continuing (and preserved) reference numbers with bibunits"}
{"query_id": 60893, "query": "New command with optional argument being first argument"}
{"query_id": 47079, "query": "Italic citation reference for author name using natbib"}
{"query_id": 66191, "query": "Extract x and y coordinates when using intersectionlibary"}
{"query_id": 175076, "query": "longtabu newenvironment caption error"}
{"query_id": 19844, "query": "How to set superscript footnote mark in the text body but normalsized in the foot?"}
{"query_id": 15009, "query": "Macros for common abbreviations"}
{"query_id": 199006, "query": "TeXshop Won't Compile My Indices"}
{"query_id": 14162, "query": "How do I get a list of all available fonts for luaotfload?"}
{"query_id": 35081, "query": "Is there an \"underscript\" command?"}
{"query_id": 69237, "query": "LaTeX detect image not found and replace with text"}
{"query_id": 91145, "query": "Shaded Multicols"}
{"query_id": 72888, "query": "Resizing the image in Uzk-theme"}
{"query_id": 38596, "query": "How can I draw a DAG?"}
{"query_id": 70224, "query": "Cleanest way to make itemize ragged right?"}
{"query_id": 120798, "query": "Put figure text under images?"}
{"query_id": 148705, "query": "How to do multiple auto-citation?"}
{"query_id": 3708, "query": "Hyperref \"enquotes\" metadata"}
{"query_id": 82670, "query": "Multiply cited reference in footnotes"}
{"query_id": 146529, "query": "Design a custom Beamer theme from scratch"}
{"query_id": 191530, "query": "How to prevent enumerate to indent a long text?"}
{"query_id": 94688, "query": "Page numbering in the middle of a line"}
{"query_id": 112766, "query": "pdfTex, hyperref: jumps beetwen two pdf files"}
{"query_id": 154564, "query": "How to include file with extension SVG in LaTeX(Tex.tex)?"}
{"query_id": 180850, "query": "Not wanted space before marginpar"}
{"query_id": 134950, "query": "How to hyperlink to figure instead of head of section"}
{"query_id": 73741, "query": "Enumerate alignment problem in theorem environment"}
{"query_id": 25268, "query": "How to move the whole block of {align*} to the left?"}
{"query_id": 57263, "query": "Add a quote to a blank page centered"}
{"query_id": 79051, "query": "How to style text in hyperref \\url?"}
{"query_id": 62613, "query": "Comma-separated list environment"}
{"query_id": 8174, "query": "How to achieve a multi-column layout for footnotes?"}
{"query_id": 187486, "query": "Why lua and not python?"}
{"query_id": 79058, "query": "Can a default path be set globally for \\input{...} akin to \\graphicspath{...}?"}
{"query_id": 101627, "query": "Block environment with empty title in Beamer: how to reduce empty space at the top"}
{"query_id": 79057, "query": "Counter too large if number of alphabet chapters is more that 26"}
{"query_id": 142573, "query": "Installation of TeXnicCenter dictionary"}
{"query_id": 187010, "query": "mktextfm error with mathpazo"}
{"query_id": 146933, "query": "Customized list cross reference error"}
{"query_id": 192832, "query": "Landscape and header formatting"}
{"query_id": 23086, "query": "How to suppress certain .bib fields (e.g. year) only for certain entry types (e.g. inproceedings)"}
{"query_id": 59444, "query": "Draw Tree using tikz"}
{"query_id": 84403, "query": "Bold text with dcolumn"}
{"query_id": 124741, "query": "\\emph not working with TrueType font on XeLaTeX"}
{"query_id": 100773, "query": "Increase the X length of a tikzpicture"}
{"query_id": 14135, "query": "How to automatically add text immediately after \\begin{document}"}
{"query_id": 38106, "query": "Include hspace in header/footer in fancyhdr?"}
{"query_id": 150196, "query": "\\printglossary does not produce any content"}
{"query_id": 175011, "query": "How can I put pagenumber into longtable header?"}
{"query_id": 176344, "query": "numbers of pages don't appear on pdf printed"}
{"query_id": 130120, "query": "What is space in a math environment?"}
{"query_id": 111422, "query": "How do I add a marker to TikZ plot for specific x coordinate?"}
{"query_id": 154557, "query": "Use Case diagrams , UML diagrams and E-R diagrams in LaTeX"}
{"query_id": 95524, "query": "Alignment Issues in Equations"}
{"query_id": 63956, "query": "Is it at all possible to design a macro that expands to a length?"}
{"query_id": 91163, "query": "Fetch single data point from table within tikz"}
{"query_id": 13290, "query": "How to define macros with numbers in them?"}
{"query_id": 133638, "query": "How to draw a picture by using tikz as backgroud of a character?"}
{"query_id": 20821, "query": "Removing the borders from algorithm listings"}
{"query_id": 9031, "query": "aligning split equation"}
{"query_id": 87905, "query": "Change font size inside the document"}
{"query_id": 28782, "query": "Left outer join symbol (\u27d5)"}
{"query_id": 121220, "query": "Itemize in tabular"}
{"query_id": 27453, "query": "LuaTeX-Looking for some relevant and simple examples"}
{"query_id": 14148, "query": "Package pgf Warning: Your graphic driver pgfsys-xetex.def does not support patterns."}
{"query_id": 30615, "query": "In listings, how to show referenced linenumbers instead of standard ascending linenumbers"}
{"query_id": 175000, "query": "Extra space between gloss and translations"}
{"query_id": 51978, "query": "TikZ in (sub)section title"}
{"query_id": 102964, "query": "Place node at right of and above of centered"}
{"query_id": 124737, "query": "How to make citations appear within parentheses () instead of square brackets [ ]?"}
{"query_id": 5903, "query": "Typesetting LaTeX Source Code with the listings package"}
{"query_id": 14591, "query": "How to link an equation in LaTeX"}
{"query_id": 106067, "query": "How to put a legend for \\cellcolor{blue!25} in my table caption?"}
{"query_id": 74616, "query": "How I can typeset this equation with LaTeX?"}
{"query_id": 131462, "query": "A nice font style"}
{"query_id": 94224, "query": "How to create a list with a fixed prefix and incremental numbers"}
{"query_id": 37230, "query": "Finding Information about Class Level Commands"}
{"query_id": 14595, "query": "Create empty box sized according to imaginary content"}
{"query_id": 110564, "query": "How to stop Latex from inserting $ in my URLs?"}
{"query_id": 132314, "query": "How do you make the \\in symbol smaller?"}
{"query_id": 96886, "query": "Is there any package that supports multiple last pages"}
{"query_id": 95557, "query": "How to remove the chapter prefix only from a Preface chapter in scrbook?"}
{"query_id": 23067, "query": "How does PDF or PDF Viewer define a rounding rule for stroke thickness?"}
{"query_id": 109572, "query": "Changing fill option in \\addplot has no effect"}
{"query_id": 97731, "query": "Modify Beamer's outer theme smoothbars"}
{"query_id": 35052, "query": "Placing Intermediate and Output Files in Another Folder"}
{"query_id": 135825, "query": "Add multiple figures from a single pdf page to a List of Figures"}
{"query_id": 114923, "query": "How to pagebreak within listings?"}
{"query_id": 121697, "query": "Beamer: description item with tiny font"}
{"query_id": 24393, "query": "What does \\begingroup\\expandafter\u2026\\endgroup do?"}
{"query_id": 141264, "query": "Drawing parse trees"}
{"query_id": 167412, "query": "TEXMAKER when compiling gives me error misplaced alignment"}
{"query_id": 23063, "query": "Extended draft mode which includes source information for manual print-out to source synchronisation"}
{"query_id": 146954, "query": "makeindex - print links sorted by page"}
{"query_id": 168746, "query": "Command with two arguments in tabular : misplaced \\omit"}
{"query_id": 26575, "query": "BibTeX: How can I automatically reduce long author lists to \"xxx et al.\"?"}
{"query_id": 67083, "query": "edit x-y data from different files/tables"}
{"query_id": 67084, "query": "Wrong linespace with tabu"}
{"query_id": 174187, "query": "Table doesn't fit in a frame when using Beamer"}
{"query_id": 1559, "query": "Adding a large brace next to a body of text"}
{"query_id": 39419, "query": "How to draw a curve in tikz?"}
{"query_id": 153241, "query": "Adding command to LaTeX file using texify"}
{"query_id": 155421, "query": "making subsubsections visible in the TOC"}
{"query_id": 74623, "query": "Big integral in lmodern"}
{"query_id": 40876, "query": "How to get rid of the \"In:\" prefix in some bibliography entries using BibLaTeX?"}
{"query_id": 64820, "query": "Formula font and line space reduced in array, how to solve this problem?"}
{"query_id": 41720, "query": "Manual highlight of TeX code in a verbatim environment"}
{"query_id": 61798, "query": "How to insert algorithm inside multicols environment"}
{"query_id": 79067, "query": "xeCJK and Chinese Characters"}
{"query_id": 114913, "query": "How to include R output in LaTex?"}
{"query_id": 29616, "query": "What is the preferable setup for MiKTeX to keep all packages up-to-date easily?"}
{"query_id": 2416, "query": "Reference guide to begin writing a class and/or a package"}
{"query_id": 163050, "query": "How can I extend quote's width in moderncv?"}
{"query_id": 118048, "query": "Calculating coordinates with postscript"}
{"query_id": 17638, "query": "PGFplots foreach equivalent to TikZ's with multiple variables separated by a slash"}
{"query_id": 117193, "query": "How to put as a title of a chapter, the name of the chapter instead of \"Chapter\"?"}
{"query_id": 136657, "query": "Author Full Name in Citation Natbib APA"}
{"query_id": 66333, "query": "Is there an end equivalent to AtBeginPart in beamer?"}
{"query_id": 19105, "query": "How can I put more space between bibliography entries (biblatex)"}
{"query_id": 43215, "query": "Best way to include some Japanese text in a beamer presentation?"}
{"query_id": 67665, "query": "Switching between fancy and plain page style"}
{"query_id": 66335, "query": "Page numbering at top of page"}
{"query_id": 114865, "query": "Latex packages / templates for maths exercises"}
{"query_id": 22751, "query": "How to force table caption on top?"}
{"query_id": 68516, "query": "avoid that figure gets its own page"}
{"query_id": 122491, "query": "Difference of the \\dots*"}
{"query_id": 146461, "query": "minitoc not appear?"}
{"query_id": 97078, "query": "Weird whole page indented and my goto preamble"}
{"query_id": 174925, "query": "Why the language selection of babel affects the page number format?"}
{"query_id": 33896, "query": "Insert eps graphics with graphicx (file not found)"}
{"query_id": 121155, "query": "How to adjust a table to fit on page"}
{"query_id": 122486, "query": "how to insert a fixed number of figures per row/column?"}
{"query_id": 28059, "query": "Is it possible to add a shortcut that activates a script in Kile editor?"}
{"query_id": 2422, "query": "Using LaTeX to draw time series graphs and histograms"}
{"query_id": 1574, "query": "Embedding videos and animations"}
{"query_id": 125994, "query": "Fatal error occurred, no output PDF file produced"}
{"query_id": 134483, "query": "Persistence Bookmark In Texmaker"}
{"query_id": 58719, "query": "How can legend entries be obtained from different plots in a groupplot?"}
{"query_id": 53029, "query": "position of axis multiplier and one other"}
{"query_id": 112690, "query": "How to compile with Sublime"}
{"query_id": 12951, "query": "Incorrect plot using Pgfplots"}
{"query_id": 159783, "query": "Converting a {classicthesis} book into a .doc file"}
{"query_id": 3757, "query": "What is a good way to show changes between two versions"}
{"query_id": 5935, "query": "How to suppress BOM effect in the output?"}
{"query_id": 87274, "query": "Most reliable LaTeX distributions"}
{"query_id": 159782, "query": "How can I label two equations within the same align environment?"}
{"query_id": 181234, "query": "Language problems when building bibliography"}
{"query_id": 160755, "query": "Preview of \"hyperlinks\" in PDF"}
{"query_id": 46711, "query": "Reusing slides from Beamer presentations"}
{"query_id": 66342, "query": "Page numbering in header/footer (fancyhdr)"}
{"query_id": 110498, "query": "Numbering of an Introduction in the ToC"}
{"query_id": 40177, "query": "Wrapping a long \\numprint number"}
{"query_id": 171407, "query": "Line break in table"}
{"query_id": 20109, "query": "Header, footer and font customization"}
{"query_id": 57870, "query": "Indent command doesn't work on first paragraph"}
{"query_id": 174917, "query": "pagestyle{fancy} will cause second page to have different alignment"}
{"query_id": 108193, "query": "Not equal sign (\u2260) with a vertical bar"}
{"query_id": 182560, "query": "How to correctly label an included PDF?"}
{"query_id": 98397, "query": "Enumerate formulas"}
{"query_id": 57876, "query": "Add bullet points to description lists"}
{"query_id": 34732, "query": "LaTeX is putting a border around my figures"}
{"query_id": 123323, "query": "Change spacing around binary operators"}
{"query_id": 36918, "query": "How can one cite theorems of references?"}
{"query_id": 36919, "query": "TeXnicCenter on Windows: Building Problems"}
{"query_id": 55698, "query": "Text under a line"}
{"query_id": 81960, "query": "Finding package documentation"}
{"query_id": 101554, "query": "Filling between an ellipse and a line"}
{"query_id": 154082, "query": "Add coloring rules for specified language keywords in lstinputlisting"}
{"query_id": 154083, "query": "What size should MacTex be? I'm trying to download it and it's huge!"}
{"query_id": 123329, "query": "Using Inkscape \"pdf+latex\" pictures: \"pdfTex warning: PDF inclusion: multiple pdfs with page group included in a single page\""}
{"query_id": 34735, "query": "Using circled numbers for answer choices in exam document class"}
{"query_id": 89441, "query": "Is there an easy way to comment out a whole block?"}
{"query_id": 180354, "query": "Run biber in TexMaker, Ubuntu"}
{"query_id": 46701, "query": "How to color just the `\\vec` symbol?"}
{"query_id": 91310, "query": "TikZ: difference between \\node and \\coordinate?"}
{"query_id": 109018, "query": "Multiple uses of multirow in LaTeX"}
{"query_id": 70854, "query": "How can I save shell output to a variable in LaTeX?"}
{"query_id": 21882, "query": "Linebreak in equations"}
{"query_id": 17380, "query": "Best figure size adjustment when dealing with different image sizes"}
{"query_id": 120294, "query": "How can I use a curly brace together with subequations?"}
{"query_id": 149995, "query": "Reduce font size to fit container"}
{"query_id": 44528, "query": "How to make the correct hash-symbol in C Sharp (C#)"}
{"query_id": 29365, "query": "statweave problem"}
{"query_id": 123796, "query": "Is there a way to use a previous TikZ picture?"}
{"query_id": 31692, "query": "Overriding keys for references"}
{"query_id": 101523, "query": "Page number when using includepdf"}
{"query_id": 157144, "query": "How does 'right=of' and 'right of=' work, and what does 'node distance=' do?"}
{"query_id": 3777, "query": "How to find a package name by a command name?"}
{"query_id": 163817, "query": "LateX - Font issue with OT1pcr.fd file"}
{"query_id": 19577, "query": "How do I create a new command \\listofcodes in latex?"}
{"query_id": 89462, "query": "Page-wide table in two-column mode"}
{"query_id": 159788, "query": "Even-spaced (two) columns in reference page using bibtex - automatically"}
{"query_id": 100690, "query": "how can we write in Greek with computer modern font"}
{"query_id": 160774, "query": "Place figure just as you would a glyph/character"}
{"query_id": 17394, "query": "Using relative coordinates in TikZ to draw joined curves"}
{"query_id": 44519, "query": "How to use tabular/array to arrange figures"}
{"query_id": 82829, "query": "Table of contents is only print once"}
{"query_id": 40159, "query": "How to draw a Sankey Diagram using TikZ"}
{"query_id": 122461, "query": "Subsubsection: remove the newline (like paragraph)"}
{"query_id": 21418, "query": "Inserting a .EMF file into a LaTeX document."}
{"query_id": 22742, "query": "How do I override the \\item spacing"}
{"query_id": 45848, "query": "Rotate node text and use relative positioning in TikZ?"}
{"query_id": 11613, "query": "Launching an external PDF viewer from Emacs/AUCTeX on a Mac OSX fails."}
{"query_id": 150506, "query": "How to change horizontal alignment of \\frac?"}
{"query_id": 3306, "query": "Is there any way to generate custom errors/warnings in LaTeX?"}
{"query_id": 6817, "query": "Insert graphic at precise place on a page"}
{"query_id": 173602, "query": "PGFplots 3d: Creating a filled solid of revolution"}
{"query_id": 134031, "query": "How to adjust the size and placement of chapter heading in report class"}
{"query_id": 102863, "query": "back references within \"thebibliography\""}
{"query_id": 10760, "query": "How do I force a column-break in a two-column document?"}
{"query_id": 67690, "query": "Textwidth wrong after wrapfigure"}
{"query_id": 34713, "query": "Mirror effect in documents"}
{"query_id": 134435, "query": "Fancy Chapter Heading"}
{"query_id": 70875, "query": "How to render individual acronyms in lower case when used inline, but mixed case in the list of acronyms?"}
{"query_id": 40144, "query": "how to use \\input{file.tex} correctly?"}
{"query_id": 32522, "query": "How to decrease sep between longtable and text"}
{"query_id": 76188, "query": "reference citation too long"}
{"query_id": 53068, "query": "How to check if a macro value is empty or will not create text with plain TeX conditionals?"}
{"query_id": 179338, "query": "How to format elementary row operations?"}
{"query_id": 162909, "query": "single column footnote in two column layout"}
{"query_id": 132262, "query": "Programmatically converting an integer into bits with graphical output"}
{"query_id": 30349, "query": "Defining multiple shorthands quickly"}
{"query_id": 156212, "query": "How to create column - aligned entrys in a itemize enviromenment (in 2nd. level)"}
{"query_id": 117928, "query": "Why does LaTeX renewcommand not work inside tabular?"}
{"query_id": 20543, "query": "Excluding chapters from ToC in amsbook"}
{"query_id": 69412, "query": "Gnuplot with epslatex terminal"}
{"query_id": 68569, "query": "\\eqref to give reference to a sequence of subequations"}
{"query_id": 127730, "query": "Draw Polygonal Number Using PSTricks (or TikZ)"}
{"query_id": 194507, "query": "Includegraphics detects wrong fileformat"}
{"query_id": 20549, "query": "A cookbook in LaTeX?"}
{"query_id": 29359, "query": "Pgfplots: how to fill the area under a curve with oblique lines (hatching) as a pattern?"}
{"query_id": 53073, "query": "Two-column text with circular insert"}
{"query_id": 44978, "query": "Changed style of caption numbering"}
{"query_id": 60603, "query": "Problem with the subscript of the summation sign written in the text"}
{"query_id": 82853, "query": "Graphic in header bloats PDF file size"}
{"query_id": 3327, "query": "Turn on subsection numbering in memoir"}
{"query_id": 124214, "query": "Highlight LaTeX code and presenting results as in a manual"}
{"query_id": 126877, "query": "How can I align a multiple-line footnote text right to the footnote mark?"}
{"query_id": 30330, "query": "How can I avoid compiling twice?"}
{"query_id": 723, "query": "How to typeset flowcharts in LaTeX?"}
{"query_id": 57439, "query": "A compact LaTeX template for sig conferences that does not produce a permission block"}
{"query_id": 27172, "query": "How can I detect if I'm inside or outside of a float environment?"}
{"query_id": 10743, "query": "Why does latex stretch small sections across the whole page vertically?"}
{"query_id": 180794, "query": "How to debug the \"Argument of \\XC@definec@lor has an extra }\" error in Foreach statement?"}
{"query_id": 50804, "query": "Explicit space character?"}
{"query_id": 68577, "query": "Compiling a document with PGFplots processing only every x-th data point?"}
{"query_id": 159755, "query": "Too much space below figures"}
{"query_id": 73922, "query": "Intersection of 2 surface plots in pgfplots"}
{"query_id": 6850, "query": "Table and figure side-by-side with independent captions"}
{"query_id": 88182, "query": "Beamer miniframes: side-by-side section names and navigation dots"}
{"query_id": 110045, "query": "Automatically include an SE flair in output document"}
{"query_id": 18673, "query": "German language: use of comma in numbers"}
{"query_id": 147771, "query": "Weird result plotting sin(x) using tikz/pgf"}
{"query_id": 1162, "query": "Included PNG appears blurry in PDF"}
{"query_id": 61937, "query": "Tikz changes included graphics"}
{"query_id": 27144, "query": "\\documentclass: undefined control sequence"}
{"query_id": 732, "query": "Whatever happened to \\newfontinstance?"}
{"query_id": 145105, "query": "Suggested image formats in LaTeX"}
{"query_id": 105921, "query": "Font size not working"}
{"query_id": 32508, "query": "Install a beta package from TLContrib on MacTeX 2011 TeX Live"}
{"query_id": 736, "query": "\\pagebreak vs \\newpage"}
{"query_id": 32507, "query": "Analog of \\pdfelapsedtime for LuaTeX and XeTeX"}
{"query_id": 17349, "query": "Is there a way to measure the remaining space of a line of text?"}
{"query_id": 30327, "query": "Why do arguments to nested \\tilde or \\breve commands reappear when amsmath is used?"}
{"query_id": 65063, "query": "Is it possible to define the word stretch?"}
{"query_id": 17354, "query": "Sort thebibliography by citation order"}
{"query_id": 18685, "query": "Techniques for embedding images with transparent backgrounds in LaTeX"}
{"query_id": 159749, "query": "Traditional Footnotes"}
{"query_id": 40112, "query": "Where can one find old versions of packages released through CTAN?"}
{"query_id": 4201, "query": "Is there a BNF grammar of the TeX language?"}
{"query_id": 57452, "query": "blank page without number page"}
{"query_id": 62800, "query": "lualatex and line breaks after em-dashes"}
{"query_id": 142087, "query": "Square root sign has dotted line (PGF/TikZ + XeLaTeX). Is this a bug? Is there a workaround?"}
{"query_id": 148626, "query": "Strange linebreaks with microtype & LuaLaTex"}
{"query_id": 188296, "query": "Making cover page of a report; I want to put title below image"}
{"query_id": 30312, "query": "Shrink figure only when necessary?"}
{"query_id": 122496, "query": "Links of book templates"}
{"query_id": 59631, "query": "Hide navigation information in sidebar on title page and TOC page (beamer)"}
{"query_id": 150940, "query": "Problem with list of figures"}
{"query_id": 1166, "query": "Which command should I use for displayed equations?"}
{"query_id": 50820, "query": "Expandable version of \\InputIfFileExists or \\IfFileExists"}
{"query_id": 70417, "query": "Do not enumerate a section, but add it into table of contents"}
{"query_id": 127709, "query": "Math-mode aware search/replace utility?"}
{"query_id": 159751, "query": "How to run MiKTex FNDB on Windows 8?"}
{"query_id": 179344, "query": "How to highlight few sentences in a paragraph?"}
{"query_id": 162549, "query": "Blocks in matrix"}
{"query_id": 65881, "query": "Extra unwanted text \"image.jpg\" precedes image when using \\includegraphics"}
{"query_id": 137589, "query": "MiKTeX Package Manager Crashes"}
{"query_id": 20177, "query": "Remove margins for title page"}
{"query_id": 4693, "query": "Is there a good document template for making business cards?"}
{"query_id": 49833, "query": "Align \\sqrt with baseline of other mathematical input"}
{"query_id": 12550, "query": "Changing default width of blocks in beamer"}
{"query_id": 130951, "query": "PDFLatex tables are covering up text"}
{"query_id": 98329, "query": "How to make the font larger for bibliography"}
{"query_id": 122097, "query": "Enumerated list of displayed integration questions"}
{"query_id": 32160, "query": "New line after paragraph?"}
{"query_id": 22355, "query": "Make an invisible vbox"}
{"query_id": 97477, "query": "What is a good package for taking note of draft ideas?"}
{"query_id": 96141, "query": "How can I make an overset symbol at the same size and height as \\bar except with a different symbol?"}
{"query_id": 19182, "query": "How to influence the name of the pdf file created with pdfLaTeX (from within the source code)?"}
{"query_id": 194138, "query": "Hide content of tabular environment"}
{"query_id": 117983, "query": "How can I control the horizontal space between minipages?"}
{"query_id": 88528, "query": "Defining a macro with if statements"}
{"query_id": 87677, "query": "Remove border on pgfplot"}
{"query_id": 174522, "query": "Using \\filename@parse gives error"}
{"query_id": 759, "query": "Average integral symbol"}
{"query_id": 16914, "query": "What's the fastest way to preview changes as I learn TeX?"}
{"query_id": 37855, "query": "fontspec with Helvetica breaks quotes"}
{"query_id": 89851, "query": "Problem with fancyhdr"}
{"query_id": 159386, "query": "How can I coerce TikZ trees to have directed edges?"}
{"query_id": 161202, "query": "verbatim environment does not work with beamer"}
{"query_id": 187856, "query": "Cyrillic calligraphic fonts (calligra)"}
{"query_id": 44132, "query": "Beamer, page/frame numbers, buttons and Appendix slides"}
{"query_id": 113125, "query": "How do I remove parentheses around a year in the references using biblatex?"}
{"query_id": 128621, "query": "Including graphics in modular documents"}
{"query_id": 99649, "query": "Command to insert filename in caption of a listing"}
{"query_id": 64567, "query": "How to draw circle, square, and triangle marks in TikZ picture?"}
{"query_id": 149587, "query": "How to fix showing table labels in TeXstudio when using ctable package?"}
{"query_id": 161685, "query": "How to fix issues after rotating a table with sidewaystable directly below the Chapter title?"}
{"query_id": 22365, "query": "Uneven subscripts."}
{"query_id": 98314, "query": "how to set the size of the star?"}
{"query_id": 127772, "query": "Redefining --- ligature"}
{"query_id": 146072, "query": "How do you format a Dates Contraction in LaTex?"}
{"query_id": 169176, "query": "Compile all tex files within a folder at once"}
{"query_id": 151419, "query": "Indentation lines in algorithm package"}
{"query_id": 37849, "query": "Customizing enumerations and itemizations"}
{"query_id": 16927, "query": "Cross-reference to an entry in the toc?"}
{"query_id": 115792, "query": "Latex subections inside figure - toc shows subsections"}
{"query_id": 171003, "query": "Bottom frame of listing appears on top of the next page"}
{"query_id": 33486, "query": "Aligning inside tabular environment, specific cell"}
{"query_id": 172335, "query": "how to insert comment in lstlisting"}
{"query_id": 85005, "query": "Strange behaviour of pin angles with PGFPlots"}
{"query_id": 124256, "query": "How do I get numbered entries in a beamer bibliography"}
{"query_id": 2036, "query": "Better error reporting in Latex?"}
{"query_id": 171007, "query": "Split a character string n by n"}
{"query_id": 173668, "query": "Reduce the number of lines of a paragraph"}
{"query_id": 45460, "query": "Kerning issue with Adobe Garamond Pro: XeTeX or font file to blame ?"}
{"query_id": 54769, "query": "How can I divide a legend to second part?"}
{"query_id": 12565, "query": "Load fonts that are in a ./fonts directory"}
{"query_id": 51257, "query": "How can I force bibliography items not to be split across pages?"}
{"query_id": 768, "query": "How do I convert Open Office documents into LaTeX?"}
{"query_id": 102006, "query": "Smartly omit chapter number in equation numbering"}
{"query_id": 134099, "query": "Write text inside some shape in tikz"}
{"query_id": 52588, "query": "Suppressing em-dashs for recurrent authors and letter suffixes for years when using biblatex-chicago"}
{"query_id": 13899, "query": "How to reference websites / programming languages ?"}
{"query_id": 171001, "query": "What does \\def\\foo#{...} mean?"}
{"query_id": 171483, "query": "Mathematical formulas on a graph (not made by TeX)"}
{"query_id": 87690, "query": "How can I draw a Karnaugh map"}
{"query_id": 49814, "query": "How to add a figure to the headline of the Frankfurt theme"}
{"query_id": 148260, "query": "What is amssymb.sty package?"}
{"query_id": 131820, "query": "I keep getting an error in line 38 saying \"Extra alignment tab has been changed to \\cr.\""}
{"query_id": 46301, "query": "siunitx uses math mode for symbols - workaround needed when using different fonts for math and text"}
{"query_id": 49811, "query": "Print large macro block from Lua to TeX"}
{"query_id": 65422, "query": "How to write properly an accent in a web address?"}
{"query_id": 43276, "query": "Unused bibliography entries - how to check which entries were not used?"}
{"query_id": 125102, "query": "Vim LaTeX suite now doubles my double parentheses and braces"}
{"query_id": 130977, "query": "Ouch---my internal constants have been clobbered!---case 14"}
{"query_id": 2053, "query": "change font of certain part of the text"}
{"query_id": 24510, "query": "pdflatex fails within Emacs.app, but works in terminal"}
{"query_id": 24512, "query": "Can LaTeX be used to make a sheet of blank lines?"}
{"query_id": 25845, "query": "KOMA-Script: change font of sectioning headings to serif"}
{"query_id": 81903, "query": "Highlighting keywords with spaces with the listings package"}
{"query_id": 123398, "query": "How to change LaTex paper left, right, top and botton margins?"}
{"query_id": 125576, "query": "PNG figures in black and white"}
{"query_id": 20151, "query": "citation key in the alphabetic style"}
{"query_id": 88545, "query": "How to place an image in bottom left hand corner on every page?"}
{"query_id": 103303, "query": "Set the line separation in a tabu table equal to the line separation in the document"}
{"query_id": 112273, "query": "Need commands for creating manual \"pre-compile\" of preamble in Windows, perhaps by pressing a button"}
{"query_id": 12530, "query": "Stretching integral"}
{"query_id": 174544, "query": "How to place text on the same page as title page"}
{"query_id": 197621, "query": "How to highlight Python syntax in LaTeX using verbments and utf8"}
{"query_id": 61064, "query": "Badbox from PGF layer using fit"}
{"query_id": 10355, "query": "Blank lines in align environment"}
{"query_id": 56956, "query": "Problem with siunitx and T1 fontenc"}
{"query_id": 24528, "query": "Having problems with listings and UTF-8. Can it be fixed?"}
{"query_id": 63250, "query": "Typesetting 144...4 with \"n times\" under the 4's is easy, but what about \\sqrt{144...4}?"}
{"query_id": 163406, "query": "When writing a class/package, how can I run code if/when another package is loaded?"}
{"query_id": 5571, "query": "Reduce bibliography to one line"}
{"query_id": 44116, "query": "How can I draw an arrow from one text element to another?"}
{"query_id": 130500, "query": "Beamer: Modify section navigation warsaw"}
{"query_id": 131830, "query": "I dont see the error but the message \"illegal character in ar.\" popped up (line 14)"}
{"query_id": 10361, "query": "Showing arrows crossing over or under other arrows in xy-pic without knots"}
{"query_id": 46772, "query": "Itemize & italic with [utopia]{mathdesign}"}
{"query_id": 66763, "query": "Latex Error \"log file not found\""}
{"query_id": 97008, "query": "The Last Obstacle -- Measuring sidebearings in LuaLaTeX"}
{"query_id": 66769, "query": "Change header only in one page"}
{"query_id": 130504, "query": "How do I right-align text in a glossed Linguex example?"}
{"query_id": 126420, "query": "Creating accessible PDFs using Latex?"}
{"query_id": 131832, "query": "text mode of a latex symbol \\mathfrak s not found"}
{"query_id": 98330, "query": "Changing the suffix according to the figure number"}
{"query_id": 115769, "query": "Meaning of floattype in KOMA"}
{"query_id": 3393, "query": "What is XeTeX exactly and why should I use it?"}
{"query_id": 75231, "query": "Aligning equations with align*"}
{"query_id": 153607, "query": "Change formatting of date from '(Dated: \\today)' to '\\today' in revtex4-1"}
{"query_id": 127749, "query": "Why doesn't raggedright work in the last column of a tabular (with package array)?"}
{"query_id": 195456, "query": "What is the LaTeX command or package that allows one to include command line examples in their document?"}
{"query_id": 196788, "query": "Compiler Error. Tikz and Arrow error?"}
{"query_id": 57812, "query": "Bounding box for each letter"}
{"query_id": 34312, "query": "How to create a command with key values?"}
{"query_id": 34796, "query": "Capitalizing strings ignoring closed class words"}
{"query_id": 54302, "query": "How to fit landscape multi-page table to textwidth"}
{"query_id": 123388, "query": "How to create two PDFoutput from the same source"}
{"query_id": 11211, "query": "Can I have framed blocks in beamer?"}
{"query_id": 139323, "query": "tabularx in newenvironment: Illegal pream-token"}
{"query_id": 159393, "query": "Different reference numbering per chapter"}
{"query_id": 175863, "query": "How to put a wrapfig figure in a certain position around a text?"}
{"query_id": 139320, "query": "Remove extra space to the left of aligned environment"}
{"query_id": 89862, "query": "Ruler below chapter heading"}
{"query_id": 159399, "query": "Adding fonts to Latex editor"}
{"query_id": 61074, "query": "Automatic reduplication of equal sign in the beginning of broken formula"}
{"query_id": 137142, "query": "\"Standardizing\" LaTeX code?"}
{"query_id": 140309, "query": "How to align arrays?"}
{"query_id": 139728, "query": "Write out author name even though it's the same name (BibLaTeX)"}
{"query_id": 23647, "query": "Drawing a directory listing a la the tree command in TikZ"}
{"query_id": 61082, "query": "Table generating error"}
{"query_id": 128671, "query": "Facing the problem in starting the PDFTexify or any other mode"}
{"query_id": 186958, "query": "how to insert the name of the file in the text?"}
{"query_id": 162982, "query": "modifying printindex to eliminate toc entry"}
{"query_id": 67627, "query": "Conflict between babel, hyperref and appendix package"}
{"query_id": 45439, "query": "Using an insert in smaller type in a paragraph without changing text line spacing"}
{"query_id": 69808, "query": "Standalone with \\begin{figure} gives error"}
{"query_id": 12517, "query": "Formatting each part/section/subsection"}
{"query_id": 54794, "query": "Using a pgfplots-style legend in a plain-old tikzpicture"}
{"query_id": 193247, "query": "Place to `tikzpicture` next to each other on a slide"}
{"query_id": 175816, "query": "Stacked Barplot inside Table in Latex"}
{"query_id": 312, "query": "Correctly typesetting a tilde"}
{"query_id": 51286, "query": "Recalling a theorem"}
{"query_id": 172788, "query": "Converting a high resolution png format logo to tikz"}
{"query_id": 175812, "query": "How to create a TeX command for tower functions?"}
{"query_id": 3399, "query": "What are good packages for laying out a play?"}
{"query_id": 150990, "query": "Row to column table"}
{"query_id": 86386, "query": "Edge nodes, auto and node distance"}
{"query_id": 109903, "query": "beamer header takes too much space"}
{"query_id": 126480, "query": "How to align multiple symbols for a long equation?"}
{"query_id": 7770, "query": "File extensions of LaTeX-related files"}
{"query_id": 129995, "query": "PDF in Latex Visibility of Header"}
{"query_id": 162976, "query": "mathematics expression for parameter"}
{"query_id": 47609, "query": "Using beamer \\visible command inside a table, without adding vertical space"}
{"query_id": 25833, "query": "The abstract environment changes the \\linewidth for the whole document"}
{"query_id": 168278, "query": "Why do I get the errors 'Missing number' and 'Illegal unit of measure'?"}
{"query_id": 51294, "query": "Indent second line of a bibliography"}
{"query_id": 31268, "query": "What measure can we use by LaTeX to control the print budget"}
{"query_id": 32111, "query": "How to keep Heading together with text?"}
{"query_id": 126479, "query": "How to change the language from German to English in MiKTeX?"}
{"query_id": 106406, "query": "Split a long table into two pages"}
{"query_id": 193252, "query": "alphabetical order in bibtex with accented words"}
{"query_id": 109914, "query": "No hyphens in biblatex"}
{"query_id": 186935, "query": "Adding an email to latex file"}
{"query_id": 23625, "query": "Chapter on the right side - How to turn it off?"}
{"query_id": 22779, "query": "Is it possible to load pgfmath without loading the full pgf package?"}
{"query_id": 16097, "query": "Define latex command to create new type of heading"}
{"query_id": 25806, "query": "How can I crop included PDF documents?"}
{"query_id": 4273, "query": "Align two inequalities"}
{"query_id": 102022, "query": "Can we have viewer specific text in a pdf generated by pdfLaTex?"}
{"query_id": 6456, "query": "Set a global policy for floats positioning"}
{"query_id": 67644, "query": "How do I use freeserif font in latex"}
{"query_id": 161672, "query": "\\cline with \\usepackage[czech]{babel} doesn't work"}
{"query_id": 195409, "query": "Labeling a point at which a perpendicular is dropped"}
{"query_id": 124292, "query": "Error with $ when using math in TikZ figure"}
{"query_id": 56512, "query": "Is there any way to produce List of frames with beamer?"}
{"query_id": 78785, "query": "number of page starting after the table of contents"}
{"query_id": 107709, "query": "Insert bullets not in enumerate/itemize but within text"}
{"query_id": 73081, "query": "Is it possible to distinguish between the soft copy and the hard copy of a pdf?"}
{"query_id": 115342, "query": "How to remove the unwanted space on the left side of the following gather*?"}
{"query_id": 4268, "query": "\"inputenc Error: Unicode char \\u8\" error while trying to write a degree symbol (invisible character)"}
{"query_id": 12972, "query": "Matrix with labels"}
{"query_id": 173651, "query": "Need help to create such a beautiful title page"}
{"query_id": 4269, "query": "Absolute positioning of wrapfig"}
{"query_id": 93924, "query": "Inconsistent rotations with \\sidewaysfigure"}
{"query_id": 10313, "query": "Center a Listing on page"}
{"query_id": 34768, "query": "fullwidth environment doesn't work across pages"}
{"query_id": 142929, "query": "Fontsize with knitr & tikzDevice"}
{"query_id": 5130, "query": "\"kpsewhich\" error when trying to build from Textmate"}
{"query_id": 67650, "query": "how to draw special line in a picture"}
{"query_id": 67651, "query": "repeating an equation and getting the same equation number?"}
{"query_id": 161664, "query": "I want to plot the integral of sin(x^2) in pgfplots"}
{"query_id": 113147, "query": "Patching arguments inside a macro"}
{"query_id": 160336, "query": "Asterism and similar breaking / non-breaking options"}
{"query_id": 7797, "query": "Is there an \\arrayrulecolor-like command to change the rule color of \\fbox?"}
{"query_id": 181252, "query": "Problem using .estyle in a tikzset"}
{"query_id": 55670, "query": "\\href without decoration (no underline)"}
{"query_id": 73098, "query": "XeLaTeX oldstyle figures search/copy"}
{"query_id": 182582, "query": "Order the citation in winedt?"}
{"query_id": 101180, "query": "How to draw a smooth random blob with TikZ?"}
{"query_id": 191053, "query": "How to move titles in TOC due to special numbering?"}
{"query_id": 196743, "query": "How can I draw these pictures in LaTeX (with Pspicture)?"}
{"query_id": 114000, "query": "Define listing for different languages"}
{"query_id": 151877, "query": "Adjusting the summation sign:"}
{"query_id": 126457, "query": "dashed line in pgfplots legend results in incomplete marks"}
{"query_id": 54344, "query": "Is there a way to avoid repetitive compiler warning messages?"}
{"query_id": 56521, "query": "\\phantomsection - how to jump to the chapter title instead of the center of the page (only)"}
{"query_id": 136256, "query": "Strange interaction between listings and sections"}
{"query_id": 172310, "query": "Is this possible to modifying the .sty file?"}
{"query_id": 12981, "query": "Using non ASCII characters in author names and titles within hyperref pdfinfo"}
{"query_id": 12986, "query": "Automatically Locate Included Images"}
{"query_id": 191059, "query": "How to get a small letter version of \\mathcal{O}"}
{"query_id": 57857, "query": "Overfull box and broken pagination"}
{"query_id": 142927, "query": "How do you hide an article title in BibLaTeX?"}
{"query_id": 129444, "query": "Which fonts support Cyrillic letters in TexLive?"}
{"query_id": 200748, "query": "Cancelling in a Fraction"}
{"query_id": 103297, "query": "How do you move a figure caption in lyx?"}
{"query_id": 61441, "query": "Changing font in listings-package"}
{"query_id": 163359, "query": "how to generate a PDF with real UTF characters"}
{"query_id": 48466, "query": "Why package enumitem conflicts with Tufte-book and/or beamer"}
{"query_id": 35155, "query": "lstlisting in two columns"}
{"query_id": 128590, "query": "Numbering of sections and subsections in LyX"}
{"query_id": 174007, "query": "Problems using listings package and beamer"}
{"query_id": 116136, "query": "externalizing the caption together with legend"}
{"query_id": 109828, "query": "How to draw a 3d cylinder using TikZ-3dplot?"}
{"query_id": 152214, "query": "\"! Missing $ inserted.\" while including graphics (file/dir names with white space)"}
{"query_id": 17725, "query": "Remove colon in the caption of a figure if the caption is empty"}
{"query_id": 139259, "query": "Bibliography with different sections"}
{"query_id": 150036, "query": "Installing miktex in windows 7"}
{"query_id": 167715, "query": "RStudio and biber"}
{"query_id": 142417, "query": "What are your best practices to compile only a part of the document or presentation (or how do you prepare the big ones)?"}
{"query_id": 14696, "query": "Full page image as title page"}
{"query_id": 174488, "query": "Why `\\\\` is wrong here?"}
{"query_id": 82385, "query": "How to display the character ^ in LaTeX?"}
{"query_id": 14218, "query": "Proper style macros."}
{"query_id": 173151, "query": "Something buggy between tcolorbox and invoice packages"}
{"query_id": 196279, "query": "How can insert a full-width listing in a two-column document?"}
{"query_id": 51648, "query": "Adding urldate to url function?"}
{"query_id": 97869, "query": "Undefined control sequence, when using font in tikz node"}
{"query_id": 9993, "query": "Help aligning tables."}
{"query_id": 11193, "query": "MikTex error for PNG images when trying to produce DVI"}
{"query_id": 131770, "query": "Figure with more than one image in Lyx"}
{"query_id": 165528, "query": "Command to disable environments"}
{"query_id": 187339, "query": "\"Overfull \\hbox\" when using tcolorbox with parskip=half KOMA-option"}
{"query_id": 37320, "query": "Matching arrowheads in TikZ with math mode arrowheads"}
{"query_id": 95687, "query": "What are coding conventions in LaTeX?"}
{"query_id": 187335, "query": "Biblatex alphanumeric reference with organization"}
{"query_id": 134802, "query": "Generating / Creating a signature in Latex"}
{"query_id": 88909, "query": "What formatting should I use on 'd' when writing an integral?"}
{"query_id": 185156, "query": "Can figures be referenced verbally (automatically) with respect to their place mentioned in the text?"}
{"query_id": 118782, "query": "XeLaTex - Arabic script letters mirrored"}
{"query_id": 128579, "query": "TikZ: using the pos = x in a node"}
{"query_id": 9988, "query": "TikZ: \\pgfmathresult problem inside (<angle>:\\pgfmathresult) coordinate"}
{"query_id": 173140, "query": "Display four or more authors instead of \u201cet al.\u201d"}
{"query_id": 52988, "query": "Avoid linebreaks in LaTeX console / log output"}
{"query_id": 46268, "query": "horizontal curly braces"}
{"query_id": 129423, "query": "Small \\sum character using beamerposter and lmodern"}
{"query_id": 14673, "query": "Pseudo code to be spread over multiple pages?"}
{"query_id": 47598, "query": "Why am I getting errors about defined references?"}
{"query_id": 24476, "query": "Problem in BibTeX with composite names"}
{"query_id": 25325, "query": "Convert LaTeX file to HTML or ePub"}
{"query_id": 98743, "query": "\\xymatrix undefined"}
{"query_id": 126397, "query": "latex symbols to indicate telephone and mobile on letterhead"}
{"query_id": 154429, "query": "How to remove author name default capitalization?"}
{"query_id": 23147, "query": "Getting \"dots\" to show up in Beamer headers"}
{"query_id": 58292, "query": "A line of length \\textwidth in TikZ"}
{"query_id": 119619, "query": "Want to Bend an Arrow Around an Arrow Instead of Intersecting"}
{"query_id": 163381, "query": "Concatenate 2 Bibtex files"}
{"query_id": 41808, "query": "How do I install TeX/LaTeX on Windows 7"}
{"query_id": 116595, "query": "Highlighting haskell listings in large *.tex document"}
{"query_id": 129899, "query": "intersection of line and circle"}
{"query_id": 86764, "query": "How can I have two bibtex tags for a single entry?"}
{"query_id": 173179, "query": "Is there any way to use moderncv inside another document class?"}
{"query_id": 151386, "query": "Run LaTeX with the equivalent of pdflatex -shell-escape"}
{"query_id": 174021, "query": "Typeset WHOLE document in sans-serif, Including Math Mode"}
{"query_id": 137098, "query": "How to highlight words or sentences?"}
{"query_id": 129893, "query": "Show reference label when it is undefined"}
{"query_id": 36, "query": "Differences between LuaTeX, ConTeXt and XeTeX"}
{"query_id": 46258, "query": "How to get correct autoref for theorems"}
{"query_id": 130464, "query": "What are structural elements? Customizing the mechnism of beamer color theme"}
{"query_id": 118756, "query": "Is there a way to draw a horizontal line, across a whole page, no matter which context I'm in?"}
{"query_id": 26669, "query": "Printing a book"}
{"query_id": 164211, "query": "Lyx redefine tabular with tabularx - strange lines"}
{"query_id": 24007, "query": "Wiki to Latex conversion"}
{"query_id": 165540, "query": "Wrongly spaced words in thesis title"}
{"query_id": 166870, "query": "Listings: highlighting key-value file?"}
{"query_id": 96550, "query": "Drawing a vertical line between two nodes in TikZ"}
{"query_id": 385, "query": "How to perform advanced spell checking of latex documents?"}
{"query_id": 12026, "query": "Label equation with a symbol"}
{"query_id": 106304, "query": "Unknown graphics extension: .eps with epstopdf"}
{"query_id": 37789, "query": "Using \\colon or : in formulas?"}
{"query_id": 174495, "query": "Use american english as standard in LaTeX"}
{"query_id": 107210, "query": "Numbers under each other"}
{"query_id": 107694, "query": "How to set node label position with anchor"}
{"query_id": 188614, "query": "why this Latex template does not allow the \\paragraph and \\subparagraph sections to appear in the contents"}
{"query_id": 99613, "query": "asymmetric errors with exponential"}
{"query_id": 99615, "query": "Backref package for page reference"}
{"query_id": 95253, "query": "What is the meaning of moved letters on LaTeX logo?"}
{"query_id": 133906, "query": "Matching cmyk colors in plot to LaTeX"}
{"query_id": 154847, "query": "Enumerate not to reset counter (resuming enumerate counter)"}
{"query_id": 160282, "query": "Multiple \\usepackage vs comma separated package names"}
{"query_id": 86789, "query": "Footnotes inside captions using LyX"}
{"query_id": 22273, "query": "Author name of \\textcite as possessive"}
{"query_id": 117027, "query": "How to make a box bold at the end of proof?"}
{"query_id": 87635, "query": "The difference between $X^{\\ast}$ and $X^*$?"}
{"query_id": 173111, "query": "Line break in a modified proof environment (with show/hide feature)"}
{"query_id": 2905, "query": "How can I list references from BibTeX file in-line with commentary?"}
{"query_id": 15989, "query": "TOC entries and labels for included PDF pages"}
{"query_id": 38627, "query": "Commands paths in TeXstudio on Mac OS X - with 'could not start the command' error"}
{"query_id": 200319, "query": "How can I provide the editor names after the collectiontitle/booktitle, i.e. only once?"}
{"query_id": 107225, "query": "citestyle=authoryear, change delimiter"}
{"query_id": 71299, "query": "How to make a smarter cropping with standalone or preview packages?"}
{"query_id": 28822, "query": "Can I think of LyX as a LaTeX IDE?"}
{"query_id": 73476, "query": "Tabularx can't center some column"}
{"query_id": 35583, "query": "Lineheight of \\huge text too small"}
{"query_id": 111707, "query": "Are % comments passed on to the PDF-file upon *.tex compilation?"}
{"query_id": 59179, "query": "Why are float objects centered vertically on new pages?"}
{"query_id": 200311, "query": "Redefine DeclareMathOperator"}
{"query_id": 133912, "query": "How to draw a double-color line with TikZ?"}
{"query_id": 188620, "query": "Show page number as a \"percent complete\""}
{"query_id": 141530, "query": "Using tikz or something similar for generating general graphs?"}
{"query_id": 174437, "query": "command to print indexed constants"}
{"query_id": 174432, "query": "Cite another publication in bibliography item"}
{"query_id": 137048, "query": "Biber doesn't work anymore (with biblatex-apa in TeXnicCenter)"}
{"query_id": 142868, "query": "Color gradient for line in TikZ"}
{"query_id": 47560, "query": "How to put a brace on the right, not left, to group cases?"}
{"query_id": 56907, "query": "Demonstrating syntax of a sentence"}
{"query_id": 54728, "query": "Hyperref jumps to the wrong equation if the equation has a \\tag and cleveref is used"}
{"query_id": 148180, "query": "Environment for two columns with lstlistings"}
{"query_id": 48407, "query": "Removing the 'and' from between two authors, revtex4-1"}
{"query_id": 148182, "query": "How can I get my table at the bottom of a two-column page?"}
{"query_id": 184236, "query": "PGFPlots option to include/ignore data set when determining axis limits?"}
{"query_id": 193190, "query": "How can I set custom margins for standalone document?"}
{"query_id": 48402, "query": "Personal notes when preparing a talk with LaTeX-beamer class"}
{"query_id": 99635, "query": "Minimal syntax alternative to enumerate environment"}
{"query_id": 106345, "query": "Which ligatures do the fonts used in my document offer?"}
{"query_id": 20076, "query": "Need Help to include personal details in make heading"}
{"query_id": 63201, "query": "Is there a package or scripted solution to generate the program for scientific conferences"}
{"query_id": 48400, "query": "biblatex: make title hyperlink to DOIs, URL or ISBN"}
{"query_id": 38607, "query": "No room for a new \\dimen"}
{"query_id": 117483, "query": "Can I force a table caption to be a figure caption?"}
{"query_id": 195368, "query": "Remove section number in header"}
{"query_id": 120644, "query": "Combined List of Figures and Tables?"}
{"query_id": 116157, "query": "How can I label an interlinear gloss in gb4e?"}
{"query_id": 183390, "query": "creating a db schema"}
{"query_id": 140695, "query": "How can I remove extra space after the figure, but keep it above the figure"}
{"query_id": 119666, "query": "To where/whom should I write for an invitation to create a tool for bullet graphs?"}
{"query_id": 84146, "query": "How to replace $$ .. $$ by \\[...\\]"}
{"query_id": 77, "query": "How to make a standard preamble into a package"}
{"query_id": 48878, "query": "QED symbol in a custom theorem environment"}
{"query_id": 190925, "query": "Large parenthesis in table"}
{"query_id": 46216, "query": "Correct use of hyphen, en dash, or em dash in compound words"}
{"query_id": 118319, "query": "Spanning a procedure of an algorithm more than 1 page"}
{"query_id": 130424, "query": "Formatting of Tables in Latex, using multirow and multicolumn together"}
{"query_id": 32051, "query": "variable-sized \"such that\" pipe"}
{"query_id": 200333, "query": "Bibliography in LaTeX: Spaces between words"}
{"query_id": 26624, "query": "tlmgr is not accessible after installing TeX Live 2011 on a Ubuntu system"}
{"query_id": 39929, "query": "Fast PNG embedding using pdflatex"}
{"query_id": 34232, "query": "Incorrect evaluation of expression?"}
{"query_id": 175300, "query": "Missing $ inserted when using \\itemize and \\approx"}
{"query_id": 152684, "query": "Multirow and multicolum memoir"}
{"query_id": 43185, "query": "amsmath possible bug: \\dot over bracketed \\dot{x}"}
{"query_id": 53898, "query": "How to get lines with dots in the table of contents for sections?"}
{"query_id": 197555, "query": "How can I learn to make my own packages?"}
{"query_id": 1605, "query": "Making a table of contents for a book"}
{"query_id": 197553, "query": "Seeking the detailed explanation of the two command \\l@part and \\l@chapter"}
{"query_id": 37747, "query": "which package for \\oiint symbol"}
{"query_id": 194046, "query": "Symbol division latex"}
{"query_id": 43610, "query": "Plotting bell shaped curve in TikZ-PGF"}
{"query_id": 72975, "query": "PDF compatibility, how to validate?"}
{"query_id": 155333, "query": "LaTex or ConTeXt for a new user?"}
{"query_id": 73822, "query": "What is the difference between \\over and \\frac?"}
{"query_id": 88084, "query": "Hiding Bookmarks in PDFLaTeX"}
{"query_id": 94768, "query": "Equation numbers in outer margins on a two-sided document"}
{"query_id": 158844, "query": "Footenote in table appear only as alpha letters"}
{"query_id": 130036, "query": "How to enumerate in reverse order"}
{"query_id": 56492, "query": "latex tabular width the same as the textwidth"}
{"query_id": 154009, "query": "The history behind the broken epsilon"}
{"query_id": 135726, "query": "Intertext like command in enumerate environment?"}
{"query_id": 168650, "query": "sidewaystable doesn't fit on page"}
{"query_id": 113934, "query": "Asymetric curly braces TikZ"}
{"query_id": 38260, "query": "Non italic text in theorems, definitions, examples"}
{"query_id": 30783, "query": "How to make text copy in PDF previewers ignore lineno line numbers?"}
{"query_id": 170961, "query": "Creating a new shape"}
{"query_id": 84965, "query": "Math mode in theoremstyle head spec"}
{"query_id": 121551, "query": "Speed up the compilation of a document with a lot of tikzpictures made with pgfplots"}
{"query_id": 122882, "query": "how can I get a tilde under a variable in math mode?"}
{"query_id": 121553, "query": "Numbered list in rows in tables"}
{"query_id": 199388, "query": "Increasing font size proportionately"}
{"query_id": 199386, "query": "Unnumbered equations: Any difference between \\begin{equation*} and \\[?"}
{"query_id": 49394, "query": "Biblatex: no period/dot after initials if bibtex-entry firstname is only one letter"}
{"query_id": 154010, "query": "how to add the reference to the content?"}
{"query_id": 176261, "query": "biblatex: stop supressing double punctuation after title which ends with a dot"}
{"query_id": 134403, "query": "Tabbed windows in Texmaker?"}
{"query_id": 19991, "query": "Align Note below table"}
{"query_id": 16003, "query": "Phantom and line break"}
{"query_id": 9116, "query": "What is the minimum one needs to know to use TikZ?"}
{"query_id": 165126, "query": "How do I use the ampersand (&) inside a foreach or conditional (or other group/environment) when building tables?"}
{"query_id": 171803, "query": "Change font size of the verbatim environment"}
{"query_id": 167790, "query": "Force placement of pairs of figures on even and odd page"}
{"query_id": 9594, "query": "Adding more than one author with different affiliation"}
{"query_id": 165131, "query": "Rebuilding TikZ's pgfmanual.pdf"}
{"query_id": 121540, "query": "How I can speed up the compilation of a document with multiple images?"}
{"query_id": 147710, "query": "How to start itemize on same line as text?"}
{"query_id": 10706, "query": "pdfTeX error (font expansion): auto expansion is only possible with scalable"}
{"query_id": 48057, "query": "Enumerated List and Table"}
{"query_id": 32958, "query": "dropping ticklabel on pgfplot axis"}
{"query_id": 19998, "query": "Solution of problems in the end of a book"}
{"query_id": 3800, "query": "Option delim_0 \"\\\\dotfill\" in makeindex ignored by texlive's makeindex?"}
{"query_id": 67151, "query": "how to draw part of the picture to be line and the other part to be the \"\\leadsto\" symbol"}
{"query_id": 130050, "query": "Thesis running problem in KILE"}
{"query_id": 97814, "query": "Package babel Error: You haven't loaded the option english yet"}
{"query_id": 96967, "query": "How can I strike-out arrows in tikz?"}
{"query_id": 130053, "query": "Removing \"st\" ligature in Humanist font"}
{"query_id": 180751, "query": "How to put an Expectation symbol in IEEE Transanctions format?"}
{"query_id": 159716, "query": "How do I de-italicise text in maths mode?"}
{"query_id": 95631, "query": "Defining a new type of floating environment"}
{"query_id": 180753, "query": "Count Frequency of particular words in tex file, e.g. \"Hence\", \"Now\""}
{"query_id": 95632, "query": "Weird pmatrix error"}
{"query_id": 154029, "query": "Inserting .pdf created in Visio to LaTeX without whitespace"}
{"query_id": 71663, "query": "Simplest way to draw the 3d-points in the set {0,1,2,3,4}^3"}
{"query_id": 119218, "query": "How to copy/paste from lstlistings?"}
{"query_id": 62710, "query": "Tabular with p type columns to fill page width"}
{"query_id": 170989, "query": "Scaling a graphics leads to an error"}
{"query_id": 186054, "query": "How to draw graphs on LaTeX?"}
{"query_id": 186059, "query": "combining threeparttable and tabu results in error"}
{"query_id": 110405, "query": "Create an automaton with LaTeX"}
{"query_id": 200367, "query": "How can i get my doc files in latex and then output in pdf also"}
{"query_id": 58690, "query": "Numbers of figure references"}
{"query_id": 120201, "query": "Adding a cover image to an existing pdf file breaks th links of the original pdf"}
{"query_id": 144696, "query": "Name of the appendices in ToC"}
{"query_id": 49370, "query": "chemnum package"}
{"query_id": 82326, "query": "Odd behaviour with arrows and multipart rectangles"}
{"query_id": 165162, "query": "All available 1-letter LaTeX commands"}
{"query_id": 82321, "query": "Remove un-numbered section names"}
{"query_id": 179317, "query": "Different output between xelatex and lualatex with the same font"}
{"query_id": 156691, "query": "Graphics: File name won't go away"}
{"query_id": 123714, "query": "BibTeX rendering error with URL"}
{"query_id": 67162, "query": "Can siunitx use roman when familydefault is set to sans serif?"}
{"query_id": 69341, "query": "How to remove empty page after appendix and the next chapter?"}
{"query_id": 153185, "query": "Adding to a \\foreach variable in pgfplots"}
{"query_id": 55190, "query": "Avoid hyperlinked TOC if hyperref is used"}
{"query_id": 164298, "query": "Starting a paragraph with a big letter"}
{"query_id": 111726, "query": "Preview TikZ figure in AUCTeX?"}
{"query_id": 56040, "query": "How to setup this layout"}
{"query_id": 61869, "query": "LaTeX/BibTex not arranging citations by order of appearance"}
{"query_id": 27592, "query": "\\ifmmode doesn't seem to work correctly inside an array environment"}
{"query_id": 60545, "query": "Should I \\mathrm the d in my integrals?"}
{"query_id": 171824, "query": "How to skip ticks in pgfplots plot?"}
{"query_id": 147733, "query": "How do you count the number of times a source has been cited in a document?"}
{"query_id": 27596, "query": "Change reports text for bibliography"}
{"query_id": 199376, "query": "How to plot the first n rows of a table using pgfplots?"}
{"query_id": 47187, "query": "Can't find TikZ library calc"}
{"query_id": 119692, "query": "How do I make a line for unit conversions?"}
{"query_id": 198049, "query": "How do I order citations by appearance?"}
{"query_id": 71206, "query": "What is going on with pgfpages and page labels?"}
{"query_id": 96989, "query": "Problem with Miktex installation"}
{"query_id": 134833, "query": "How can I fix a logo in the head-right of a page"}
{"query_id": 96501, "query": "What does \\relax do?"}
{"query_id": 70356, "query": "How do I break a long table cell/row using the europecv package?"}
{"query_id": 96502, "query": "How to make an inset in a figure"}
{"query_id": 131329, "query": "Alignment in multicolum"}
{"query_id": 57383, "query": "How do I set the default beamer font to Computer Modern serif?"}
{"query_id": 42726, "query": "align* but show one equation number at the end"}
{"query_id": 26238, "query": "Ignoring an acronym that is only used once"}
{"query_id": 113975, "query": "How to make a traditional division"}
{"query_id": 164241, "query": "How to differentiate many lines in a chart?"}
{"query_id": 2986, "query": "Margin kerning in Xe(La)TeX for TeXlive 2010: how to enable?"}
{"query_id": 2984, "query": "Frequently loaded packages: Differences between pdfLaTeX and XeLaTeX"}
{"query_id": 146811, "query": "System call after final document shipout"}
{"query_id": 58237, "query": "How to decrease the size of single node in mindmap?"}
{"query_id": 152258, "query": "How to divide circle multipart nodes in tikz"}
{"query_id": 18616, "query": "How can I ignore everything except a specified environment?"}
{"query_id": 49356, "query": "Creating a Free Body Diagram in TikZ"}
{"query_id": 50752, "query": "Figures in enumerate environment"}
{"query_id": 60550, "query": "how to separate 3 tree latex"}
{"query_id": 83672, "query": "Beamer: vertically center picture inside overlayarea"}
{"query_id": 179732, "query": "Add fitting line to histogram plot created by pgfplots"}
{"query_id": 100655, "query": "Problem in cropping the document in standalone package"}
{"query_id": 2507, "query": "Bad vertical centering in an equation"}
{"query_id": 129079, "query": "How to prevent the source code overflow over the frame in a listing?"}
{"query_id": 132660, "query": "Count items later in the document"}
{"query_id": 95649, "query": "Reduce white space around TikZ picture?"}
{"query_id": 32908, "query": "Compile but don't print references"}
{"query_id": 133992, "query": "How to tell LaTeX what I write should stay as it is, and not as a mathematical expression"}
{"query_id": 154434, "query": "tikz: arrow with two heads, why?"}
{"query_id": 48018, "query": "minted not working on mac"}
{"query_id": 15595, "query": "Problem with environment expansion and the Tikz external library."}
{"query_id": 155766, "query": "Partial instead of full markers are shown in PGFplots"}
{"query_id": 61895, "query": "Simple xelatex or latex document which contains an apple command character"}
{"query_id": 73871, "query": "How to typeset a continued fraction in the following style?"}
{"query_id": 82329, "query": "How bad for TeX is omitting braces {}, even if the result is the same?"}
{"query_id": 170917, "query": "Put brackets around value and uncertainty with exponent in tables with siunitx"}
{"query_id": 57393, "query": "XY-pic not sufficiently expressive to draw a simple linked list (data structure)?"}
{"query_id": 1666, "query": "What fonts are available for LaTeX?"}
{"query_id": 1665, "query": "How can I add left aligned text to an equation?"}
{"query_id": 36039, "query": "automatic size adjustment for nested parentheses"}
{"query_id": 24065, "query": "Roman numerals with over- and underline"}
{"query_id": 142468, "query": "Center a Listing"}
{"query_id": 192723, "query": "Starting a picture at the left position and enlarging it to fill the whole page"}
{"query_id": 56069, "query": "Does Lua(La)TeX use external lua or built in?"}
{"query_id": 110460, "query": "\\underbrace and align environment"}
{"query_id": 119275, "query": "Problem with \\section[][]{} when using memoir"}
{"query_id": 158821, "query": "Producing .bbl file with Lyx and JabRef"}
{"query_id": 153134, "query": "Is there a way to compact equations?"}
{"query_id": 64931, "query": "Using \\newtheorem"}
{"query_id": 24036, "query": "Fixing a code to highlight formulas and text on several lines"}
{"query_id": 35174, "query": "Best way to create an system of equations environment?"}
{"query_id": 135705, "query": "Listing numbers go outside margin"}
{"query_id": 64934, "query": "Subfig label positioning"}
{"query_id": 187343, "query": "TeX definitions of `` and ''"}
{"query_id": 40525, "query": "Using sin inside of tikz ``\\foreach``"}
{"query_id": 26690, "query": "How to add extra spaces between rows in tabular environment?"}
{"query_id": 187350, "query": "Biblatex alphanumeric"}
{"query_id": 64929, "query": "Escaping from the escaping hell"}
{"query_id": 86723, "query": "How to color the background of a table?"}
{"query_id": 24032, "query": "Image is not showing full width and height"}
{"query_id": 82366, "query": "pgfplot column chart legend shape"}
{"query_id": 25365, "query": "Is there a reason shift+' writes \" ' instead of just \"?"}
{"query_id": 120244, "query": "Is there any version of Kile for Windows?"}
{"query_id": 16899, "query": "'Poster' fountain pen nib style text"}
{"query_id": 3851, "query": "How can I automatically calculate sums in a LaTeX table?"}
{"query_id": 69382, "query": "Inline MATLAB code"}
{"query_id": 13387, "query": "How to get part name in LaTeX ?"}
{"query_id": 51623, "query": "Problem with >> inside of \\tt"}
{"query_id": 52951, "query": "How to color alternate rows in latex?"}
{"query_id": 19922, "query": "Where are the necessary places to be appended with % to remove unwanted spaces?"}
{"query_id": 125938, "query": "Changing the template for inline math mode in TeXStudio"}
{"query_id": 38208, "query": "beamer: Create own headline theme"}
{"query_id": 113946, "query": "Fine Tuning Float Positioning"}
{"query_id": 113947, "query": "Don't want sections to have titles/headers"}
{"query_id": 97849, "query": "How to change or remove the bibliography title when using multibib?"}
{"query_id": 13396, "query": "How to get only one vertically centered equation number in align environment with two equations"}
{"query_id": 36495, "query": "Font sizes and line height: how/when/why do \\Huge, \\LARGE, etc. affect one or the other?"}
{"query_id": 96996, "query": "Storing and manipulating real numbers"}
{"query_id": 154457, "query": "Segmenting bibliography based on \\addbibresource file"}
{"query_id": 73412, "query": "Fill space with dots within table"}
{"query_id": 109467, "query": "Footnote in tabular environment"}
{"query_id": 186024, "query": "How can I prevent listings from replacing space characters by a weird bracket symbol?"}
{"query_id": 20924, "query": "Plot reciprocal function with tkiz"}
{"query_id": 29734, "query": "Combining |- and !.5! in TikZ"}
{"query_id": 9175, "query": "\\tableofcontents encoding issue with lualatex"}
{"query_id": 165100, "query": "The difference between \\pgfkeysvalueof and /.store in"}
{"query_id": 1688, "query": "Using LaTeX, how can I restate a theorem, with the same theorem number, later in a paper?"}
{"query_id": 23193, "query": "siunitx: how can I avoid adding decimal zeroes?"}
{"query_id": 80176, "query": "How to generate PDF/A using XeTeX?"}
{"query_id": 169944, "query": "Latex inserts blank line AND indents new paragraph"}
{"query_id": 20917, "query": "How to invert long term to short term using ACRONYM list?"}
{"query_id": 86710, "query": "Position of a figure within description items"}
{"query_id": 80171, "query": "Faded or blurred lines"}
{"query_id": 16423, "query": "\"Page\" heading on contents tables"}
{"query_id": 18602, "query": "How can I use an hbox inside a TikZ environment for text dimension measurement?"}
{"query_id": 122418, "query": "TikZ: alignment of a path that exits node corner?"}
{"query_id": 153130, "query": "Citations in Texmaker using Mendeley to form a bibtex database"}
{"query_id": 177087, "query": "Can pgfplots perform nonlinear regression?"}
{"query_id": 23727, "query": "Converting beamer slides to animated images"}
{"query_id": 160641, "query": "Number all equations in align"}
{"query_id": 16199, "query": "Test if a package (or package option) is loaded"}
{"query_id": 167280, "query": "Conditional on counter definition (TeX)"}
{"query_id": 82938, "query": "table too wide for twocolumn-mode document"}
{"query_id": 68638, "query": "Citing references in order"}
{"query_id": 29029, "query": "Is there a command similar to \\cline{i-j} but works with vertical line?"}
{"query_id": 9184, "query": "Position of superscript when superscriptd item has \\hat over it"}
{"query_id": 148515, "query": "WYSIWYG LaTeX table editor"}
{"query_id": 192234, "query": "Extract from URL field in beamer"}
{"query_id": 10418, "query": "How can I safely compile other people's LaTeX documents?"}
{"query_id": 57984, "query": "Start counting the chapter at 17"}
{"query_id": 4723, "query": "\"TeX capacity exceeded\" because of a couple of raiseboxes in a \\section?"}
{"query_id": 123219, "query": "Writing above and below a symbol simultaneously"}
{"query_id": 86067, "query": "Manually control the header in article"}
{"query_id": 103605, "query": "How to ignore contents from table of contents in standard report class?"}
{"query_id": 89574, "query": "language option supported in listings"}
{"query_id": 112558, "query": "some \\newcommand instructions not working"}
{"query_id": 135217, "query": "Pgfplots bar chart - One plot, different colors"}
{"query_id": 41142, "query": "Adjust Margin Size"}
{"query_id": 64284, "query": "Is there a documentclass that produces 'endless' pages?"}
{"query_id": 45980, "query": "Balancing long table inside multicol in LaTeX"}
{"query_id": 3892, "query": "How do you draw the \"snake\" arrow for the connecting homomorphism in the snake lemma?"}
{"query_id": 112552, "query": "Xelatex beamer Calibri: how to suppress unwanted ligatures"}
{"query_id": 98039, "query": "Difference in height of subscript"}
{"query_id": 114733, "query": "unicode char causing troubles within subfiles"}
{"query_id": 114734, "query": "How to access name of environment in its own definition"}
{"query_id": 123690, "query": "Text flowing out in two column format"}
{"query_id": 22402, "query": "Shorten title on each beamer slide"}
{"query_id": 79760, "query": "Have a space after \\texttrademark oder any kind of characters"}
{"query_id": 98035, "query": "Turn advise on page in exam"}
{"query_id": 82926, "query": "Bending a curly brace around a circle"}
{"query_id": 170433, "query": "Color of comments affects frame color in listings"}
{"query_id": 124535, "query": "LyX - Making only some equations numbered by subsection"}
{"query_id": 28186, "query": "Interwoven alignment preambles are not allowed - what exactly does this mean?"}
{"query_id": 55337, "query": "How to use figure inside a minipage?"}
{"query_id": 1223, "query": "Is there a test for the different styles inside maths mode?"}
{"query_id": 2553, "query": "How can I format sections/subsections/etc. like nested lists?"}
{"query_id": 30494, "query": "How to make LaTeX see local texmf tree"}
{"query_id": 97180, "query": "How to get column alignment in tabularx?"}
{"query_id": 100586, "query": "How do import pdf pages when using latex-dvips-ps2pdf?"}
{"query_id": 100106, "query": "label next to an arrow"}
{"query_id": 191397, "query": "answers sometimes in test, sometimes in answer file"}
{"query_id": 31349, "query": "How to align comments with lstlistings?"}
{"query_id": 19687, "query": "Ensure last page is even and blank"}
{"query_id": 91432, "query": "How can I comment out a block of text in texmaker?"}
{"query_id": 111212, "query": "How make a picture slideshow"}
{"query_id": 42463, "query": "What is the meaning of double pound symbol (##1) in an argument?"}
{"query_id": 46828, "query": "How to highlight important parts (with a gray background)"}
{"query_id": 79791, "query": "Defining a prose-style section break command"}
{"query_id": 151706, "query": "Why can't the abscissa and ordinate obtained from \\psGetNodeCenter be reflected?"}
{"query_id": 168146, "query": "Apostrophe (') in BibTeX not visible after compilation?"}
{"query_id": 192695, "query": "Quoting the page of one my reference document in the title of a figure"}
{"query_id": 34844, "query": "When is it harmful to add percent character at end of lines in a \\newcommand, or similar"}
{"query_id": 53165, "query": "Embedding fonts in an image"}
{"query_id": 59702, "query": "Suggest a \"nice\" font family for my basic LaTeX template (text and math)"}
{"query_id": 78464, "query": "Background image in beamer slides"}
{"query_id": 74093, "query": "Chapters on the same page or not displaying parent counters"}
{"query_id": 99395, "query": "why does rotation style work on actual coordinates and not variables in tikz 3d plot?"}
{"query_id": 101409, "query": "How to get \"paragraph keywords\"?"}
{"query_id": 98063, "query": "AUCTeX changes name of pdf file when compiling with LuaTeX"}
{"query_id": 29006, "query": "xelatex stopped working after TexLive2011 update 2 days ago"}
{"query_id": 49091, "query": "Trim, crop, clip not working as expected in XeTeX"}
{"query_id": 79315, "query": "White spaces between color tabs and two other questions"}
{"query_id": 113881, "query": "Multiple references for three"}
{"query_id": 33519, "query": "Vertical line in matrix using LaTeXiT"}
{"query_id": 191365, "query": "How to mark/label nth data point from file in pgfplots?"}
{"query_id": 66470, "query": "What TeX software to write technical papers with?"}
{"query_id": 135238, "query": "Environment that puts its body into a parbox"}
{"query_id": 135234, "query": "Equations numbers are in the left side"}
{"query_id": 17031, "query": "Topological Quantum Field Theory diagrams with pstricks or tikz"}
{"query_id": 70981, "query": "Sub-/Superscripts in Headings/Normal Text"}
{"query_id": 45969, "query": "\\mathbb{0} and \\mathbb{1} without affecting \\mathbb{R} and \\mathbb{N}"}
{"query_id": 99388, "query": "Missing bars in bar chart"}
{"query_id": 167289, "query": "Is there an TikZ command to provide the height and width of the picture?"}
{"query_id": 191373, "query": "Including fully functional .tex documents"}
{"query_id": 13912, "query": "How to insert an image in the front cover of a report?"}
{"query_id": 191371, "query": "fncychap & chapter heading"}
{"query_id": 31323, "query": "Cross out with arrow as in \"goes to zero\""}
{"query_id": 111691, "query": "Xepersian package prints persian text but does not recognize formulas and gives error"}
{"query_id": 28161, "query": "Simple Author, affiliation and email example fails in RevTex4-1"}
{"query_id": 49087, "query": "Why does TeX have a lion as mascot?"}
{"query_id": 58869, "query": "Equivalent of <div style=\"float:right\"></div>?"}
{"query_id": 170450, "query": "Possible bug in \\tkzDrawArea"}
{"query_id": 20654, "query": "Length between nested lists in beamer"}
{"query_id": 21983, "query": "How to avoid page-breaks inside paragraphs?"}
{"query_id": 17489, "query": "Change caption name of figures"}
{"query_id": 50904, "query": "How can I remove the figures from a draft of my document?"}
{"query_id": 17482, "query": "How can you address the size of surrounding parentheses whose size is determined by \\left and \\right?"}
{"query_id": 41597, "query": "Remove colon in the caption of a figure without using caption package"}
{"query_id": 111276, "query": "\\footnote reference doesn't jump to correct page"}
{"query_id": 117813, "query": "Letter Environment : Justice!"}
{"query_id": 115635, "query": "Glossaries: suppress pages when using glsaddall"}
{"query_id": 1260, "query": "Drawing arrow heads without the tails in TikZ?"}
{"query_id": 46805, "query": "how make the reference in order of occurance?"}
{"query_id": 20655, "query": "How to undo a \\def (i.e., Need a \\undef capability)"}
{"query_id": 39271, "query": "Error using \\usepackage{fancyvrb, fancybox}"}
{"query_id": 2108, "query": "Installing several versions of a package"}
{"query_id": 29463, "query": "Error: Missing \\begin{document}"}
{"query_id": 60712, "query": "How to properly align an equation"}
{"query_id": 81655, "query": "Punctuation in bibliography with multiple languages"}
{"query_id": 168566, "query": "Why there's a page difference between the title of the paper and the abstract?"}
{"query_id": 59726, "query": "Change size of section, subsection, subsubsection, paragraph and subparagraph title"}
{"query_id": 144596, "query": "Insert LaTeX command after a character inside \\texttt{}"}
{"query_id": 54039, "query": "A list inside a table"}
{"query_id": 10858, "query": "URL with tilde character?"}
{"query_id": 11708, "query": "Run macro on each frame in beamer"}
{"query_id": 153081, "query": "An environment for C-code"}
{"query_id": 837, "query": "PDF letterhead as document background"}
{"query_id": 6948, "query": "Obey spaces with URL package (path command)"}
{"query_id": 21512, "query": "\\pause in tikzpicture breaks footline"}
{"query_id": 68201, "query": "macro names with special characters"}
{"query_id": 88272, "query": "Adding a line to the TOC before the appendix"}
{"query_id": 176185, "query": "Tex symbol in xaxis using gnuplot"}
{"query_id": 20660, "query": "How can I split a beamer bibliography across two slides?"}
{"query_id": 53191, "query": "Impact of hyperref, when varioref and cleveref are used"}
{"query_id": 21517, "query": "In LyX, how to have itemize inside a proof?"}
{"query_id": 117804, "query": "How to determine head height automatically"}
{"query_id": 146794, "query": "Error Inserting PDF Pages with XeTeX"}
{"query_id": 78477, "query": "matlab figures with latex fonts"}
{"query_id": 173903, "query": "Browsing BibTeX databases"}
{"query_id": 31301, "query": "How to reduce the number of hyphenation?"}
{"query_id": 82977, "query": "Background image"}
{"query_id": 11717, "query": "Formating captions in longtable tables"}
{"query_id": 191359, "query": "cannot import tex file into LyX"}
{"query_id": 34817, "query": "Fill vertical space in a beamerposter poster"}
{"query_id": 66020, "query": "Figure title in List of Figures"}
{"query_id": 18349, "query": "Alternatives or Successor for TeX"}
{"query_id": 6959, "query": "Sorting the bibliography by entry type"}
{"query_id": 177066, "query": "How to convert Latex code to generate equations in Powerpoint?"}
{"query_id": 156126, "query": "Preserving the value of a macro outside the local scope"}
{"query_id": 67365, "query": "More fine grained syntax highlighting in Emacs/AUCTeX"}
{"query_id": 199295, "query": "Different bibliographies entries with bibtex"}
{"query_id": 45934, "query": "Can I use biblatex with Tufte classes?"}
{"query_id": 169442, "query": "Listings package split frame when the page ends"}
{"query_id": 60734, "query": "Problem with equation format when starting equation with \\dot and \\ddot"}
{"query_id": 172604, "query": "Figures on report counter page (without styling)"}
{"query_id": 31775, "query": "Is plotting exponential graphs a known source of bugs in TikZ?"}
{"query_id": 1279, "query": "Replace `et al.` with `\\& al.`"}
{"query_id": 851, "query": "Removing spaces between \"words\" in math mode"}
{"query_id": 148974, "query": "Howto make a very specific table"}
{"query_id": 28115, "query": "Rounded corners only at one side of a TikZ node"}
{"query_id": 116950, "query": "\\thispagestyle{plain} has no effect"}
{"query_id": 133492, "query": "How can I insert a bracket on top or below a sum?"}
{"query_id": 4302, "query": "Prettiest way to typeset \"C++\" (cplusplus)?"}
{"query_id": 102775, "query": "Is it possible to have authoryear-style citations with the IEEEtran document class?"}
{"query_id": 89159, "query": "The gaps in a matrix brackets"}
{"query_id": 149828, "query": "How to make dominoes falling?"}
{"query_id": 58419, "query": "Common baseline in TikZ and Mathmode"}
{"query_id": 6967, "query": "How to split bibliography into \"works cited\" and \"works not cited\"?"}
{"query_id": 18317, "query": "Table of contents"}
{"query_id": 100118, "query": "How to remove space after image caption?"}
{"query_id": 155268, "query": "Loading language package fails"}
{"query_id": 16141, "query": "Align marginpar with beginning of paragraph"}
{"query_id": 42412, "query": "Longtable does not break correctly when used with \\specialrule instead of \\hline"}
{"query_id": 182868, "query": "No section number and title be printed in PDF output in LaTex"}
{"query_id": 17474, "query": "Multiple bibliographies"}
{"query_id": 42417, "query": "Full path of current file"}
{"query_id": 121051, "query": "verbatim environment fails on ' and `?"}
{"query_id": 122385, "query": "Text appears at the bottom of row when image is image inserted in the next column"}
{"query_id": 42413, "query": "Displaying % (percent) symbol in footnotes using \\url"}
{"query_id": 38392, "query": "How to rename theorem (or lemma) in Beamer to another language?"}
{"query_id": 82996, "query": "superimosing {\\circ} on {\\sum} in {math-mode}"}
{"query_id": 28122, "query": "How to change columns distance?"}
{"query_id": 126735, "query": "Break Large Equation Between Parenthesis Using Multline"}
{"query_id": 149838, "query": "Faster compiling"}
{"query_id": 83845, "query": "bibliography with per-author numbering (and author-year sort)"}
{"query_id": 125887, "query": "Trying to get tikz-cd going"}
{"query_id": 82993, "query": "How to change the name of document elements like \"Figure\", \"Contents\", \"Bibliography\" etc.?"}
{"query_id": 148503, "query": "Lines with `shorten >` don't count towards image size"}
{"query_id": 102787, "query": "Prevent a single line at the end of a page"}
{"query_id": 82990, "query": "XeLaTeX - Devanagari page numbers in \\tableofcontents"}
{"query_id": 4799, "query": "Package to indent and syntax highlight C++ code"}
{"query_id": 161947, "query": "Automatically add discontinuities in some plots"}
{"query_id": 161949, "query": "Vertical tablecell alignment fail for the last one"}
{"query_id": 33944, "query": "Is there a way to optionally import a package?"}
{"query_id": 102363, "query": "Centring a sidewaystable both horizontally and vertically"}
{"query_id": 193170, "query": "Macro for textinput without any formatting"}
{"query_id": 63345, "query": "How to make a real apostrophe or single-quote in LaTeX"}
{"query_id": 96267, "query": "force long text inside \\item[{\\texttt{}] to wrap"}
{"query_id": 97592, "query": "How to reuse the plotmark styles from PGFPlots outside the tikzpicture environment?"}
{"query_id": 49959, "query": "Wrong vertical position of heading created by \\printindex"}
{"query_id": 152618, "query": "Publications list of CV: Comments between references"}
{"query_id": 15706, "query": "Force floats to be typeset after their occurrence in the source text?"}
{"query_id": 170047, "query": "Using PGFPlots to plot macro result"}
{"query_id": 34466, "query": "Error with table"}
{"query_id": 35796, "query": "How can I get multiple lines of frame dots in beamer navigation?"}
{"query_id": 77995, "query": "Accessing a .bib file in a Dropbox folder with TeXWorks"}
{"query_id": 32285, "query": "Referencing to \"above\" or \"below\"?"}
{"query_id": 94080, "query": "Suddenly I cannot compile my bibTex files anymore (Biber, TeXmaker, MacTeX)"}
{"query_id": 140632, "query": "How to set a shaded area around 2d plot curve on a pgfplots figure?"}
{"query_id": 136143, "query": "Tikz animated figure in Beamer"}
{"query_id": 173553, "query": "Add a symbol in ToC between the section number and its section"}
{"query_id": 52214, "query": "Include a PDF containing an animation (movie15)"}
{"query_id": 5656, "query": "BibTeX work in Miktex 2.7, but in version 2.8 does not work"}
{"query_id": 6988, "query": "How to sort an alphanumeric list"}
{"query_id": 104534, "query": "verbatim in two columns"}
{"query_id": 113020, "query": "Vertical alignment in tabularx X column type"}
{"query_id": 13526, "query": "Breaking table of contents between frames in beamer"}
{"query_id": 196673, "query": "How to typeset chapter heading on a page of its own with memoir"}
{"query_id": 15701, "query": "Relative positioning of nodes in TikZ"}
{"query_id": 82091, "query": "Can I re-use section labels across chapters?"}
{"query_id": 67712, "query": "Difference between administrative and user mode of MiKTeX"}
{"query_id": 74007, "query": "Mixing multiple programming languages with different styles in same document"}
{"query_id": 190900, "query": "Section, subsection and content"}
{"query_id": 162898, "query": "TOC: Distance between title and text"}
{"query_id": 94075, "query": "How to avoid the hyperlink on a particular \\ref"}
{"query_id": 33120, "query": "Should subscripts in math mode be upright?"}
{"query_id": 62028, "query": "When to use \\, { } or ~ to prohibit gobbling of a space following a macro"}
{"query_id": 22487, "query": "Create a symbol font from SVG symbols"}
{"query_id": 54881, "query": "Reference table rows by automatic counter"}
{"query_id": 12209, "query": "What is the proper way to cite a legal document?"}
{"query_id": 57911, "query": "What book do you recommend for new Tex users?"}
{"query_id": 124137, "query": "Bottom margin overflow while using a figure and a table"}
{"query_id": 88634, "query": "mdframed: size frame to content"}
{"query_id": 10024, "query": "How to hide LaTeX commands and keywords in a listing?"}
{"query_id": 193173, "query": "Looking for a bibstyle for biblatex I have never encountered"}
{"query_id": 89962, "query": "Rotating sidewaystable"}
{"query_id": 136151, "query": "Custom TOC in beamer - customizing the TOC layout"}
{"query_id": 197532, "query": "Typesetting \"LaTeX\" in LaTeX"}
{"query_id": 166808, "query": "Move tabular entry to bottom of row"}
{"query_id": 200803, "query": "Contents in pdf reader use a \"greeklish\" display when writing greek"}
{"query_id": 166803, "query": "combining multiple citations"}
{"query_id": 67720, "query": "Description list with aligned descriptions"}
{"query_id": 127643, "query": "Fix formatting errors of page number > 99 in table of contents?"}
{"query_id": 126795, "query": "Bibliography in LaTeX"}
{"query_id": 184670, "query": "Setting the space between fixed page header and float text block"}
{"query_id": 181162, "query": "How to get the rotate key to affect clickable regions produced with hyperref's \\hyperlink?"}
{"query_id": 22453, "query": "New map file with MikTeX"}
{"query_id": 149478, "query": "Set of real numbers in LaTeX"}
{"query_id": 169086, "query": "Why do we use a star (*) after a command in LaTeX?"}
{"query_id": 160260, "query": "To have a question mark over an arrow"}
{"query_id": 161590, "query": "String comparison in \\ifthenelse"}
{"query_id": 129819, "query": "How to install mathgifg package"}
{"query_id": 53561, "query": "Beamerposter scale parameter, text font size and title font size"}
{"query_id": 125459, "query": "Drawing arrows from one side of a rectangle to other nodes without suitable anchors"}
{"query_id": 126305, "query": "unkown option natbibapa for package apacite"}
{"query_id": 159281, "query": "What is the problem with this tikz-tree"}
{"query_id": 125455, "query": "How to have subscripts in bibliography"}
{"query_id": 116510, "query": "How to 'lengthen' a TikZ path"}
{"query_id": 87335, "query": "Configuring Decimal Separator in pgfplots"}
{"query_id": 89997, "query": "Why do we have something like \"-3.5ex \\@plus\u200e -\u200e1ex \\@minus\u200e -\u200e.2ex\" instead of a fixed value?"}
{"query_id": 171392, "query": "Function not plotted between 0 and 1"}
{"query_id": 10474, "query": "LaTeX baffled by BOM---Unicode's byte order mark."}
{"query_id": 76208, "query": "How do you increase the margin width of a latex document?"}
{"query_id": 171398, "query": "Checking a huge mathematical document with aspell"}
{"query_id": 171396, "query": "How to parametrize tex processing using command line?"}
{"query_id": 49924, "query": "TeX fonts in Windows"}
{"query_id": 49923, "query": "Accessing a style property in TikZ?"}
{"query_id": 113466, "query": "header and footer not appearing on first page of contents, list of figures and list of figures"}
{"query_id": 66884, "query": "tikz-qtree spoils tikz trees"}
{"query_id": 160259, "query": "raggedleft (right-aligned) entries in pmatrix?"}
{"query_id": 164611, "query": "Why am I getting a 'missing $ inserted' error?"}
{"query_id": 148158, "query": "Make a TikZ automata edge pass \"outside \" the automata"}
{"query_id": 98456, "query": "Let two things refer to the same footnote"}
{"query_id": 2184, "query": "Is there a command for large middle delimiters consistent with \\bigl and \\bigr?"}
{"query_id": 149483, "query": "mtpro package installation for MiKTeX"}
{"query_id": 30079, "query": "How to align picture top left in a table?"}
{"query_id": 171389, "query": "special circled frame number in beamer"}
{"query_id": 420, "query": "What's the absolute largest paper size permissible with pdflatex?"}
{"query_id": 106708, "query": "How can I improve my Turkish Small Capitals (lualatex)"}
{"query_id": 96271, "query": "--aux-directory simulation on Texlive"}
{"query_id": 114320, "query": "Trouble with cross referencing in the appendices"}
{"query_id": 116981, "query": "How to configure TeXnicCenter 2.0 with Sumatra (2013/2014 version)"}
{"query_id": 115652, "query": "Tikz: avoid two arcs in a graph being merged into one two-sided arrow"}
{"query_id": 29093, "query": "Lines too long due to text inside custom command not being hyphenated"}
{"query_id": 11333, "query": "Listings package not correctly showing PHP strings"}
{"query_id": 152641, "query": "LaTeX additional path"}
{"query_id": 14840, "query": "Environment for NOT compiling things"}
{"query_id": 197995, "query": "Weird pdflatex log output"}
{"query_id": 194484, "query": "How to use scalebox in captions?"}
{"query_id": 11336, "query": "Macro for figure position?"}
{"query_id": 47735, "query": "Script for LaTeX formula to image conversion"}
{"query_id": 66893, "query": "How to get () instead of [] in bibliography list?"}
{"query_id": 129882, "query": "Programmatically draw (and label) a triangle's angle"}
{"query_id": 138759, "query": "An external file with macros"}
{"query_id": 44221, "query": "Is there something like \"sidewayslongtable\"?"}
{"query_id": 98008, "query": "Is \\mathrm really preferable to \\text?"}
{"query_id": 67745, "query": "Remove citation from List of Figures"}
{"query_id": 129402, "query": "Biblatex-apa style is missing a comma in the text-citations. why?"}
{"query_id": 66896, "query": "\\ref Chapter Name in LaTeX"}
{"query_id": 69926, "query": "Style Completion in Texlipse not working"}
{"query_id": 23766, "query": "Suppress Fancy header and footer on first page only."}
{"query_id": 97154, "query": "Making Source Code Copyable with listings"}
{"query_id": 11305, "query": "Questionnaire template?"}
{"query_id": 170488, "query": "Columns and enumeration"}
{"query_id": 193125, "query": "How to write norm symbol with three line?"}
{"query_id": 31398, "query": "TikZ: Intersection of two lines"}
{"query_id": 52253, "query": "Problem when compiling tex file from Eurographics"}
{"query_id": 194458, "query": "Black Fill in my plot"}
{"query_id": 55760, "query": "Override TikZ externalize \"up-to-date\" flag"}
{"query_id": 11307, "query": "Is it possible to produce a PDF with un-copyable text?"}
{"query_id": 36609, "query": "Formatting section titles"}
{"query_id": 156191, "query": "How to write the path to the *. Bib at the natbib package?"}
{"query_id": 133074, "query": "How can a macro detect whether it is invoked in the beginning of a sentence?"}
{"query_id": 437, "query": "Line breaking (or hyphenation?) of references in apalike"}
{"query_id": 53107, "query": "Package repository down, how to relocate?"}
{"query_id": 170480, "query": "Show graph of references inside a document"}
{"query_id": 108951, "query": "How to convert remove page number?"}
{"query_id": 21598, "query": "How to color math symbols?"}
{"query_id": 24628, "query": "\"Font shape undefined\" with LaTeX and isodoc"}
{"query_id": 42038, "query": "List of Figures / Tables Prefixed with \"Figures\" or \"Tables\""}
{"query_id": 4386, "query": "Defining starred versions of commands (* macro)"}
{"query_id": 68601, "query": "How to quote an email address in Bibtex?"}
{"query_id": 162851, "query": "How to get rid of base 10 multiplier in pgfplots axis"}
{"query_id": 68605, "query": "Table with foot note"}
{"query_id": 99326, "query": "Set multicolumn width to default table width"}
{"query_id": 148576, "query": "Lyx+article document, image under title in front page"}
{"query_id": 153901, "query": "How do I compile tex chapters?"}
{"query_id": 126363, "query": "unroll equation macros"}
{"query_id": 22444, "query": "beamer headline"}
{"query_id": 147244, "query": "issues with generating a nomenclature with TexMaker"}
{"query_id": 21118, "query": "How to compile a document with EPS images using TeXnicCenter?"}
{"query_id": 68608, "query": "Update TikZ/PGF on mac"}
{"query_id": 96291, "query": "Smaller font sizes in second level of itemize/enumerate in beamer"}
{"query_id": 169006, "query": "Package biblatex error: Category 3 not declared ( \\endentry)"}
{"query_id": 31384, "query": "How to enter publications \"in press\", or \"submitted to\" in BibTeX?"}
{"query_id": 5226, "query": "Keyboard Font for LaTeX"}
{"query_id": 11311, "query": "How to include a document into another document?"}
{"query_id": 138778, "query": "How do I make Portable Document Format -- portable?"}
{"query_id": 168192, "query": "Add ebd. if there are several quotation from the same author"}
{"query_id": 55780, "query": "Disable month in biblatex bibliography?"}
{"query_id": 46868, "query": "biblatex sorting by date"}
{"query_id": 74053, "query": "Including Hebrew text in a non-Hebrew document (Babel not working)"}
{"query_id": 45539, "query": "\"Greater than\" sign shows up as inverted question mark"}
{"query_id": 46869, "query": "Argument of \\someCustomCommand has an extra } encountered when command is put in \\ul. How to fix this?"}
{"query_id": 97171, "query": "How to refer to number of items in a list before the list appears in the .tex file?"}
{"query_id": 13945, "query": "Cite in theorem environment argument"}
{"query_id": 11769, "query": "Box border lines not showing properly on PDF"}
{"query_id": 34400, "query": "babel package and lstlisting caption incompatibility"}
{"query_id": 37918, "query": "Back-referencing in LaTeX"}
{"query_id": 114376, "query": "XeLaTeX / XeTeX -- fontspec and ornaments/dingbats"}
{"query_id": 174867, "query": "Level of abstraction"}
{"query_id": 79759, "query": "Designing a fancy Wedding invitation card"}
{"query_id": 159246, "query": "Can the listings package highlight by regexp?"}
{"query_id": 55309, "query": "Outputting footnotes in a table"}
{"query_id": 23758, "query": "Font: Is British Baskerville typeface available in TeXLive 2010"}
{"query_id": 3070, "query": "Preparing PDF files for ebook readers, etc."}
{"query_id": 43346, "query": "How do I get sub-numbering for theorems (Theorem 1.A., Theorem 1.B., Theorem 2.)?"}
{"query_id": 161549, "query": "Scaling inline code to the current font size"}
{"query_id": 62087, "query": "How can I set the cell margins in a table?"}
{"query_id": 129851, "query": "Figure going too much into right in xelatex, not in latex"}
{"query_id": 65114, "query": "biblatex: separating publications of a specific author in the bibliography"}
{"query_id": 113027, "query": "Ghostscript Error \"undefined in H.S\""}
{"query_id": 137456, "query": "Adding to a pdf file the LaTeX code to generate it"}
{"query_id": 20241, "query": "How to use kile with feynmf or feynmp?"}
{"query_id": 106751, "query": "Can the result of `\\eqref{eq:einsten}` be something other than the default number?"}
{"query_id": 17078, "query": "Problem with the numeration appearing in the table of contents"}
{"query_id": 153920, "query": "wrong A4 pdf size"}
{"query_id": 97167, "query": "Align (center) header row in table"}
{"query_id": 160210, "query": "How do I get rid of the white space around included graphics?"}
{"query_id": 198809, "query": "Footnote number not showing"}
{"query_id": 66449, "query": "How to define different spaces below float and non float listing?"}
{"query_id": 47707, "query": "Biblatex, JEA style"}
{"query_id": 118717, "query": "Label in cyclic arrow diagram"}
{"query_id": 10448, "query": "Continuous footnote numbering"}
{"query_id": 115690, "query": "URLs in bibliography: LaTeX not breaking line as expected"}
{"query_id": 148108, "query": "KOMA: Page range in TOC chapter entry"}
{"query_id": 98492, "query": "Plotting a curve with different colors"}
{"query_id": 37907, "query": "Caption parbox 6.0 pt too wide"}
{"query_id": 193118, "query": "List of abbreviations for book class"}
{"query_id": 197958, "query": "How to break lines in a cell of table? a very long word contains \"::\" or \"_\""}
{"query_id": 141952, "query": "no space between words in equation"}
{"query_id": 150421, "query": "How to affect the vertical gap between the glossary's name and its body"}
{"query_id": 58829, "query": "How to use plot in a foreach loop into a single path?"}
{"query_id": 142801, "query": "How do others manage their footnotes?"}
{"query_id": 193594, "query": "Hyphenation in nomenclature"}
{"query_id": 37901, "query": "Draw dimension of a line as a decoration in TikZ"}
{"query_id": 87362, "query": "PNG DPI and image size"}
{"query_id": 32217, "query": "3 dots in matrix"}
{"query_id": 126293, "query": "How can I reduce spacing between parenthesis"}
{"query_id": 58390, "query": "Tables: Colouring odd/even mixed up"}
{"query_id": 74878, "query": "Create xkcd style diagram in TeX"}
{"query_id": 61561, "query": "How to refer to a definition at the end of the page?"}
{"query_id": 41954, "query": "listings bug: space after literate replacement lost with spaceflexible/fullflexible columns"}
{"query_id": 73542, "query": "Hide and reveal segments in PDF output of LaTeX"}
{"query_id": 116006, "query": "How to left align an equation, with a brace as left delimiter?"}
{"query_id": 26796, "query": "Latex removing \"Listing #\""}
{"query_id": 24136, "query": "natbib and hyperref for (Author, Year) style produces two links"}
{"query_id": 33095, "query": "Multi-OS Portable TeX system"}
{"query_id": 127145, "query": "Beamer Presentation: Figure has no number?"}
{"query_id": 27644, "query": "How can I add bibliography references which are not cited?"}
{"query_id": 162382, "query": "\\lstinline does not work with \\frame in beamer"}
{"query_id": 186355, "query": "How to draw linear inequalities in LaTeX"}
{"query_id": 472, "query": "How can I have two or more distinct indexes?"}
{"query_id": 142773, "query": "Double right arrow when typesetting Scala sources in LaTeX"}
{"query_id": 28973, "query": "miktex can't find udmj.cfg"}
{"query_id": 83355, "query": "Prevent figures from breaking lists, paragraphs and stay in current section"}
{"query_id": 83358, "query": "Need \"(eq. 1)\" style equation numbering"}
{"query_id": 120981, "query": "Tikz Matrix (alignment?)"}
{"query_id": 142775, "query": "Why here is a large gap between caption and next text? Can I fix it?"}
{"query_id": 39634, "query": "How to trim .tex for each filename read from an external file?"}
{"query_id": 168926, "query": "Latex Error File `x.sty` not found"}
{"query_id": 16996, "query": "Is it possible to have certain words in the document always in bold?"}
{"query_id": 108857, "query": "How does one reference a footnote for a second time?"}
{"query_id": 116492, "query": "Things written in \\thanks are indented. I don't want that"}
{"query_id": 103187, "query": "LyX White Space on Slide"}
{"query_id": 8301, "query": "Is there a circle symbol?"}
{"query_id": 9633, "query": "Why should I put a ~ before \\ref or \\cite?"}
{"query_id": 23298, "query": "Help on converting table to longtable"}
{"query_id": 24146, "query": "Blank pages header"}
{"query_id": 117328, "query": "Fancyhdr does not apply same header/footer on chapter and non-chapter pages"}
{"query_id": 163223, "query": "What is best convention for writing induction proofs in latex?"}
{"query_id": 188550, "query": "Warning: Difference (2) between bookmark levels is greater than one"}
{"query_id": 145812, "query": "using fbox in a newenvironment"}
{"query_id": 50440, "query": "DocumentClass Writing"}
{"query_id": 36114, "query": "Center nodes near coords in a stacked ybar plot"}
{"query_id": 13015, "query": "What package allows Elvish in TeX?"}
{"query_id": 30812, "query": "Two column glossary"}
{"query_id": 77900, "query": "How do I format the whole document in sans-serif?"}
{"query_id": 174356, "query": "Problem with \\psshadowbox"}
{"query_id": 69057, "query": "Ruby Code Highlight in Lyx / Latex"}
{"query_id": 121822, "query": "Best way to draw matchstick pictures"}
{"query_id": 133841, "query": "Separators for author group (IF conditon)"}
{"query_id": 94028, "query": "How to remove space between table and caption?"}
{"query_id": 132512, "query": "How to adjust the width of a wrap text sideways column header and width of a paragraph cell in tabular"}
{"query_id": 154302, "query": "References citation does not go in a new line"}
{"query_id": 74898, "query": "In graphics/graphicx, how to show actual pictures despite draft mode"}
{"query_id": 74897, "query": "Problem with pdfcomment and pdfsync"}
{"query_id": 97536, "query": "use of \\author after maketitle"}
{"query_id": 29802, "query": "biblatex and new line for DOI, URL and Eprint"}
{"query_id": 185000, "query": "Why does color cause a vertical shift?"}
{"query_id": 114293, "query": "Problem with abbreviated name of organizations with bibliography"}
{"query_id": 36109, "query": "Making TikZ nodes hyperlinkable"}
{"query_id": 14319, "query": "beamer: change individual bullet color for pros and cons list"}
{"query_id": 87737, "query": "fix position legend in pgfplot"}
{"query_id": 141465, "query": "Best compiler for writing a thesis?"}
{"query_id": 35257, "query": "How do you get two lines between nodes that have paths to each other instead of a double ended line?"}
{"query_id": 139157, "query": "What are the pros and cons of packages versus \\input for a preamble?"}
{"query_id": 60252, "query": "Tikz multiline node with center align"}
{"query_id": 196135, "query": "drawing some simple circular, rectangular and triangular shapes"}
{"query_id": 120966, "query": "Highlight \\verb in inline text"}
{"query_id": 196137, "query": "Ibid preceded by author"}
{"query_id": 103163, "query": "Line numbering with Lineno within Minipage"}
{"query_id": 17830, "query": "Using \\textsc{} within \\section{}"}
{"query_id": 6143, "query": "If Then Else for odd page/even page"}
{"query_id": 47225, "query": "How to remove double \"Contents\" heading generated by memoir?"}
{"query_id": 165428, "query": "How to seprate words into two lines in one cell?"}
{"query_id": 46376, "query": "Writing specific versions of an operator for display and inline modes"}
{"query_id": 98857, "query": "! LaTeX Error: File `arial.sty' not found"}
{"query_id": 133851, "query": "Fixing LaTeX errors \"Environment table undefined.\""}
{"query_id": 119968, "query": "URLs out of page margin"}
{"query_id": 71391, "query": "Latex: rowcolor in tabular not respecting table width"}
{"query_id": 120950, "query": "Preserve header in portrait location on landscape page"}
{"query_id": 164581, "query": "Is there a good reason to define helper macros second?"}
{"query_id": 184171, "query": "Trees with nodes consisting of multiple lines"}
{"query_id": 52641, "query": "More aesthetic (perhaps shallower) superscript check symbol"}
{"query_id": 51311, "query": "How to make sure that $ formula $ will be on one line?"}
{"query_id": 145838, "query": "Typesetting chemical element names"}
{"query_id": 16987, "query": "Command for horizontally flipped newline symbol"}
{"query_id": 44195, "query": "Placeholder for figure/includegraphics"}
{"query_id": 120958, "query": "Supress own name in citations for CV"}
{"query_id": 51799, "query": "Windows API error 5: \"Access is denied\" when trying to compile TikZ picture"}
{"query_id": 167607, "query": "Adding legends to tikzpicture"}
{"query_id": 153871, "query": "Writing equations in Miktex"}
{"query_id": 62453, "query": "Shortcuts using double quotes in combination with mathspec"}
{"query_id": 21065, "query": "Typesetting arabic with LuaLaTeX"}
{"query_id": 70074, "query": "How to connect two childs?"}
{"query_id": 73585, "query": "Translate the caption label \"algorithm\" in algorithm2e"}
{"query_id": 200427, "query": "strange page at end of multiple chapter document"}
{"query_id": 63789, "query": "Inserting an image in plain TeX"}
{"query_id": 70071, "query": "Texshop grammatic correction"}
{"query_id": 154729, "query": "Problem with Unicode in LaTeX editor (LEd)"}
{"query_id": 147198, "query": "combine png and tikz, scalingproblem"}
{"query_id": 151689, "query": "draw a piecewise function using PGF/TikZ"}
{"query_id": 195262, "query": "pdflatex error for TikZ externlization when using LuaLaTeX"}
{"query_id": 49873, "query": "Problem with image position on an empty page"}
{"query_id": 141886, "query": "Feynmp together with beamer"}
{"query_id": 38743, "query": "Checking if a number is a multiple of 4"}
{"query_id": 50476, "query": "Non superscript citations for figures"}
{"query_id": 49871, "query": "Footnote indent"}
{"query_id": 53986, "query": "package makeidx: print first letter for each group of keys"}
{"query_id": 109748, "query": "Beamer: Vertical alignment of multi-column ToC"}
{"query_id": 54838, "query": "changing font of one (or a small number of) text character only"}
{"query_id": 171297, "query": "problem running Tex on os 10.9.2"}
{"query_id": 175650, "query": "How to allow page break inside a float environment?"}
{"query_id": 8343, "query": "Is it possible to force beamer to automatically create frames for the excessive data (in long table)?"}
{"query_id": 11272, "query": "Faded drop-shadow using tikz-based rounded rectangle?"}
{"query_id": 160157, "query": "Using LuaTex / LuaLaTeX with Latexian on Mac"}
{"query_id": 198790, "query": "converting LaTex pdf into a powerpoint"}
{"query_id": 96214, "query": "How do I change text color?"}
{"query_id": 46357, "query": "How to suppress vertical space between theorem heads and enumitem environments?"}
{"query_id": 106256, "query": "Changing formatting URL biblatex verbose stile parentheses and Times New Roman Font"}
{"query_id": 130762, "query": "PRL style horizontal line in Latex"}
{"query_id": 23254, "query": "Latest MiKTeX-Update broke XeLaTeX with fontspec"}
{"query_id": 61136, "query": "Name collision in package development"}
{"query_id": 117379, "query": "In which folder should I copy the image (JPEG) so that it could be found?"}
{"query_id": 7008, "query": "Change hanging indent in description list"}
{"query_id": 16964, "query": "Block quote with big quotation marks"}
{"query_id": 151695, "query": "Creating shortcode"}
{"query_id": 17816, "query": "Commenting out large sections"}
{"query_id": 44171, "query": "Line break in table caption using beamer"}
{"query_id": 85590, "query": "Making one page landscaped and all other portrait, is that possible?"}
{"query_id": 9202, "query": "Externalize eps figure with TikZ"}
{"query_id": 103199, "query": "Encircle an arrow in TikZ"}
{"query_id": 104047, "query": "Custom Wraptable Environment"}
{"query_id": 163217, "query": "How to move axis multiplier in a polar plot in pgfplot"}
{"query_id": 172171, "query": "Remove extra vertical space in amsmath's align environment"}
{"query_id": 45497, "query": "How to write TikZ packages"}
{"query_id": 10391, "query": "How to embed fonts at compile time with pdflatex"}
{"query_id": 44165, "query": "Compressing consecutive footnote marks"}
{"query_id": 8357, "query": "How to have local package override default package"}
{"query_id": 127169, "query": "Brackets in citing-style?"}
{"query_id": 160187, "query": "Unicode Symbols"}
{"query_id": 163214, "query": "How to draw horizontal line within align and mhchem?"}
{"query_id": 25401, "query": "Arc between arrows in TikZ (automata library)"}
{"query_id": 26732, "query": "How to get a list of appendices?"}
{"query_id": 118695, "query": "Declare new command using another command with a name based on its input?"}
{"query_id": 33039, "query": "Using \\ttfamily with \\bfseries (or how to enable bold in fixed-width font)"}
{"query_id": 151229, "query": "Latex: obtain an empty row with central alignment"}
{"query_id": 35215, "query": "Using the amsbook Class"}
{"query_id": 173016, "query": "How to install Tikz package in Biditexmaker"}
{"query_id": 34367, "query": "beamer: frame without decorations, with custom margin"}
{"query_id": 25882, "query": "Reduce Spacing In $<a>$"}
{"query_id": 13423, "query": "How to change the color of \\href links... for real"}
{"query_id": 140578, "query": "Difference between text-height and text-depth in tikz?"}
{"query_id": 1719, "query": "Listings and continuation captions"}
{"query_id": 54854, "query": "Reference plain text"}
{"query_id": 85113, "query": "\\xRightarrow (text)"}
{"query_id": 85594, "query": "How to change color of edge of characters?"}
{"query_id": 54859, "query": "Range of Dates (1999-01 -- 2012-12)?"}
{"query_id": 173495, "query": "Figure as superscript in section title"}
{"query_id": 150390, "query": "Underfull \\hbox (badness 10000) in paragraph at lines 106--107"}
{"query_id": 153880, "query": "Why will Beamer Equation Killing Document"}
{"query_id": 193081, "query": "Paralist package breaks hyperref pdf links"}
{"query_id": 131637, "query": "No indentation for non-item within itemize"}
{"query_id": 32174, "query": "Listings package: How can I format all numbers?"}
{"query_id": 163682, "query": "Creating one .tex file form a structured large document"}
{"query_id": 87768, "query": "Headers and Footers"}
{"query_id": 32178, "query": "\\usepackage[turkish]{babel} and \\includegraphics inconcistency"}
{"query_id": 16943, "query": "Emphasize first line of paragraph in LaTeX"}
{"query_id": 45482, "query": "Reducing white space above date in Letter Class"}
{"query_id": 136099, "query": "\\citep not working if natbib is in the master file"}
{"query_id": 89941, "query": "How do I change the way section headings look?"}
{"query_id": 118680, "query": "Weird word spacing in latex"}
{"query_id": 1727, "query": "How do I make pages which were \"intentionally left blank\"?"}
{"query_id": 176991, "query": "How to print c for cos and s for sin in latex math"}
{"query_id": 108406, "query": "Undefined Control Sequence. 1.60 \\@writefi"}
{"query_id": 14769, "query": "Add more anchors to standard TikZ nodes"}
{"query_id": 176990, "query": "Closing a path with too sharps edges"}
{"query_id": 139121, "query": "documentclass{book} + mdframed + leftmargin"}
{"query_id": 134754, "query": "Strange interaction between `addlegendentry` and `y filter` in pgfplot"}
{"query_id": 106287, "query": "I can't save a tex file"}
{"query_id": 182831, "query": "Colored vertices on a directed graph with sets of Euler cycles"}
{"query_id": 50827, "query": "A simpleton's guide to (...)TeX workflow with emacs"}
{"query_id": 108464, "query": "Duplicate entries in index when using lowercase"}
{"query_id": 16597, "query": "Numbered section hidden from the ToC"}
{"query_id": 29425, "query": "Are there typographical systems that allow creating text which isn't always uniform?"}
{"query_id": 61964, "query": "Introducing special signs to cls file"}
{"query_id": 79252, "query": "pgfplots data time format"}
{"query_id": 6195, "query": "Typeset an = with an ! above"}
{"query_id": 55282, "query": "Display hyphenation options for a specific word"}
{"query_id": 81577, "query": "How to create my own TeX mathfont? Is there a certain method to realize the idea?"}
{"query_id": 140196, "query": "How to remove a frame from the total number of frames?"}
{"query_id": 168521, "query": "Spherical triangles and great circles"}
{"query_id": 81578, "query": "National flag using TikZ"}
{"query_id": 120104, "query": "Collectively aligning multiple align environments"}
{"query_id": 167675, "query": "\\include'd tables show up on separate pages. How can I fit them on a single page?"}
{"query_id": 84605, "query": "Programming with LaTeX3"}
{"query_id": 58798, "query": "Configuring latex to use serif font by default when in math mode"}
{"query_id": 21939, "query": "Glossaries: Make a glossary entry recognizable in printing"}
{"query_id": 30427, "query": "Simplest way to overlay a text + rectangle label an image?"}
{"query_id": 39237, "query": "Is it possible to fill in forms with pdfLaTeX or similar?"}
{"query_id": 50830, "query": "Do I have to care about bad boxes?"}
{"query_id": 3910, "query": "How to keep up with packages and know which ones are obsolete?"}
{"query_id": 118272, "query": "beamer : show time in real time"}
{"query_id": 112953, "query": "Error when using minted package and -output-directory option"}
{"query_id": 91363, "query": "Store and retrieve content across documents"}
{"query_id": 109328, "query": "How can I get legal style indentation on section, subsection, subsubsec.. using titlesec?"}
{"query_id": 88192, "query": "How to change fonts"}
{"query_id": 68127, "query": "Tabular with arrows or lines between some cells"}
{"query_id": 158717, "query": "Local colormaps in global coordinate system"}
{"query_id": 57474, "query": "How to get a small script letter s"}
{"query_id": 8384, "query": "How to make overlay still work inside lstlisting environment?"}
{"query_id": 28109, "query": "How can I place a one-column-abstract in a two-column document?"}
{"query_id": 83739, "query": "How to color and underline links on beamer slides?"}
{"query_id": 191790, "query": "Three dots above a symbol look weird"}
{"query_id": 192642, "query": "How to define a show/hidden switch?"}
{"query_id": 80231, "query": "How do I set the margins of a centered math expression?"}
{"query_id": 119117, "query": "Translate paragraph environment"}
{"query_id": 144568, "query": "natbib question: Johnson 1990a, b in order of appearance"}
{"query_id": 145416, "query": "How to have straight single quotes in lstlistings"}
{"query_id": 43719, "query": "How do I change the default font size?"}
{"query_id": 82891, "query": "How to avoid the extra box at the end of the handout created by pgfpages?"}
{"query_id": 177468, "query": "Why are minus signs not working in this equation?"}
{"query_id": 18788, "query": "No paragraph indentation everywhere, except for specific paragraphs"}
{"query_id": 30897, "query": "Changing the chapter style"}
{"query_id": 88199, "query": "Setup for producing multiple documents based on the same source file"}
{"query_id": 25070, "query": "Limits under multiple \\sum"}
{"query_id": 97937, "query": "What's the best option for creating a LaTeX poster?"}
{"query_id": 134772, "query": "\\left. \\middle/ \\right doesn't match height \"/\" with \\rule"}
{"query_id": 180633, "query": "Itemize environment too big for one frame in beamer"}
{"query_id": 132599, "query": "Placement of images in row using subfigure"}
{"query_id": 14395, "query": "Bold italic vectors"}
{"query_id": 57481, "query": "Aliasing issues using beamer with pdfLaTeX"}
{"query_id": 168544, "query": "How to get these symbols in LaTeX?"}
{"query_id": 168547, "query": "What is the nice FONT?"}
{"query_id": 80269, "query": "URL with % won't display in bibliography"}
{"query_id": 49014, "query": "Aligning equations with text with alignat"}
{"query_id": 50853, "query": "Problems building article with oolatex and hyperref"}
{"query_id": 148937, "query": "Why \\eqref is not working in sections of beamer?"}
{"query_id": 2607, "query": "Spacing around \\left and \\right"}
{"query_id": 30402, "query": "How to prevent contents of verbatim text from running off the page?"}
{"query_id": 100953, "query": "Tools for editing? Redlining? (TeXShop)"}
{"query_id": 153045, "query": "Insert the .tex file created through the knitter to main .tex file"}
{"query_id": 42851, "query": "Not breakable list across pages?"}
{"query_id": 136962, "query": "Bibliography with chapters by different authors in a book"}
{"query_id": 71312, "query": "Italics emphasis and punctuation"}
{"query_id": 18760, "query": "Add page and line numbers to a pdf"}
{"query_id": 108455, "query": "How to generate a table of trigonometric functions that can be broken across pages?"}
{"query_id": 20606, "query": "Export Latex to an png/pdf file"}
{"query_id": 61510, "query": "Sub-labeling in tabular environment"}
{"query_id": 36176, "query": "\\include puts everything on a new page"}
{"query_id": 9253, "query": "slashbox alternative"}
{"query_id": 31727, "query": "How to install PGF 2.10 in Ubuntu?"}
{"query_id": 161904, "query": "How to resize font of displayed formulas to automatically fit column width?"}
{"query_id": 177487, "query": "Left and right braces on different lines of align"}
{"query_id": 120558, "query": "Enable rectangle to have a 3-D vision"}
{"query_id": 147619, "query": "Algoritmic return command = 0"}
{"query_id": 177001, "query": "Float interference with lettrine.sty"}
{"query_id": 69473, "query": "Changing vspaces around section headings"}
{"query_id": 97918, "query": "Full reference inline in text"}
{"query_id": 155656, "query": "glossaries: including all items in a Glossary on TexniCenter"}
{"query_id": 186398, "query": "How to remove enumerated chapter latex in lyx"}
{"query_id": 41514, "query": "Minitoc is hiding things from me... how to discover them?"}
{"query_id": 41996, "query": "How do I split a date?"}
{"query_id": 132536, "query": "Straight bar Latex"}
{"query_id": 56176, "query": "Handling of wrapfig pictures in LaTeX"}
{"query_id": 79293, "query": "Zooming images out to specific locations in beamer"}
{"query_id": 110349, "query": "Any way to show LaTeX example code *and* execute it?"}
{"query_id": 86825, "query": "define a new Example environment"}
{"query_id": 59686, "query": "How to join two arrows with (TikZ)"}
{"query_id": 101864, "query": "Getting problem when inserting natbib"}
{"query_id": 17886, "query": "How can I see the \"implementation\" of the \\LaTeX command?"}
{"query_id": 124506, "query": "How can I insert a logo image as default in a template?"}
{"query_id": 3955, "query": "Is there a site where I can enter a latex expression, and it shows me an image of the compiled expression?"}
{"query_id": 69483, "query": "Create a local texmf tree in MiKTeX"}
{"query_id": 156971, "query": "Large whitespace at Springer journal template"}
{"query_id": 111664, "query": "Different margins for odd and even pages, but not mirrored with memoir"}
{"query_id": 13055, "query": "Four smaller pages in one page"}
{"query_id": 14386, "query": "Importing a Single Symbol From a Different Font"}
{"query_id": 89082, "query": "\\hspace vs. \\hspace*"}
{"query_id": 131696, "query": "beamer with title in citation"}
{"query_id": 156976, "query": "Displaying layout marks in a document set with different layouts"}
{"query_id": 41980, "query": "Defining a Color using another"}
{"query_id": 96613, "query": "How can I create a 3D Manhattan bar chart?"}
{"query_id": 131219, "query": "How to scale tikz drawing to paperwidth?"}
{"query_id": 21913, "query": "How can I change the footnote line (thickness, length)"}
{"query_id": 164112, "query": "Draw polygon surface within pentagon"}
{"query_id": 86806, "query": "store page number of current page into a variable and reuse it later"}
{"query_id": 164110, "query": "Having natbib.bst accessible on Mac OS X"}
{"query_id": 41504, "query": "loading tocloft makes \\ifdefined\\chapter TRUE in article class"}
{"query_id": 122314, "query": "Figures: What is the difference between using subfig or subfigure"}
{"query_id": 119158, "query": "Aligned equation which can break through pages"}
{"query_id": 21909, "query": "Classes and packages \u2013 what's the difference?"}
{"query_id": 152149, "query": "Finding the center of a multipart rectangle"}
{"query_id": 37004, "query": "Is there a way to force LaTeX to issue a warning if a figure is never referenced?"}
{"query_id": 16568, "query": "Get a thicker \\bar"}
{"query_id": 100542, "query": "How to extract the name of a macro?"}
{"query_id": 17899, "query": "How to obtain clear printed graphics with PCTeX v6"}
{"query_id": 132550, "query": "How can I vertically align the numerators of two fractions?"}
{"query_id": 153014, "query": "Failed to put two functions in one graph"}
{"query_id": 70013, "query": "How to get this font in the picture (\"MAX-MIN ant system\" italic curved font)"}
{"query_id": 155676, "query": "Is it possible to make \\usepackage depend on paper size?"}
{"query_id": 71341, "query": "Base a class on another class"}
{"query_id": 136918, "query": "How to modify horizontal spacing between equation elements globally, or for a single equation?"}
{"query_id": 108000, "query": "How to make this matrix in LaTeX?"}
{"query_id": 25489, "query": "How to configure fancyhdr depending on the document class"}
{"query_id": 35295, "query": "How can I number a few equations together"}
{"query_id": 128094, "query": "Is upgrading feature available for TeXLive 2013"}
{"query_id": 200049, "query": "natbib - authoryear citations displayed as brackets [1]"}
{"query_id": 28516, "query": "How to change the title of ToC?"}
{"query_id": 9283, "query": "Errors in matrix equation?"}
{"query_id": 142351, "query": "create a link to open another pdf, not in the current directory"}
{"query_id": 60216, "query": "How to create a squiggle arrow with some text on it in TikZ?"}
{"query_id": 100519, "query": "Using verbatim in a definition"}
{"query_id": 120120, "query": "Does TeXLive2013 need any special install instructions?"}
{"query_id": 146714, "query": "citation number after just the Theorem number"}
{"query_id": 28994, "query": "How to typeset \"evaluated at\" vertical bar with two conditions instead of one?"}
{"query_id": 119149, "query": "Writing \u00c6,\u00f8,\u00e5 using XeTeX"}
{"query_id": 191722, "query": "Prevent too many hyphens in a row"}
{"query_id": 38325, "query": "Equations, change the font size"}
{"query_id": 68172, "query": "How can I use different font color for h1 h2 h3 in latex template"}
{"query_id": 30848, "query": "Including different content based on whether xelatex or pdflatex is invoked"}
{"query_id": 179631, "query": "List of symbols and abbreviations just as two columns"}
{"query_id": 107167, "query": "LYX- Labelling Theorems,Lemmas"}
{"query_id": 107166, "query": "How can I write gujarati in LaTeX?"}
{"query_id": 110796, "query": "mdframed in two column book vertical alignment problem (first page only)"}
{"query_id": 14364, "query": "Cross-referencing between different files"}
{"query_id": 112970, "query": "X-Y plot with variable diameter points"}
{"query_id": 200058, "query": "Tikz, Tangent Line to a Circle"}
{"query_id": 140192, "query": "Reference equation in text latex"}
{"query_id": 86828, "query": "Array of linked list"}
{"query_id": 28528, "query": "Best way to install packages for TeXLive in Ubuntu?"}
{"query_id": 42812, "query": "3D bodies in TikZ"}
{"query_id": 122778, "query": "Left brace including several lines in eqnarray"}
{"query_id": 146723, "query": "How to typeset row operations on augmented matrix"}
{"query_id": 68182, "query": "how to change the style of the block environment in beamer?"}
{"query_id": 177444, "query": "Sequential \\frac that aren't nested"}
{"query_id": 107099, "query": "Force hyphen line-break one words with dieresis"}
{"query_id": 19347, "query": "Is there any package to automatically select font size and margins to optimize pages?"}
{"query_id": 45634, "query": "Printing labels along with equation numbers"}
{"query_id": 99019, "query": "Create two small box after text?"}
{"query_id": 101792, "query": "lstlisting and this symbol : \u2588"}
{"query_id": 109276, "query": "Hide frame's dot from the slide heading in beamer"}
{"query_id": 99495, "query": "] inside an optional argument"}
{"query_id": 115957, "query": "Listings: total line number count"}
{"query_id": 51084, "query": "Aligning trees built with tikzpicture"}
{"query_id": 54115, "query": "How to let \\part stay solo page and no page number"}
{"query_id": 112450, "query": "Smallcaps \"\u0110\" (\u0111) corrupted"}
{"query_id": 87034, "query": "How to search for the commands in TeX"}
{"query_id": 63060, "query": "Best documentclass to use for a dissertation/thesis"}
{"query_id": 132067, "query": "footnote won't show up in my document"}
{"query_id": 42114, "query": "Why should the minimal class be avoided?"}
{"query_id": 184507, "query": "Problems with header and footer in documentclass book"}
{"query_id": 68768, "query": "texmaker 3.5 miktex portable 2.9 and epstopdf"}
{"query_id": 185836, "query": "How can I make this kind of table in Latex?"}
{"query_id": 148893, "query": "Package BibLaTeX error: incompatible package 'ucs' \\begin{document}"}
{"query_id": 168480, "query": "Why does TeX prefer an overfull box to hyphenating here?"}
{"query_id": 147563, "query": "Wrong autodetection of biblatex backend"}
{"query_id": 168001, "query": "Since few days: Trouble with mhchem using \\listoftables or \\listoffigures"}
{"query_id": 169332, "query": "Simple newline in equation"}
{"query_id": 196963, "query": "Section Numbering in \"Convex Optimizaion\" by Boyd et. al. with Koma Script"}
{"query_id": 34973, "query": "How to extend TikZ drawing commands"}
{"query_id": 3522, "query": "Conditionally include a package"}
{"query_id": 122235, "query": "set fontsize for TikZ figure"}
{"query_id": 31462, "query": "Adding chapter marker to far right edge of page"}
{"query_id": 136430, "query": "Compiling multi-file LaTeX file"}
{"query_id": 134252, "query": "Is there a way to partially evaluate TeX files?"}
{"query_id": 91517, "query": "How to make the tick thickness as the axis line?"}
{"query_id": 172970, "query": "Center \\leq, \\geq, = with different text above"}
{"query_id": 79408, "query": "IEEEtran - Large white space between bibliography and author biographies"}
{"query_id": 29152, "query": "How would you produce the following exact hexagon?"}
{"query_id": 89686, "query": "nodes structure like file system"}
{"query_id": 159531, "query": "Indentation in verse environment"}
{"query_id": 88354, "query": "Index entries duplicated for captions"}
{"query_id": 110248, "query": "Any package for typesetting polyominos/tetris-like shapes?"}
{"query_id": 68775, "query": "TeX typesetting algorithms for web sites"}
{"query_id": 95911, "query": "Citation undefined and list of references not appearing"}
{"query_id": 160549, "query": "Compiling Legrand Orange Book template"}
{"query_id": 44766, "query": "Is there any (official) convention in mathematics typesetting?"}
{"query_id": 135587, "query": "Wrap text around non rectangular image"}
{"query_id": 44760, "query": "Using image overlay simultaneously with text in multicolumn mode beamer"}
{"query_id": 65268, "query": "Moving tiles of the pattern in TikZ"}
{"query_id": 134256, "query": "How to implement a template for math journal?"}
{"query_id": 17143, "query": "How do I get Korean (Hangul) characters to typeset in LaTeX ?"}
{"query_id": 169360, "query": "Contents section number and name clashing. Want to increase spacing"}
{"query_id": 107074, "query": "Arcing arrow and keeping proper arrow head orientation"}
{"query_id": 20799, "query": "Side by side images problem"}
{"query_id": 174703, "query": "Using enumerate environment within a theorem environment"}
{"query_id": 78101, "query": "When and why should I use % !TEX TS-program and % !TEX encoding?"}
{"query_id": 5718, "query": "Package for pie charts"}
{"query_id": 10515, "query": "Converting pdf to LaTeX?"}
{"query_id": 1357, "query": "Rounded corners in TikZ trees."}
{"query_id": 81750, "query": "Auto-breaking of Equation"}
{"query_id": 148898, "query": "Creating a table in LaTex with the following style"}
{"query_id": 89237, "query": "Can't Left Align Date with newlfm.cls"}
{"query_id": 100434, "query": "Centering figure captions in IEEEtran"}
{"query_id": 10510, "query": "Cite in the caption of a graphic but not in \\listoffigures?"}
{"query_id": 115926, "query": "How do I get two different chapters with same number, and compatible references (using hyperref)?"}
{"query_id": 22988, "query": "Multicolumn listing for comparison in LaTeX"}
{"query_id": 113745, "query": "Opaque error messages given by common environments"}
{"query_id": 113744, "query": "PPTX to TeX converter"}
{"query_id": 139958, "query": "Dimension too large in TikZ"}
{"query_id": 111565, "query": "How to force a figure and a table to stay on the same page in LaTeX?"}
{"query_id": 161862, "query": "Fill area between curves"}
{"query_id": 185814, "query": "Renew math operator"}
{"query_id": 81739, "query": "the memory dump file could not be found"}
{"query_id": 115921, "query": "Wrong numeration in toc longer then one page"}
{"query_id": 55472, "query": "How to make text aligned left/center/right in the same line?"}
{"query_id": 60813, "query": "How to create trapezoidal multicols?"}
{"query_id": 194764, "query": "Highlighting labels of undefined citations?"}
{"query_id": 171664, "query": "Make left-hand pages' `\\marginpar` text right-aligned"}
{"query_id": 78578, "query": "Longtable: page breaks within row possible?"}
{"query_id": 79425, "query": "Included pdf (wallpaper, or includegraphics) has different colors"}
{"query_id": 940, "query": "What professions use TeX/LaTeX besides CS?"}
{"query_id": 98170, "query": "center /verbatim text in /figure"}
{"query_id": 78579, "query": "Labelled in-line equation"}
{"query_id": 35809, "query": "How do I use APA-style citations with BibTeX?"}
{"query_id": 63092, "query": "New line instead of word-breaking"}
{"query_id": 196940, "query": "Beamer - rounded corners around blocks and footnotes"}
{"query_id": 34956, "query": "Problematic interaction between fontspec and beamer?"}
{"query_id": 11853, "query": "TeXworks: How to add a word to the spell checker dictionary?"}
{"query_id": 182753, "query": "hyperref-link-spans-a-pagebreak-looks-ugly"}
{"query_id": 135524, "query": "Where can I find this CV template"}
{"query_id": 44741, "query": "Globally customizing the style of figure captions"}
{"query_id": 157312, "query": "How can I use align inside itemize without a newline?"}
{"query_id": 133343, "query": "TeXMaker on Windows: \"Could not start the command\""}
{"query_id": 14098, "query": "LaTeX from Scientific Workplace"}
{"query_id": 41237, "query": "Labeling a function's plot generated by \"plot function\""}
{"query_id": 168450, "query": "How can I create a 'little subtitle' for a section?"}
{"query_id": 82615, "query": "Genogram or family tree with PGF/TikZ"}
{"query_id": 91570, "query": "Bibliography with biblatex: how to achieve bold labels using the authoryear-style?"}
{"query_id": 166267, "query": "multiple citation with specific pages biblatex-apa"}
{"query_id": 103529, "query": "Line breaking and long URL strings"}
{"query_id": 145321, "query": "\\raggedleft having no effect in group"}
{"query_id": 78124, "query": "What is the equivalent for ([nodesep=10pt]{B}A) in TikZ?"}
{"query_id": 57662, "query": "How to have nested mdframes with different frame titles"}
{"query_id": 164093, "query": "Place section header outside multicols environment"}
{"query_id": 147508, "query": "Longtable breaking lists in a cell"}
{"query_id": 34946, "query": "How can I put lstlisting block into subfloat block?"}
{"query_id": 154295, "query": "Latex Table Border gets bleached to grey with cell coloring"}
{"query_id": 44731, "query": "I'm having trouble with \\includegraphics I'm using MacTeX"}
{"query_id": 176062, "query": "How can I align two captions?"}
{"query_id": 160956, "query": "Beamer sidebar font problem"}
{"query_id": 69653, "query": "tabular multirow un-indent the first line"}
{"query_id": 132022, "query": "Glue at the top of the page is ignored"}
{"query_id": 4420, "query": "Best Way to Start Using LaTeX/TeX?"}
{"query_id": 103541, "query": "Global label in a LaTeX \u201calign\u201d"}
{"query_id": 39380, "query": "What exactly do \\csname and \\endcsname do?"}
{"query_id": 20789, "query": "TeX accents do not seem to work with fontspec and xe/lua/latex"}
{"query_id": 1390, "query": "Latin Modern vs cm-super?"}
{"query_id": 44737, "query": "Draw a path with dashed start and solid end"}
{"query_id": 10987, "query": "Two types of footnotes"}
{"query_id": 147515, "query": "How to use BibTex with TexWorks?"}
{"query_id": 169763, "query": "Need to represent information about a matrix, attached image showing what is needed"}
{"query_id": 147517, "query": "How to cross-reference a list of sub figures at once?"}
{"query_id": 80436, "query": "Testing for commercial at (@) in a string"}
{"query_id": 194745, "query": "How to draw a punchcard in Latex"}
{"query_id": 55017, "query": "Alignment of multiline STATE in algorithm"}
{"query_id": 161809, "query": "Why is unicode-math not working with TikZ?"}
{"query_id": 65293, "query": "Style question: serif or sans fonts in figure and chart text?"}
{"query_id": 101359, "query": "Equation number too close to my equation"}
{"query_id": 156463, "query": "Biber Installation Corrupted?"}
{"query_id": 32756, "query": "inserting sentences between subequations"}
{"query_id": 72815, "query": "How to upload C code into latex appendix section"}
{"query_id": 180552, "query": "How to set single line spacing in TexMacs"}
{"query_id": 16251, "query": "How to obtain width of longtable?"}
{"query_id": 93779, "query": "Sum up rows from different data files"}
{"query_id": 4430, "query": "How to embed screenshots properly?"}
{"query_id": 134213, "query": "How to handle more than 9 parameters in Kiviat Diagrams?"}
{"query_id": 7941, "query": "What causes latex.exe to be unable to import *.jpg, *.png, *.pdf directly?"}
{"query_id": 87091, "query": "different font while using url"}
{"query_id": 54170, "query": "block with out title space in a specific position and certain length (Title box in a poster)"}
{"query_id": 124453, "query": "Connecting subplots"}
{"query_id": 120092, "query": "Horizontal placement of footnotes in beamer"}
{"query_id": 79474, "query": "proof format 2 columns"}
{"query_id": 128809, "query": "Is any downside in using align instead of \\[...\\]?"}
{"query_id": 167136, "query": "Classicthesis, remove [date, time - version #]"}
{"query_id": 168468, "query": "Force printing of all Acronyms, even those that have NOT been mentioned in the text"}
{"query_id": 27388, "query": "Combining Typefaces"}
{"query_id": 116830, "query": "Polar Plot x and y ticks and units"}
{"query_id": 112473, "query": "Why do I get a black rectangle instead of my external picture?"}
{"query_id": 94618, "query": "Clash between TIKZ and French Babel"}
{"query_id": 80460, "query": "Expression under summation on multiple lines"}
{"query_id": 7938, "query": "pdflatex, \\includegraphics, and multi-page PDF files"}
{"query_id": 16262, "query": "Commutative diagram with rounded arrows"}
{"query_id": 43864, "query": "TeXnicCenter & Adobe Acrobat 10"}
{"query_id": 95946, "query": "Change of column"}
{"query_id": 160971, "query": "Rectangle node with given coordinates in tikz"}
{"query_id": 54180, "query": "How do I write something at the end of the slide in beamer?"}
{"query_id": 58540, "query": "highlight lines in listings"}
{"query_id": 3592, "query": "Footnote separator"}
{"query_id": 37181, "query": "Linebreak in Package algorithm2e"}
{"query_id": 169786, "query": "! TeX capacity exceeded, sorry [main memory size=5000000]"}
{"query_id": 55036, "query": "Package listings: Error \"Undefined control sequence.\" because of single-quote-symbol?"}
{"query_id": 57698, "query": "tlmgr: TeX Live 2011 is frozen forever"}
{"query_id": 49168, "query": "Headers in book format"}
{"query_id": 95936, "query": "Create curved TikZ single arrow"}
{"query_id": 159993, "query": "package Update failure"}
{"query_id": 30555, "query": "LaTeX: Show return symbol at url line break"}
{"query_id": 51910, "query": "Calling an external script from LyX"}
{"query_id": 26958, "query": "How to put one big image on each page"}
{"query_id": 99416, "query": "LaTeX source code listing with less space between characters"}
{"query_id": 10130, "query": "Use the values of \\title, \\author and \\date on a custom title page"}
{"query_id": 48741, "query": "Temporarily increase line spacing"}
{"query_id": 74114, "query": "\\( \\) don't work with TOC?"}
{"query_id": 127542, "query": "How to keep the line cap when clipping a path?"}
{"query_id": 148003, "query": "\\citet and \\citep in TeXstudio using natbib"}
{"query_id": 95058, "query": "Error: TexStudio \"Could not start command\""}
{"query_id": 168098, "query": "Referring to correctly-styled algpseudocode procedure name in document"}
{"query_id": 22598, "query": "How to highlight keywords?"}
{"query_id": 162780, "query": "Redirecting *.aux, *.log files, with a command in the tex file"}
{"query_id": 27802, "query": "Set noindent for entire file"}
{"query_id": 97232, "query": "Automatically change \u00e9 to \\'e \u2013 most convenient setup for accented letters?"}
{"query_id": 13649, "query": "Portable minimal distribution"}
{"query_id": 510, "query": "Are \\( and \\) preferable to dollar signs for math mode?"}
{"query_id": 197407, "query": "I want to left-align the following equation. I don't want that to be centred"}
{"query_id": 50156, "query": "Add access date to custom bibliography style created with makebst"}
{"query_id": 176940, "query": "Text over symbols, but with adjusting width ( something like \\stackrel{#1}{#2} but with same size)"}
{"query_id": 76304, "query": "Installation of packages"}
{"query_id": 14974, "query": "Exporting all equations from a document as individual svg files"}
{"query_id": 79816, "query": "Determine OS in which the TeX compilation is taking place"}
{"query_id": 88764, "query": "how to use \\loop ... \\repeat to generate an arbitrary number of rows in a table"}
{"query_id": 136024, "query": "extra line in table of figures"}
{"query_id": 37613, "query": "How can I let a footnote continue on the next page?"}
{"query_id": 51009, "query": "how to fix the width of the columns in the latex table?"}
{"query_id": 10138, "query": "Change section fonts"}
{"query_id": 86581, "query": "Access from included files to environments in AUCtex"}
{"query_id": 35439, "query": "Make all \\begin{quote} ... \\end{quote} blocks single spaced with setspace?"}
{"query_id": 37616, "query": "Can I let a listing move up two lines without introducing a break in a paragraph?"}
{"query_id": 61291, "query": "How to put caption beside?"}
{"query_id": 100071, "query": "Create a footnote in a node in a tikzpicture"}
{"query_id": 84391, "query": "change space to only a part of the document"}
{"query_id": 183258, "query": "How to add dash lines in Matrix"}
{"query_id": 163625, "query": "How to prevent the borders of colored cell from disappear"}
{"query_id": 98554, "query": "How to increase space between bibliography without using biblatex"}
{"query_id": 65658, "query": "Why doesn't cleveref's \\namecref work?"}
{"query_id": 147167, "query": "How to sort references in alphabetical order?"}
{"query_id": 149342, "query": "Importing A pdf Image"}
{"query_id": 14506, "query": "pgfplots: prevent single plot from being listed in legend"}
{"query_id": 50162, "query": "How to make a standalone document with one equation?"}
{"query_id": 174754, "query": "Listing causes strange vertical spaces when put it on the next page"}
{"query_id": 32397, "query": "Externalising TikZ pictures using XeTeX"}
{"query_id": 114223, "query": "Is there a way to use different local font files for different font size in fontspec?"}
{"query_id": 174757, "query": "Using \\\\ to Start New Line"}
{"query_id": 52343, "query": "Multi-line brackets in align"}
{"query_id": 89603, "query": "Horizontal enumeration in multiple columns"}
{"query_id": 113376, "query": "Click on package name to open corresponding style file?"}
{"query_id": 150321, "query": "suppressing dashes in bibliography"}
{"query_id": 193050, "query": "Rendering a pdf in a different location, from a standalone tex-file that combines several chapters"}
{"query_id": 46551, "query": "How to create a document wide table style for border"}
{"query_id": 5787, "query": "Table of contents with page style empty"}
{"query_id": 87424, "query": "How to implement a \\tomorrow in latex"}
{"query_id": 107933, "query": "Compare two comma separated lists"}
{"query_id": 74139, "query": "conditional usepackage given documentclass"}
{"query_id": 8830, "query": "In beamer use colors that are already defined in a given color scheme"}
{"query_id": 123164, "query": "Possible LuaLaTeX Problem (compilation seems to hang)"}
{"query_id": 115534, "query": "align separate equations"}
{"query_id": 2297, "query": "Can't include a picture in pdf using \\includegraphics command"}
{"query_id": 164982, "query": "XeTeX and miriad \"Missing character\" messages in log file"}
{"query_id": 99430, "query": "Center alignment of tikzpicture outside figure environment without vertical space"}
{"query_id": 180195, "query": "Problem with footnote in captionof"}
{"query_id": 98101, "query": "How can I draw angles only with the outer line, but not with the line to the center?"}
{"query_id": 154708, "query": "How can one install biber on miktex 64-bit?"}
{"query_id": 2291, "query": "How do I change the `enumerate` list format to use letters instead of the default Arabic numerals?"}
{"query_id": 66519, "query": "Make each frame (not slide) appear in the PDF bookmarks with beamer"}
{"query_id": 53681, "query": "Latex not showing pictures"}
{"query_id": 142710, "query": "Dos and Don'ts of \\countdef\\mycount=<number> and \\newcount vs \\newcounter{} in LaTeX"}
{"query_id": 22570, "query": "Automatically index acronyms"}
{"query_id": 117720, "query": "How to compute a length and set a text width with pgf"}
{"query_id": 151665, "query": "What's the shortest input that makes TeX and/or TeX-based systems go into a loop?"}
{"query_id": 87459, "query": "Wrong pgfplots plot for function with vertical asymptote"}
{"query_id": 12773, "query": "\"(\" or \"\\left(\" parentheses?"}
{"query_id": 141865, "query": "Figure out the width of each column"}
{"query_id": 47871, "query": "What is the problem with characters < and > in PDF display?"}
{"query_id": 83098, "query": "Vertical braces spanning multiple items in an ennumeration-like environment"}
{"query_id": 101367, "query": "TimesNewRoman font in Latex"}
{"query_id": 103546, "query": "How do I configure a \\ref of a \\label to print more than just the number?"}
{"query_id": 44361, "query": "How to automatically hyphenate within \\texttt?"}
{"query_id": 171275, "query": "Put two figures side by side"}
{"query_id": 62162, "query": "Latex margins, need specific advice for publishing specifications"}
{"query_id": 144908, "query": "How can I make a reference to a Glossary that typesets as \\glossarytoctitle?"}
{"query_id": 47865, "query": "Make a LaTeX document look like it was written in Microsoft Word"}
{"query_id": 160137, "query": "Is there any way to get something like pmatrix with customizable grid lines between cells?"}
{"query_id": 18089, "query": "Are there any command for producing the BibTeX logo?"}
{"query_id": 130740, "query": "How to draw a closed curve around a set of points/nodes keeping a minimum distance?"}
{"query_id": 43024, "query": "\\section{} results in 0.1, not in 1.0"}
{"query_id": 153843, "query": "Citation reference inside bibliography text style"}
{"query_id": 160132, "query": "Make specific author bold using biblatex without consistent author formatting"}
{"query_id": 148036, "query": "subsection font size with beamer theme Warsaw"}
{"query_id": 95068, "query": "place symbol or some command on page break within lstlisting"}
{"query_id": 161464, "query": "Are mouse over definitions of acronyms possible?"}
{"query_id": 123151, "query": "TikZ code doesn't compile anymore"}
{"query_id": 186740, "query": "Bibliography URLs missing part when using lmodern"}
{"query_id": 33226, "query": "How to cross-reference theorems with \"Theorem\"?"}
{"query_id": 50182, "query": "Subtitle with the \\maketitle page?"}
{"query_id": 32378, "query": "xfrac + siunitx gives me a font warning"}
{"query_id": 176954, "query": "How to reset the list of authors"}
{"query_id": 76312, "query": "Bibtex reference capitalisation concerning surname additions (van, van der, 't, etc)"}
{"query_id": 89626, "query": "Marks like \"\u00ab\u00bb\""}
{"query_id": 126654, "query": "lstlistoflistings isn't showing the lstlistingname"}
{"query_id": 142723, "query": "Defining \"#1\" as \\text{#1} in math mode"}
{"query_id": 150343, "query": "\\rowcolors causes missing vertical lines"}
{"query_id": 56729, "query": "Where should I insert \\setcounter{secnumdepth}{3}?"}
{"query_id": 6655, "query": "Split Journal Paper into Multiple Parts"}
{"query_id": 151673, "query": "ToC and lists of theorems (XeLaTeX)"}
{"query_id": 4491, "query": "What is the status of pdfsync?"}
{"query_id": 128431, "query": "poster with two logos on LHS and RHS"}
{"query_id": 46522, "query": "Frame around a page latex"}
{"query_id": 135127, "query": "Why am I receiving an undefined control sequence for my equation?"}
{"query_id": 66533, "query": "Implicit newline at the end of each paragraph?"}
{"query_id": 66536, "query": "pgfplots quadrics"}
{"query_id": 65207, "query": "Selective numbering of equations with align"}
{"query_id": 147592, "query": "To have nice tabbed text next to equations?"}
{"query_id": 149770, "query": "Format first row of table differently"}
{"query_id": 22556, "query": "Suppress black box at end of line"}
{"query_id": 13606, "query": "Automatically number a description list"}
{"query_id": 31038, "query": "Numbering theorems within the innermost sectioning environment present at that point in the document?"}
{"query_id": 117300, "query": "Insert pictures HERE"}
{"query_id": 33696, "query": "No section numbers, but still have PDF bookmarks with hyperref"}
{"query_id": 13608, "query": "Problem with losing some table borders when using colors"}
{"query_id": 137310, "query": "Formatting menu-sequences in a program's user manual?"}
{"query_id": 173873, "query": "Flushright or left of a long Table"}
{"query_id": 63030, "query": "Change color and background behind text of all 'description' environments"}
{"query_id": 107981, "query": "How to create multicolumn with a diagonal line"}
{"query_id": 103142, "query": "Vim Latex \\cite autocomplete <++>"}
{"query_id": 107983, "query": "How to make pdf show current date?"}
{"query_id": 8863, "query": "How to fix error \"ruby.exe seems not to be installed\" in Windows 7 where both Miktex 2.9 and Ruby have been installed?"}
{"query_id": 200952, "query": "how can i add title , four author with affiliation in the same line and running head"}
{"query_id": 68727, "query": "Fractals with LaTeX"}
{"query_id": 180183, "query": "How can I use mathematical symbols and other special characters in URLs in footnotes?"}
{"query_id": 3176, "query": "How can I left-align a caption?"}
{"query_id": 43008, "query": "Absolute Value Symbols"}
{"query_id": 45669, "query": "Open right for front matter"}
{"query_id": 46519, "query": "How can I typeset an extra-long \\textbar?"}
{"query_id": 125393, "query": "Separating plural possessive apostrophe from closing double-quote"}
{"query_id": 76330, "query": "Removing comma after last name in the last-first biblatex macro"}
{"query_id": 171686, "query": "\"n.d.[a]\" missing in bibliography"}
{"query_id": 33202, "query": "National characters in URLs not working with hyperref"}
{"query_id": 51053, "query": "Is there a Copy-and-Paste List of Popular Statistical Formulas in LaTeX?"}
{"query_id": 170358, "query": "biblatex: different bibstyles in the same document?"}
{"query_id": 88798, "query": "Spurious whitespace in caption"}
{"query_id": 5348, "query": "How would you do Karnaugh's maps in LaTeX or ConTeXt?"}
{"query_id": 103138, "query": "How do I insert a new line within a subscript block?"}
{"query_id": 12761, "query": "How to specify a fixed height for all rows in a table?"}
{"query_id": 85289, "query": "TeX4ht with Natbib, missing citations"}
{"query_id": 13614, "query": "combining existing symbols"}
{"query_id": 14945, "query": "bottomrule not working in a self-made environment"}
{"query_id": 56747, "query": "How will I align two words right and left in same line?"}
{"query_id": 88794, "query": "Difference between \\mathrm, \\operatorname and \\text?"}
{"query_id": 170351, "query": "tabular not move on the next page?"}
{"query_id": 194344, "query": "Symbol for definition :="}
{"query_id": 10104, "query": "Two bibliographies with two different styles in the same document"}
{"query_id": 67881, "query": "Resetting mathcal font to default"}
{"query_id": 7542, "query": "For formal articles, should a displayed equation be followed by a punctuation to conform to the language grammar ?"}
{"query_id": 126234, "query": "Aligning long entries in LOF using tocloft package"}
{"query_id": 23862, "query": "Move biblatex label into margin"}
{"query_id": 149790, "query": "How to use more than one document class"}
{"query_id": 185840, "query": "Multiple rows of equations"}
{"query_id": 153818, "query": "How to choose an algorithm environment?"}
{"query_id": 58931, "query": "latex: Undefined control sequnce"}
{"query_id": 76363, "query": "Draw centered label above arc in TikZ"}
{"query_id": 196975, "query": "Personal counter is unintended reset after itemize environment"}
{"query_id": 114253, "query": "How do I reference an online image from a LaTeX document?"}
{"query_id": 33673, "query": "Remove dots for chapters in ToC with memoir"}
{"query_id": 56751, "query": "How will I right align the chapter/section/subsection?"}
{"query_id": 87019, "query": "List of figures: numbers overlap image caption"}
{"query_id": 104436, "query": "equations that are too large to fit on one line"}
{"query_id": 91505, "query": "How to extend the text under summation symbol without making extra space"}
{"query_id": 140509, "query": "How to create an alert box with a figure to the left?"}
{"query_id": 26903, "query": "Spell check for miktex"}
{"query_id": 66562, "query": "How to set page counter by skipping first page?"}
{"query_id": 63057, "query": "Is there a guide to the various theorem packages?"}
{"query_id": 112058, "query": "Table of Contents for set of PDF files"}
{"query_id": 44795, "query": "Automatically stretch table to evenly fill horizontal space?"}
{"query_id": 112057, "query": "How to get rid of italic in the table of contents?"}
{"query_id": 176919, "query": "What is the purpose of the \"fig:myFig\" when using subfigures?"}
{"query_id": 98134, "query": "Is it possible to scale an entire \\begin{figure}?"}
{"query_id": 54101, "query": "Two minipages with 0.5\\textwidth each get placed one below another"}
{"query_id": 195659, "query": "how to use special utf-8 characters in submodules?"}
{"query_id": 191292, "query": "Enumeration horizontally"}
{"query_id": 7546, "query": "How to get \"LaTeX\" symbol in document"}
{"query_id": 137345, "query": "Omitting fields in Bibliography"}
{"query_id": 87488, "query": "Verbatim environment inside footnote"}
{"query_id": 103118, "query": "Automatic calculation of error in pgfplots"}
{"query_id": 141835, "query": "Wanting to write units properly"}
{"query_id": 29173, "query": "Can I detect (from within a macro) if I'm in an \\edef (or similar)?"}
{"query_id": 192143, "query": "Is there a way to know how often latex has already run?"}
{"query_id": 29172, "query": "Link to file in the parent folder"}
{"query_id": 94126, "query": "Change font to only section and subsection of my document"}
{"query_id": 71007, "query": "How to display two (or more) footnotes consecutively?"}
{"query_id": 129202, "query": "How can I make compilation more quiet by removing \"LaTeX Warning\" messages from the log?"}
{"query_id": 38421, "query": "Right-to-left text in LaTeX - reversed numbers and parentheses"}
{"query_id": 128358, "query": "Change display style in enumerate"}
{"query_id": 74511, "query": "Is there a way make a custom default document style in LaTeX?"}
{"query_id": 7566, "query": "Is there a way to draw 3D-style \"buttons\"?"}
{"query_id": 115039, "query": "Single link in (Author, Year) citation style using natbib and hyperref"}
{"query_id": 24256, "query": "How typeset a numeric table from a CSV file"}
{"query_id": 131525, "query": "\\documentclass[10pt, a4paper]{article} not working properly"}
{"query_id": 133708, "query": "tlmgr does not execute an update"}
{"query_id": 25105, "query": "Unable to link to inserted pages with pdfpages"}
{"query_id": 34063, "query": "figure span to one column on double column page"}
{"query_id": 28618, "query": "Enumerated list indentation"}
{"query_id": 35391, "query": "Is this a fontspec bug or a font bug"}
{"query_id": 186240, "query": "Replace period with colon after year with biblatex to approximate ametsoc guidelines"}
{"query_id": 111919, "query": "Custom cross-reference formats (e.g. \"Equation 1\" instead of just \"1\")"}
{"query_id": 178602, "query": "Beamer Theme Customization"}
{"query_id": 106559, "query": "Filling the arrow tip and not the path using two different colors"}
{"query_id": 150278, "query": "imported table positioning"}
{"query_id": 150275, "query": "Two calls to cycle, only one appears to work. Why?"}
{"query_id": 52732, "query": "Prevent LaTeX from splitting footnotes across two pages"}
{"query_id": 38427, "query": "Custom alignment of columns in align environment"}
{"query_id": 173390, "query": "BibTeX generating \"\\BIBentryALTinterwordspacing ------\" in BBL file using IEEEtran.bst"}
{"query_id": 108755, "query": "Compiling .dtx file to .sty"}
{"query_id": 186249, "query": "Force 'openany' half way through document"}
{"query_id": 130686, "query": "footmisc hang and multiple only work with english document langage"}
{"query_id": 162258, "query": "VIM default language for tex files"}
{"query_id": 160077, "query": "How can I add the word \"Chap\" before the chapters numbers in the Toc in class report?"}
{"query_id": 25597, "query": "Wrapping code (listings, verbatim, or other method) inside a newcommand"}
{"query_id": 61698, "query": "Compound/nested section numbers in ConTeXt: how to omit the top level? E.g. 1.2.1 --> 2.1"}
{"query_id": 63877, "query": "Gantt chart package"}
{"query_id": 154639, "query": "How to control the font size in complex fractions?"}
{"query_id": 57195, "query": "Is there a way to set the font size in points?"}
{"query_id": 120850, "query": "Strange behavior with lmodern package"}
{"query_id": 159091, "query": "Make section links in the table of contents point to the top of section\u2018s page"}
{"query_id": 51892, "query": "Count words in LaTeX with inclusion in LaTeX build process"}
{"query_id": 60368, "query": "makebbx - program similar to makebst?"}
{"query_id": 69170, "query": "BibLaTeX: main and secondary bibliographies"}
{"query_id": 24264, "query": "Really large poster in a0poster or other package"}
{"query_id": 184071, "query": "Align right (hfil) doesn't work for me"}
{"query_id": 129, "query": "Embedding LaTeX equations into a webpage"}
{"query_id": 15314, "query": "How can I superimpose LaTeX / TeX output over a PDF file?"}
{"query_id": 87820, "query": "\\mod, quotient structures, and spacing"}
{"query_id": 106569, "query": "Include separate document as is, contents and all?"}
{"query_id": 54927, "query": "How to insert an image that also acts as a link"}
{"query_id": 172057, "query": "Removing the article hyperref for acronym package indefinite article command \\iac short forms"}
{"query_id": 106541, "query": "Make nomenclature sort math correctly"}
{"query_id": 107871, "query": "How to do source code listings in ConTeXt?"}
{"query_id": 38880, "query": "Referencing items while using uncover"}
{"query_id": 128333, "query": "Insertion of a single blank page"}
{"query_id": 12250, "query": "How Can I Avoid Writing \"\\noindent\" After Equations"}
{"query_id": 7586, "query": "Are there any repositories of \"killer slides\" for Beamer?"}
{"query_id": 154667, "query": "aligning an equation to the left"}
{"query_id": 8434, "query": "how to scale math font only"}
{"query_id": 153337, "query": "Draw a circle surrounded by numbers in TikZ"}
{"query_id": 59386, "query": "How to get both usual text as well as all mathematical symbols in slanted?"}
{"query_id": 118528, "query": "Non-nested underbrace/overbrace"}
{"query_id": 156846, "query": "Grey box just as in Mathjax"}
{"query_id": 40720, "query": "LaTeX in Industry"}
{"query_id": 70175, "query": "Three-columns text with figures of 2\\columnwidth"}
{"query_id": 166641, "query": "How to get beamercolor for block?"}
{"query_id": 165793, "query": "How to make a table on more then one page by using the table environment"}
{"query_id": 29924, "query": "How can I temporarily change the default font size commands?"}
{"query_id": 116351, "query": "How do I set LaTeX to use AMS Euler for text and maths?"}
{"query_id": 114174, "query": "Slashbox with tables: Adjusting the diagonal separator for multiple rows"}
{"query_id": 23381, "query": "How to refer a figure as a table?"}
{"query_id": 40716, "query": "How can I see why a file isn't compiling somewhere else, if it does in my machine?"}
{"query_id": 87859, "query": "same float in multiple places pdflatex"}
{"query_id": 142676, "query": "How can I obtain total number of points?"}
{"query_id": 69185, "query": "How to revert changes made with titletoc"}
{"query_id": 8428, "query": "Use BibTeX key as the cite key"}
{"query_id": 50575, "query": "Spacing issue for newenvironment wrapper of equation environment"}
{"query_id": 15763, "query": "Comparison of plotting packages"}
{"query_id": 180913, "query": "Multiple tags in one line of align environment"}
{"query_id": 83496, "query": "Hyperref under section dont link to items"}
{"query_id": 15768, "query": "How to automatically increase the number of \\write registers?"}
{"query_id": 175590, "query": "How to name the Cited References in \\{thebibliography} section in LateX and not just number the citations"}
{"query_id": 94138, "query": "Highlighting modifications in a .tex file using Kile editor"}
{"query_id": 28608, "query": "How to add a matrix to a LaTeX document"}
{"query_id": 128321, "query": "long title in table of contents"}
{"query_id": 107402, "query": "How can I highlight this item of an enumerated list?"}
{"query_id": 47345, "query": "specify the step of pgfplots axis"}
{"query_id": 186222, "query": "Inconsistent style of \"other keywords\" when breaklines=true"}
{"query_id": 27755, "query": "How to use downloaded fonts with pdfLaTeX on Ubuntu"}
{"query_id": 184044, "query": "tkz-fct \"Plot data file not found\" error"}
{"query_id": 25575, "query": "How can I use a table generated by R in LaTeX?"}
{"query_id": 155509, "query": "Combining \\rowcolor and \\cmidrule"}
{"query_id": 7590, "query": "How to programmatically make tabular rows using `\\whiledo` ?"}
{"query_id": 66925, "query": "How to edit Beamer theme CambridgeUS"}
{"query_id": 142, "query": "How can I make an enumerate list start at something other than 1?"}
{"query_id": 118520, "query": "Distinguish between list of of tables and table"}
{"query_id": 198206, "query": "How do I list a section in table of contents that appears before the table of contents?"}
{"query_id": 35369, "query": "Replace or remove bibliography numbers"}
{"query_id": 148, "query": "Avoiding jumping frames in beamer"}
{"query_id": 69191, "query": "Can a beamer frame have both [containsverbatim] and hidden/shown block options?"}
{"query_id": 50585, "query": "How to lower the superscripts (and raise the subscripts)"}
{"query_id": 127468, "query": "Enable TeXstudio's syntax highlighting for custom file extensions"}
{"query_id": 86997, "query": "How do I modify the section tag?"}
{"query_id": 145715, "query": "What are the differences between creating a new macro command vs. a new environment?"}
{"query_id": 199530, "query": "Changing Section Heading Style Ruins Theorem Counter"}
{"query_id": 30914, "query": "How to get started with drawing this flow chart in TikZ?"}
{"query_id": 12267, "query": "Using subfiles package with .sty files"}
{"query_id": 39728, "query": "How do I format this equation in LaTeX?"}
{"query_id": 196026, "query": "\\usepackage[T1]{fontenc} get error: Metric File not found"}
{"query_id": 4095, "query": "How display LaTeX code in LaTeX document?"}
{"query_id": 29908, "query": "Setting auxiliary files path in Aquamacs"}
{"query_id": 98528, "query": "Further customize color of hyperref links"}
{"query_id": 11380, "query": "How to repeat top rows (column headings) on every page"}
{"query_id": 127061, "query": "Can biblatex automatically lowercase?"}
{"query_id": 108783, "query": "How do I get rid of the white background underneath my shadow?"}
{"query_id": 96347, "query": "pgfplots - number format on axis"}
{"query_id": 48665, "query": "Is there a beamer auto-indent program?"}
{"query_id": 63422, "query": "Help removing subsection and subsubsection numbers from Table of Contents TOC"}
{"query_id": 23364, "query": "How to mix accents from different fonts in LaTeX?"}
{"query_id": 163555, "query": "Custom environment shorthand for multiple environments"}
{"query_id": 74552, "query": "A pdf without the table of contents"}
{"query_id": 97676, "query": "How to flow a marginpar that does not fit to next page (or: how to write text with lots of margin notes)?"}
{"query_id": 160046, "query": "Placing a different image in each page corner"}
{"query_id": 97675, "query": "Is removing \\ensuremath the best practice?"}
{"query_id": 29905, "query": "How to form \"if ... or ... then\" conditionals in TeX?"}
{"query_id": 99850, "query": "How to draw a cycle diagram in tikz?"}
{"query_id": 185343, "query": "Using Text in `eqnarray`"}
{"query_id": 115087, "query": "How do I embed an external image within tikzpicture?"}
{"query_id": 159062, "query": "Texworks syntax highlighting not working on windows 8 and 8.1"}
{"query_id": 54951, "query": "Header of the table must be centered, all other rows aligned to left"}
{"query_id": 173359, "query": "Indenting Paragraphs of Text"}
{"query_id": 52771, "query": "What is the proper way to prevent text from splitting across columns and pages?"}
{"query_id": 60399, "query": "Cannot draw diagram"}
{"query_id": 24210, "query": "Is there a package to secure rendered pdf with a password?"}
{"query_id": 142613, "query": "Numbering Sections and Subsections"}
{"query_id": 152896, "query": "Drawing labels on Finite State Machines with TikZ"}
{"query_id": 78922, "query": "How to use Bibtex with G-Brief"}
{"query_id": 78925, "query": "How to divide a single table cell in two columns?"}
{"query_id": 55806, "query": "Mindmap tikzpicture in beamer (reveal step by step)"}
{"query_id": 54957, "query": "tocbibind does not add an numbered entry to the toc"}
{"query_id": 108314, "query": "\\renewenvironment optional arguments using old environment"}
{"query_id": 64760, "query": "Increasing the size of the memory: not all files are built successfully"}
{"query_id": 163548, "query": "Equation sub-numbering"}
{"query_id": 75895, "query": "How to acknowledge LaTeX and its community in a report/manuscript/dissertation/book?"}
{"query_id": 99840, "query": "Is there a long division macro?"}
{"query_id": 73232, "query": "Log-like operator with math inside (e.g. p-lim)"}
{"query_id": 161360, "query": "Using \\newcommand to format numbers/strings according to a pattern"}
{"query_id": 9792, "query": "Is there a way to detect from inside a package that MiKTeX is used?"}
{"query_id": 117252, "query": "A large \"#\" symbol"}
{"query_id": 117255, "query": "Hyperref not working"}
{"query_id": 87867, "query": "Do I need a specific package for \"\\N\""}
{"query_id": 120891, "query": "Navigation links go to wrong slides"}
{"query_id": 176855, "query": "exchanging the performance of \":\u201c and \"\\colon\""}
{"query_id": 167900, "query": "Framing cells vertically in a table"}
{"query_id": 183180, "query": "how to change default editor for latex when compiling in the bash?"}
{"query_id": 33166, "query": "Having Access To Constantly Updated TeX Files"}
{"query_id": 141777, "query": "No separated page for a table of content in a book class document"}
{"query_id": 85200, "query": "Include data from a .txt"}
{"query_id": 50126, "query": "How to apply custom headers/footers on pages with new chapters?"}
{"query_id": 52787, "query": "Cell colouring a multirow in LyX"}
{"query_id": 16604, "query": "Easiest way to delete a column?"}
{"query_id": 103073, "query": "Bold text multiple paragraphs"}
{"query_id": 47318, "query": "How to escape ampersand in \\acro command?"}
{"query_id": 187987, "query": "error while compiling a thesis template"}
{"query_id": 129226, "query": "Lyx - Set vertical margins or space between two sections"}
{"query_id": 73247, "query": "How many LaTeX classes and packages are there (say, on CTAN)?"}
{"query_id": 9325, "query": "Bump right-aligned text to next line if no room"}
{"query_id": 184470, "query": "How to make a bar across lambda?"}
{"query_id": 66955, "query": "Placing Subfigures vertically"}
{"query_id": 184476, "query": "Plotting a signal along with its harmonics in one figure"}
{"query_id": 159084, "query": "Plot using Hobby"}
{"query_id": 87414, "query": "Per-chapter bibliographies in biblatex"}
{"query_id": 120408, "query": "Extra whitespace at top of xymatrix"}
{"query_id": 10035, "query": "Editing LaTeX generated PDF"}
{"query_id": 13542, "query": "Flush a left-flushed box right"}
{"query_id": 141305, "query": "Theorem Style (like 1.1 Theorem)"}
{"query_id": 87411, "query": "Embossed and debossed text"}
{"query_id": 12698, "query": "What is the purpose of \\protect?"}
{"query_id": 194278, "query": "How to continue a very long table on multiple pages?"}
{"query_id": 61260, "query": "Keep a fragmented tikz image at the same place on a beamer slide"}
{"query_id": 44280, "query": "\\pagestyle{empty} doesn't seem to work for page with \\maketitle"}
{"query_id": 21179, "query": "Using \\frac within tabular"}
{"query_id": 14881, "query": "Good environment for writing math examples"}
{"query_id": 153762, "query": "How to prevent page breaking for lstinputlistings?"}
{"query_id": 73259, "query": "TikZ whitespace between nodes"}
{"query_id": 62124, "query": "How do you get the plaintext from a rendered LaTeX document?"}
{"query_id": 119406, "query": "Standalone multiline logo"}
{"query_id": 187513, "query": "How do I override a \\configure statement in html4.4t - tex4ht"}
{"query_id": 66966, "query": "\\sqrt[x]{y} Breaks With unicode-math"}
{"query_id": 24205, "query": "How to define a global constant in postscript statement?"}
{"query_id": 184485, "query": "Pseudocode in LaTeX"}
{"query_id": 51470, "query": "Conflict between my modified .sty file and babel's ngerman?"}
{"query_id": 13554, "query": "How can I define a math operator behaving like \\lim or \\sum with limits?"}
{"query_id": 53657, "query": "How do I force TeX to completely use the 1st column?"}
{"query_id": 10043, "query": "page number position"}
{"query_id": 78938, "query": "Tables in Latex with diagonal first row"}
{"query_id": 83040, "query": "TikZ compiles in body, but not as command"}
{"query_id": 77608, "query": "Position of cursor around brace when using auto-completion in TeXStudio"}
{"query_id": 22911, "query": "Multiple authors don't fit on one line"}
{"query_id": 71405, "query": "loading fontenc breaks tipa"}
{"query_id": 94520, "query": "TikZ: centre drawing at origin"}
{"query_id": 68237, "query": "Underline the title of a subsection"}
{"query_id": 95854, "query": "Continued 'figure' after 'table' Error"}
{"query_id": 187169, "query": "In the output the denominator appears in front of the fraction"}
{"query_id": 136815, "query": "Indexing the page number of each bibliography item"}
{"query_id": 60749, "query": "PGFPlot two \\pgfplotstableregressiona"}
{"query_id": 196, "query": "eqnarray vs align"}
{"query_id": 133309, "query": "Need some help with this program"}
{"query_id": 119004, "query": "How to anonymize paper without black highlighting"}
{"query_id": 133791, "query": "Define Table by Column (not by Row)"}
{"query_id": 178688, "query": "Making names/labels for placeholders in your own macros"}
{"query_id": 19746, "query": "Cunning (La)TeX tricks"}
{"query_id": 2706, "query": "Adequate hyphenation of words already containing a hyphen"}
{"query_id": 95848, "query": "Space Above Equations"}
{"query_id": 152054, "query": "unit circle sin(x) radians on x-axe"}
{"query_id": 121318, "query": "Where to find error in bibliography: \"finished with exit code 2\" bibtex"}
{"query_id": 155582, "query": "Tikz: append arrow at end of plot"}
{"query_id": 69560, "query": "What is the best way of arranging multiple minipages on a page?"}
{"query_id": 131134, "query": "typing a straightline next to a dfrac?"}
{"query_id": 135976, "query": "Defining font color inside highlight fails"}
{"query_id": 14063, "query": "Check all hyphenations within a document"}
{"query_id": 69578, "query": "Counter linked to section and subsection"}
{"query_id": 15394, "query": "Citep only works as cite?"}
{"query_id": 178680, "query": "Multicols and multirows table"}
{"query_id": 40337, "query": "overset text over equal sign in in an Align environment"}
{"query_id": 8021, "query": "Is there a (La)TeX distribution running on iPad?"}
{"query_id": 166211, "query": "Strange behaviour for combination of \\include, \\addtocontentsline, and \\clearpage"}
{"query_id": 119474, "query": "How to make a rich png image from a Latex Math Equation"}
{"query_id": 80352, "query": "Wrap figure inside enumerate environment"}
{"query_id": 176019, "query": "\"Literal\" numbering of chapters but not in contents"}
{"query_id": 58446, "query": "Illustrating Hooke's law with TikZ"}
{"query_id": 84711, "query": "Comma inside \\texttt{} does\u2019nt show up"}
{"query_id": 146627, "query": "MinionPro on Windows 7 does not have \\epsilon"}
{"query_id": 39349, "query": "Automatically inserting \"Section\", \"Subsection\", etc"}
{"query_id": 67395, "query": "How to generate all possible Venn diagrams (with the case below) efficiently?"}
{"query_id": 191674, "query": "Conditional compilation of code based on package version"}
{"query_id": 95838, "query": "How to write a perfect equation parameters description?"}
{"query_id": 71427, "query": "Include several pages of a PDF without losing LaTex document style"}
{"query_id": 71424, "query": "get rid of the number of nonreferred equations"}
{"query_id": 109651, "query": "Beamer - Optimal figure size given there is a caption, frametitle, etc"}
{"query_id": 156447, "query": "Gaps between arrows and labels"}
{"query_id": 109653, "query": "Lyx and Hebrew - Subsection numbering in the wrong direction"}
{"query_id": 29527, "query": "TikZ: Variable arithmetic result in node name"}
{"query_id": 164067, "query": "Problem with the driver option"}
{"query_id": 136837, "query": "Extracting only the BibTex records relevant to the paper"}
{"query_id": 94540, "query": "How to set chapter, section headings a specific font?"}
{"query_id": 107470, "query": "Getting section numbering to start at 0"}
{"query_id": 61626, "query": "Can LaTeX be translated into HTML5?"}
{"query_id": 168422, "query": "The text in a tabular environement goes out of margins"}
{"query_id": 60778, "query": "Fundamental differences : PSTricks, TikZ/PGF and others"}
{"query_id": 200133, "query": "Insert all the files in a directory"}
{"query_id": 148815, "query": "Single column figure leaves a blank in the other column?"}
{"query_id": 119469, "query": "How to design a command inquiring internally required packages?"}
{"query_id": 59785, "query": "How to execute command on every table column"}
{"query_id": 143125, "query": "Simple way to draw Hadamard matrices (black/white grids) from external input"}
{"query_id": 193823, "query": "Define new command which insert environment"}
{"query_id": 59304, "query": "Online LaTeX syntax highlighter"}
{"query_id": 169758, "query": "Last element in each row of a matrix getting pushed to next line"}
{"query_id": 86920, "query": "How to adapt classicthesis layout to B5paper and Linux Libertine"}
{"query_id": 49134, "query": "How to draw arc in Tikz?"}
{"query_id": 179554, "query": "\\perp with two vertical lines"}
{"query_id": 4902, "query": "Why is my footnote \"glued\" to the text?"}
{"query_id": 68251, "query": "How to format an email conversation?"}
{"query_id": 89183, "query": "Multiple subfigures not appearing on the same line"}
{"query_id": 73611, "query": "Multiple border around page"}
{"query_id": 95863, "query": "Horizontal Rule Across page"}
{"query_id": 22905, "query": "One chapter without numeration"}
{"query_id": 14044, "query": "Hyphenation in Perl package names"}
{"query_id": 69117, "query": "Space after itemize only if no text follows"}
{"query_id": 25179, "query": "biblatex & Mendeley - remove obsolete data from bibliography"}
{"query_id": 118118, "query": "Problem numbering chapter, sections"}
{"query_id": 20726, "query": "Centered, wide float"}
{"query_id": 29536, "query": "Vertically align subfloats at the top while having subcaptions vertically aligned below the subfloats"}
{"query_id": 145320, "query": "Lyx - editing the latex-code inside a math box or stop automatic converting in it"}
{"query_id": 172914, "query": "How to define a proof environment which can be displayed/hidden? [combining two TeX solutions]"}
{"query_id": 56281, "query": "I don't see reference title in my paper!"}
{"query_id": 172917, "query": "pgfplots and using axis cs to add points"}
{"query_id": 200136, "query": "Use bibentry to produce references in CV without bibliography list: works but error"}
{"query_id": 120432, "query": "Put references inside subsection"}
{"query_id": 123943, "query": "What's a quick way to align text?"}
{"query_id": 59317, "query": "Auto generate an Index"}
{"query_id": 61627, "query": "prevent \"action\" if top of page"}
{"query_id": 2734, "query": "taking unncessary space after e.g. or i.e."}
{"query_id": 1884, "query": "Numbering of appendices in the backmatter of a book"}
{"query_id": 56287, "query": "References inside floats as footnote bibliography"}
{"query_id": 57135, "query": "Conserve the frame in a mdframed box that spans more than one page"}
{"query_id": 56289, "query": "Align by the top borders of figures when using subcaption"}
{"query_id": 26024, "query": "How to use a longtable with only one entry in the list of tables"}
{"query_id": 38478, "query": "bibliography style"}
{"query_id": 60780, "query": "Looking for an appropriate icon for figures, one for tables and one for pages referring"}
{"query_id": 131163, "query": "Custom class file bib not appearing"}
{"query_id": 69111, "query": "Forcing even number of pages in output (LaTeX --- pdflatex)"}
{"query_id": 179543, "query": "curious luatex warning checksum mismatch in font txr.vf ignored"}
{"query_id": 30998, "query": "Set fonts in matplotlib graphs equal to tex document"}
{"query_id": 176470, "query": "In IEEE conference latex file, my pictures and tables are merged/overlapped with text"}
{"query_id": 39793, "query": "Using [midway] to label a curved path at its centre"}
{"query_id": 51839, "query": "Wrap Caption Around TikZ Figure"}
{"query_id": 74954, "query": "Kile won't recognize .ps images"}
{"query_id": 154688, "query": "How to change default alignment for table environment in report class"}
{"query_id": 37134, "query": "How to use latekmk with feynmf/feynmp?"}
{"query_id": 49115, "query": "Template (?) for Table Name Cards for a Formal Dinner"}
{"query_id": 40304, "query": "Minted split code into two pages"}
{"query_id": 108383, "query": "Easy way to calculate word-count in Latex for Mac?"}
{"query_id": 59322, "query": "How do I create an indentation in the first line of every paragraph?"}
{"query_id": 8053, "query": "Is there a difference between \\textit and \\itshape?"}
{"query_id": 28659, "query": "\\pagestyle{ruled} adds superfluous text in glossary"}
{"query_id": 2746, "query": "Aligning numbers by decimal points in table columns"}
{"query_id": 4925, "query": "Custom equations' names"}
{"query_id": 101748, "query": "How to make a table smaller?"}
{"query_id": 139050, "query": "Correct alignment of multiple-line inequality"}
{"query_id": 186284, "query": "Extra section level"}
{"query_id": 27322, "query": "Do I have to declare explicitly that point?"}
{"query_id": 118192, "query": "Figure subnumbering 1a"}
{"query_id": 48266, "query": "itemize in a tabular environment"}
{"query_id": 198253, "query": "How to create a column that depends on another created column in pgfplotstable?"}
{"query_id": 82100, "query": "Odd behaviour when setting bottom margin"}
{"query_id": 118196, "query": "Equating line length in paragraph"}
{"query_id": 30986, "query": "Amsart with algorithm2e introduces extraneous text into pdf file with Texlive 2011"}
{"query_id": 111547, "query": "Drawing lozenges in Tikz"}
{"query_id": 39784, "query": "Two math sections of the same type in a row?"}
{"query_id": 15352, "query": "How to find the name of a font?"}
{"query_id": 40775, "query": "Are there any coding style guidelines for LaTeX?"}
{"query_id": 78073, "query": "Detecting unused packages in LaTeX document"}
{"query_id": 113729, "query": "What are current pitfalls of using LuaTeX over pdfTeX"}
{"query_id": 58480, "query": "How to avoid covering nodes with connection lines"}
{"query_id": 78075, "query": "Multi-page with Tabulary?"}
{"query_id": 57150, "query": "Parentheses size around matrix"}
{"query_id": 168830, "query": "string with underscore in \\subsection, like ABC_XYZ"}
{"query_id": 84759, "query": "Which PDF viewers for Linux support Beamer's second screen options?"}
{"query_id": 58009, "query": "Biblatex: tricks with repeated citations in footnotes"}
{"query_id": 120013, "query": "Multiline equation without number"}
{"query_id": 16204, "query": "Which package to use for presentations ? Beamer, Prosper, or Other"}
{"query_id": 103933, "query": "maxnames in biber"}
{"query_id": 102604, "query": "Add a comment on top of \"equal\" and \"approximate\" symbols"}
{"query_id": 100426, "query": "Which version of LaTeX permits more than 16 alphabets?"}
{"query_id": 106189, "query": "Automatic column number and width adjustment"}
{"query_id": 107035, "query": "Reduce the space above 'scrreprt's TOC"}
{"query_id": 96760, "query": "Configuring forward and inverse search with TeXmaker 3.5.2 + SumatraPDF 2.2.1"}
{"query_id": 144410, "query": "Missing lines in Multi-Column Table"}
{"query_id": 120004, "query": "Is it possible to create a PDF document of undefined, variable height with Latex?"}
{"query_id": 123515, "query": "Install MikTex shared for dual booting Linux/Windows"}
{"query_id": 85637, "query": "How to submit a set of tikz command with pgfkeys?"}
{"query_id": 118170, "query": "Table of content only on right-side pages"}
{"query_id": 97609, "query": "Page numbering in words"}
{"query_id": 120008, "query": "biblatex: \"and\" as final delimiter when citing multiple entries"}
{"query_id": 17502, "query": "What is the correct pronunciation of TeX and LaTeX?"}
{"query_id": 69142, "query": "Include figure (from macro) with underscore in filename"}
{"query_id": 178661, "query": "Drawing Circuits in LaTeX"}
{"query_id": 180961, "query": "Underscores in pgm-umlsd diagrams"}
{"query_id": 37581, "query": "LaTeX figures side by side"}
{"query_id": 73658, "query": "Table of Contents modifications required"}
{"query_id": 156876, "query": "Need help installing a Portuguese dictionary in TexMaker"}
{"query_id": 198251, "query": "Hello, could you help me to understand the next error? texmaker (Mac)"}
{"query_id": 132444, "query": "Diagram of an artificial neural network"}
{"query_id": 156877, "query": "Center over-long equations between both margins"}
{"query_id": 75831, "query": "How do I show the equation formula again instead of its number of ref?"}
{"query_id": 42934, "query": "Is there a package for segmenting a large TeX document so that the PDF can be downloaded in installment?"}
{"query_id": 64704, "query": "Citation in bibliography when having multiple authors"}
{"query_id": 166674, "query": "Can the listings package automatically indent source code?"}
{"query_id": 140066, "query": "Text color changes height of tabular row"}
{"query_id": 29973, "query": "More than one optional argument for newcommand"}
{"query_id": 200184, "query": "Add vertical space between two tables in a single figure"}
{"query_id": 84776, "query": "Problems with largesymbols in mathptmx and LuaLaTeX"}
{"query_id": 83440, "query": "inputenc Error: Unicode char \\u8: not set up for use with LaTeX"}
{"query_id": 17517, "query": "Fill the area between two curves calculated by pgfplots"}
{"query_id": 123507, "query": "mdframed: unable to reproduce the example environment with figures"}
{"query_id": 179983, "query": "Long title in tikzposter"}
|