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
|
;; bib-cite.el - Display \cite, \ref or \label / Extract refs from BiBTeX file.
;; Copyright (C) 1994, 1995, 1996, 1997 Peter S. Galbraith
;; Author: Peter S. Galbraith <galbraith@mixing.qc.dfo.ca>
;; Created: 06 July 1994
;; Version: 3.04 (25 Aug 97)
;; Keywords: bibtex, cite, auctex, emacs, xemacs
;; RCS $Id: bib-cite.el,v 5.10 1997/10/20 14:30:14 abraham Exp $
;; Note: RCS version number does not correspond to release number.
;; Everyone is granted permission to copy, modify and redistribute this
;; file provided:
;; 1. All copies contain this copyright notice.
;; 2. All modified copies shall carry a prominant notice stating who
;; made modifications and the date of such modifications.
;; 3. The name of the modified file be changed.
;; 4. No charge is made for this software or works derived from it.
;; This clause shall not be construed as constraining other software
;; distributed on the same medium as this software, nor is a
;; distribution fee considered a charge.
;; LCD Archive Entry:
;; bib-cite|Peter Galbraith|galbraith@mixing.qc.dfo.ca|
;; Display \cite, \ref or \label / Extract refs from BiBTeX file.|
;; 21-May-1997|3.01|~/misc/bib-cite.el.gz|
;; ----------------------------------------------------------------------------
;;; Commentary:
;; This minor-mode is used in various TeX modes to display or edit references
;; associated with \cite commands, or matching \ref and \label commands.
;; New versions of this package (if they exist) may be found at:
;; ftp://ftp.phys.ocean.dal.ca/users/rhogee/elisp/bib-cite.el
;; Operating Systems:
;; Works in unix, DOS and OS/2. Developped under Linux.
;; VMS: I have no clue if this works under VMS. I don't know how emacs handle
;; logical names (i.e. for BIBINPUTS) but I am willing to fix this package for
;; VMS if someone if willing to test it and answer questions.
;; AUC-TEX USERS:
;; auc-tex is a super-charged LaTeX mode for emacs. Get it at:
;; ftp://ftp.iesd.auc.dk/pub/emacs-lisp/auctex.tar.gz <-stable release
;; ftp://ftp.dina.kvl.dk/pub/Staff/Per.Abrahamsen/auctex/ <-alpha release
;;
;; WWW users may want to check out the AUC TeX page at
;; http://www.iesd.auc.dk/~amanda/auctex/
;;
;; bib-cite.el is included in the auc-tex distribution. Therefore, if
;; you use auc-tex, you probably have an old version of bib-cite.el in
;; your load-path which may get loaded instead of this file (unless this
;; is the auc-tex file!). Make sure you replace that file, or rename it,
;; or delete it!!!
;; reftex users:
;; reftex is a package with similar functions to bib-cite.
;; ftp://strw.leidenuniv.nl/pub/dominik/reftex.el
;; I suggest that you use reftex to help you type-in text as it's functions
;; are better suited to this task than bib-cite, and use bib-cite's features
;; when you proof-read the text.
;; MS-DOS USERS:
;; Multifile documents are supported by bib-cite by using etags (TAGS files)
;; which contains a bug for MSDOS (at least for emacs 19.27 it does).
;; Get the file
;; ftp://ftp.phys.ocean.dal.ca/users/rhogee/elisp/bib-cite.etags-bug-report
;; to see what patches to make to etags.c to fix it.
;; Description:
;; ~~~~~~~~~~~
;; This package is used in various TeX modes to display or edit references
;; associated with \cite commands, or matching \ref and \label commands.
;; (so I actually overstep BiBTeX bounds here...)
;; These are the functions:
;;
;; bib-display bib-display-mouse
;; - Display citation, \ref or \label under point
;; bib-find bib-find-mouse
;; - Edit citation, \ref or \label under point
;; bib-make-bibliography - Make BiBTeX file containing only cite keys used.
;; bib-apropos - Search BiBTeX source files for keywords.
;; bib-etags - Refreshes (or builds) the TAGS files for
;; multi-file documents.
;; bib-create-auto-file - Used in bibtex-mode to create cite key
;; completion .el file for auctex.
;; bib-highlight-mouse - Highlight \cite, \ref and \label commands in
;; green when the mouse is over them.
;; About Cite Commands and related functions:
;; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
;; Various flavors of \cite commands are allowed (as long as they contain
;; the word `cite') and they may optionally have bracketed [] options.
;; Bibtex Cross-references are displayed, and @string abbreviations are
;; substituted or included.
;;
;; The \cite text is found (by emacs) in the bibtex source files listed in the
;; \bibliography command. The BiBTeX files can be located in a search path
;; defined by an environment variable (typically BIBINPUTS, but you can change
;; this).
;;
;; All citations used in a buffer can also be listed in a new bibtex buffer by
;; using bib-make-bibliography. This is useful to make a bibtex file for a
;; document from a large bibtex database. In this case, cross-references are
;; included, as well as the @string commands used. The @string abbreviations
;; are not substituted.
;;
;; The bibtex files can also be searched for entries matching a regular
;; expression using bib-apropos.
;; Usage instructions:
;; ~~~~~~~~~~~~~~~~~~
;; bib-display Bound to Mouse-3 when specially highlighted.
;; In Hyperbole, bound to the Assist key.
;; Bound to `\C-c b d'
;;
;; bib-display will show the bibtex entry or the corresponding label or
;; ref commands from anywhere within a document.
;; With cursor on the \cite command itslef
;; -> display all citations of the cite command from the BiBTeX source.
;; With cursor on a particular cite key within the brackets
;; -> display that citation's text from the BiBTeX source file(s).
;;
;; Example:
;;
;; \cite{Wadhams81,Bourke.et.al87,SchneiderBudeus94}
;; ^Cursor -> Display-all-citations ^Cursor -> Display-this-citation
;;
;; With cursor on a \label command
;; -> Display first matching \ref command in the document
;; With cursor on a \ref command
;; -> Display environment associated with the matching \label command.
;;
;; Finding a ref or label within a multi-file document requires a TAGS file,
;; which is automatically generated for you. This enables you to then use
;; any tags related emacs features.
;;
;; bib-find Bound to Mouse-2 when specially highlighted.
;; In Hyperbole, bound to the Action key.
;; Bound to `\C-c b f'
;;
;; bib-find will select the buffer and move point to the BiBTeX source file
;; at the proper citation for a cite command, or move point to anywhere
;; within a document for a label or ref command. The ref chosen is the
;; first occurrance within a document (using a TAGS file). If point is
;; moved within the same buffer, mark is set before the move and a message
;; stating so is given. If point is moved to another file, this is done in
;; a new window using tag functions. Within a plain file, the search
;; pattern is set for another similar \ref command (since TAGS file are not
;; used). Within a multi-file document the following tag functions are
;; appropriately setup:
;;
;; C-u M-. Find next alternate definition of last tag specified.
;;
;; C-u - M-. Go back to previous tag found.
;;
;;
;; For multi-file documents, you must be using auctex (so that bib-cite can
;; find the master file) and all \input and \include commands must be first
;; on a line (not preceeded by any non-white text).
;;
;; imenu support (Suggested key binding: Shift-Mouse-3)
;;
;; If you want to bind imenu globally to Shift-Mouse-3, do so by adding the
;; following to your ~/.emacs
;;
;; (require 'imenu)
;; (define-key global-map [S-mouse-3] 'imenu)
;;
;; Another good place to define Imenu is in the menu-bar. You can try this
;; manually with
;;
;; M-x imenu-add-to-menubar RET Imenu RET
;;
;; or in a hook such as:
;;
;; (add-hook 'LaTeX-mode-hook '(lambda () (imenu-add-to-menubar "Imenu")))
;;
;; The imenu facility (distributed with emacs) is supported by bib-cite to
;; move point to a LaTeX section (or chapter) division or to a label
;; declaration. When editing a multi-file document, all such declarations
;; within the document are displayed in the menu (again using a TAGS file).
;; If you do not want to load imenu.el and use these features, set
;; bib-use-imenu to nil. (This feature is disabled in xemacs because I'm
;; told it doesn't have imenu).
;;
;; bib-make-bibliography: Bound to `\C-c b m'
;;
;; Extract citations used in the current document from the \bibliography{}
;; file(s). Put them into a new suitably-named buffer. In a auctex
;; multi-file document, the .aux files are used to find the cite keys (for
;; speed). You will be warned if these are out of date.
;;
;; This buffer is not saved to a file. It is your job to save it to whatever
;; name you wish. Note that auctex has a unique name space for LaTeX and
;; BiBTeX files, so you should *not* name the bib file associated with
;; example.tex as example.bib! Rather, name it something like
;; example-bib.bib.
;;
;; bib-apropos: Bound to `\C-c b a'
;;
;; Searches the \bibliography{} file(s) for entries containing a keyword and
;; display them in the *help* buffer. You can trim down your search by using
;; bib-apropos in the *Help* buffer after the first invocation. the current
;; buffer is also searched for keyword matches if it is in bibtex-mode.
;;
;; It doesn't display cross-references nor does it substitute or display
;; @string commands used. It could easily be added, but it's faster this
;; way. Drop me a line if this would be a useful addition.
;;
;; If you find yourself entering a cite command and have forgotten which key
;; you want, but have entered a few initial characters as in `\cite{Gal',
;; then invoke bib-apropos. It will take that string (in this case `Gal') as
;; an initial response to the apropos prompt. You are free to edit it, or
;; simply press carriage return.
;;
;; bib-etags: Bound to `\C-c b e'
;;
;; Creates a TAGS file for auc-tex's multi-file document (or refreshes it).
;; This is used by bib-find when editing multi-file documents. The TAGS file
;; is created automatically, but it isn't refreshed automatically. So if
;; bib-find can't find something, try running bib-etags again. The *rescan*
;; in imenu also calls bib-etags to refresh the TAGS file, so that is another
;; way to generate it.
;;
;; bib-create-auto-file:
;;
;; Use this when editing a BiBTeX buffer to generate the auc-tex .el file
;; which tell emacs about all its cite keys. I've added this command to
;; bibtex-mode pull-down menu.
;;
;; bib-highlight-mouse: Bound to `\C-c b h'
;;
;; Highlights \cite, \ref and \label commands in green when the mouse is over
;; them. By default, a call to this function is added to LaTeX-mode-hook
;; (via bib-cite-initialize) if you set bib-highlight-mouse-t to true. But
;; you may want to run this command to refresh the highlighting for newly
;; edited text.
;; Installation instructions:
;; ~~~~~~~~~~~~~~~~~~~~~~~~~
;; bib-cite is a minor-mode, so you could invoke it in a LaTeX-mode hook.
;; e.g. If you are using AUC-TeX (http://sunsite.auc.dk/auctex/), you could
;; use:
;;
;; (autoload 'turn-on-bib-cite "bib-cite")
;; (add-hook 'LaTeX-mode-hook 'turn-on-bib-cite)
;;
;; If you are using Emacs' regular LaTeX-mode, use instead:
;;
;; (autoload 'turn-on-bib-cite "bib-cite")
;; (add-hook 'latex-mode-hook 'turn-on-bib-cite)
;;
;; bib-cite can be used with auctex, or stand-alone. If used with auctex on a
;; multi-file document (and auctex's parsing is used), then all \bibliography
;; commands in the document will be found and used.
;; ---
;; The following variable can be unset (like shown) to tell bib-cite to
;; not give advice messages about which commands to use to find the next
;; occurrence of a search:
;;
;; (setq bib-novice nil)
;; ---
;; The following variable determines whether we will attempt to highlight
;; citation, ref and label commands in green when they are under the
;; mouse. When highlighted, the mouse keys work to call bib-display
;; (bound to [mouse-3]) and bib-find (bound to [mouse-2]). If you use a
;; mode other than LaTeX-mode, you'll want to call bib-highlight-mouse with
;; a hook (See how we do this at the end of this file with the add-hook
;; command).
;;
;; (setq bib-highlight-mouse-t nil)
;; ---
;; The imenu features will be disabled if you set this variable to nil
;;
;; (setq bib-use-imenu nil)
;;
;; This variable has no effect under XEmacs.
;; ---
;; If you use hilit19 (or hl319), then bib-display will use it to highlight
;; the display unless you turn this off with:
;;
;; (setq bib-hilit-if-available nil)
;;
;; If you don't use hilit19, or if this is nil, and if you use font-lock
;; then it will be used by bib-display.
;; ---
;; The variable bib-switch-to-buffer-function sets the function used to
;; select buffers (if they differ from the original) in bib-cite commands
;; bib-make-bibliography, bib-display, bib-find
;; You may use `switch-to-buffer' `switch-to-buffer-other-window' or
;; `switch-to-buffer-other-frame'.
;; ---
;; If you use DOS or OS/2, you may have to set the following variable:
;;
;; (setq bib-dos-or-os2-variable t)
;;
;; if bib-cite.el fails to determine that you are using DOS or OS/2.
;; Try `C-h v bib-dos-or-os2-variable' to see if it needs to be set manually.
;; ---
;; bib-cite needs to call the etags program with its output file option
;; and also with the append option (usually -a).
;; I figured that DOS and OS/2 would use "etags /o=" instead of the unix
;; variant "etags -o ", but users have reported differently. So while the
;; unix notation is used here, you can reset it if you need to like so:
;;
;; (setq bib-etags-command "etags /o=")
;; (setq bib-etags-append-command "etags /a /o=")
;; ---
;; For multi-file documents, a TAGS file is generated by etags.
;; By default, its name is TAGS. You can change this like so:
;;
;; (setq bib-etags-filename "TAGSLaTeX")
;; ---
;; If your environment variable to find BiBTeX files is not BIBINPUTS, then
;; reset it with the following variable (here, assuming it's TEXBIB instead):
;;
;; (setq bib-bibtex-env-variable "TEXBIB")
;;
;; Note that any directory ending in a double slash will cause bib-cite to
;; search recursively through subdirectories for your .bib files. This can
;; be slow, so use this judiciously.
;; e.g. setenv BSTINPUTS .:/home/rhogee/LaTeX/bibinputs//
;; -> all directories below /home/rhogee/LaTeX/bibinputs/ will be
;; searched.
;; ---
;; If you do not wish bib-display to substitute @string abbreviations,
;; then set the following variable like so:
;;
;; (setq bib-substitute-string-in-display nil)
;; ---
;; Warnings are given when @string abbreviations are not defined in your bib
;; files. The exception is for months, usually defined in style files. If you
;; use other definitions in styles file (e.g. journals), then you may add them
;; to the `bib-substitute-string-in-display' list variable.
;; If you find circumstances in which this package fails, please let me know.
;; Things for me to do in later versions:
;; - jmv@di.uminho.pt (Jose Manuel Valenca) wants:
;; - prompt for \cite as well as \label and \ref
;; (and use auctex's completion list)
;; - implement string concatenation, with #[ \t\n]*STRING_NAME
;; - Create new command to substitute @string text in any bibtex buffer.
;; ----------------------------------------------------------------------------
;;; Change log:
;; V3.04 Aug 25 97 - Christoph Wedler <wedler@fmi.uni-passau.de> (RCS V1.20)
;; (bib-highlight-mouse): Would bug out on detached extents,
;; e.g. when killing a whole citation.
;; V3.03 Jul 16 97 - Christoph Wedler <wedler@fmi.uni-passau.de> (RCS V1.18)
;; turn-on-bib-cite back to non-interactive.
;; V3.02 Jul 11 97 - Christoph Wedler <wedler@fmi.uni-passau.de> (RCS V1.17)
;; * auctex/bib-cite.el (turn-on-bib-cite): Make interactive.
;; Argument to `bib-cite-minor-mode' is 1.
;; (bib-label-help-echo-format): New variable.
;; (bib-label-help-echo): New function.
;; (bib-label-help): Addition argument format.
;; (bib-highlight-mouse): Set extent property `help-echo' for XEmacs.
;; V3.01 May 22 97 - Diego Calvanese <calvanes@dis.uniroma1.it> (RCS V1.16)
;; bib-make-bibliography handles commas separated citations in aux files.
;; V3.00 May 16 97 - Peter Galbraith (RCS V1.15)
;; bib-cite is now a minor mode.
;; V2.32 Apr 30 97 - Anders Stenman <stenman@isy.liu.se> (RCS V1.14)
;; - Support for balloon-help.
;; V2.31 Mar 20 97 - Christoph Wedler <wedler@fmi.uni-passau.de> (RCS V1.12)
;; - Better fontification of help buffer as bibtex or latex for XEmacs.
;; V2.30 Feb 10 97 - Peter Galbraith (RCS V1.11)
;; - Better fontification of help buffer as bibtex or latex.
;; V2.29 Jan 29 97 - Peter Galbraith (RCS V1.10)
;; - imenu looks for `\label{stuff}' instead of `\label'
;; V2.28 Jan 22 97 - Peter Galbraith (RCS V1.9)
;; - Bug in bib-create-auto-file.
;; V2.27 Dec 31 96 - Peter Galbraith (RCS V1.8)
;; - allow spaces between cite keys.
;; - Vladimir Alexiev <vladimir@cs.ualberta.ca>
;; Allow () delimiters as well as {}.
;; Better check on bibtex-menu
;; Erase *bibtex-bibliography* buffer.
;; V2.26 Sep 24 96 - Peter Galbraith (RCS V1.7)
;; imenu bug fix.
;; V2.25 Sep 23 96 - Anders Stenman <stenman@isy.liu.se> (RCS V1.6)
;; XEmacs bib-cite-fontify-help-as-latex bug fix.
;; V2.24 Aug 19 96 - Peter Galbraith (RCS V1.3)
;; XEmacs bug fix, minor defvars - Vladimir Alexiev <vladimir@cs.ualberta.ca>
;; V2.23 Aug 13 96 - Peter Galbraith (RCS V1.2)
;; XEmacs - Add bib-cite entries to bibtex-mode popup menu.
;; V2.22 July 22 96 - Peter Galbraith (RCS V1.1)
;; local-map has `m' for bib-make-bibliography instead of `b'
;; set-buffer-menubar in XEmacs so that menu disappears after use.
;; V2.21 July 12 96 - Peter Galbraith
;; Define `\C-c b' keymap for both plain tex and auctex, in XEmacs and emacs.
;; Separate menu-bar menu in gnu emacs.
;; font-lock support for bib-display'ed citations (bibtex fontification)
;; and for matching \ref{} and \labels (latex fontification).
;; buffer-substring-no-properties in bib-apropos
;; (bug in completing-read with mouse faces)
;; imenu-sort-function made local and nil.
;; imenu--LaTeX-name-and-position fixed for section name containing "\"
;; Various other things... (whitespace within label strings, etc...)
;; V2.20 June 25 96 - Peter Galbraith
;; imenu fixed for emacs-19.31.
;; V2.19 May 13 96
;; PSG:
;; - @string substitution fixed; bib-edit-citation fixed when buffer exists;
;; Christoph Wedler <wedler@fmi.uni-passau.de>:
;; - Added bib-switch-to-buffer-function
;; - (setq tags-always-exact nil) for xemacs
;; - removed eval-after-load foe xemacs
;; V2.18 May 06 96 - PSG
;; New eval-after-load from Fred Devernay <Frederic.Devernay@sophia.inria.fr>
;; V2.17 May 03 96 - PSG
;; Fixed bug introduced in V2.16, reported by Dennis Dams <wsindd@win.tue.nl>
;; V2.16 May 02 96 - Vladimir Alexiev <vladimir@cs.ualberta.ca>
;; - somewhat compatible with Hyperbole by binding bib-find and bib-display to
;; the Action and Assist keys inside the bib-highlight-mouse-keymap.
;; - makes more liberal provisions for users with a tty.
;; V2.15 Apr 09 96 -
;; - fix "Buffer read-only" error caused by mouse-face text properties
;; patch by Piet van Oostrum <piet@cs.ruu.nl>
;; - Use tmm non-X menu, patch by Vladimir Alexiev <vladimir@cs.ualberta.ca>
;; - input{file.txt} would not work.
;; bug report: David Kastrup <dak@pool.informatik.rwth-aachen.de>
;; V2.14 Feb 26 96 - PSG - define eval-after-load for xemacs
;; Frederic Devernay's <Frederic.Devernay@sophia.inria.fr> suggestion.
;; V2.13 Feb 08 96 - Peter Galbraith - Fixed recursive use of bib-apropos.
;; V2.12 Jan 19 96 - Peter Galbraith
;; emacs-19.30's [down-mouse-1] is defined (rather than [mouse-1]), so
;; bib-highlight-mouse-keymap now has [down-mouse-1] defined to override it.
;; V2.11 Nov 21 95 - Peter Galbraith
;; - Fixed bib-create-auto-file when bib file loaded before LaTeX file.
;; - Michal Mnuk's better imenu labels menu <Michal.Mnuk@risc.uni-linz.ac.at>
;; - [mouse-1] and [mouse-2] key defs for highlighted regions.
;; - Improve X menus.
;; - Skip over style files in bib-document-TeX-files.
;; - Add menus and mouse highlighting for xemacs
;; Anders Stenman <stenman@isy.liu.se> Dima Barsky <D.Barsky@ee.surrey.ac.uk>
;; - Check bib-use-imenu before calling LaTeX-hook-setq-imenu.
;; From: Kurt Hornik <hornik@ci.tuwien.ac.at>
;; - Remove mouse face properties before inserting new ones.
;; From: Peter Whaite <peta@Whippet.McRCIM.McGill.EDU>
;; V2.10 Aug 17 95 - Peter Galbraith - fatal bugs in bib-make-bibliography.
;; V2.09 Jul 19 95 - Peter Galbraith
;; - Had introduced bug in search-directory-tree. synced with ff-paths.el.
;; V2.08 Jul 13 95 - Peter Galbraith
;; Fred Douglis <douglis@research.att.com> says etags should be required
;; V2.07 Jul 04 95 - Peter Galbraith
;; - Minor changes with filename manipulations (careful with DOS...)
;; - Problem if auc-tex not already loaded -> LaTeX-mode-map
;; V2.06 Jul 03 95 - Peter Galbraith - Added recursion through BIBINPUTS path.
;; V2.05 Jun 22 95 - Peter Galbraith Bug: Hanno Wirth <wirth@jake.igd.fhg.de>
;; bib-get-citations would truncate @String{KEY ="J. {\"u} Res."}
;; V2.04 Jun 19 95 - Peter Galbraith -
;; - use bibtex-mode syntax table in bib buffer, else bib-apropos truncates
;; an article if it contains an unbalanced closing parenthesis.
;; - bib-highlight-mouse would mark a buffer modified
;; V2.03 May 16 95 - Peter Galbraith -
;; auc-tec menu compatible with old "AUC TeX" pull-down name
;; V2.02 May 10 95 - Peter Galbraith -
;; bug report by Bodo Huckestein <bh@thp.Uni-Koeln.DE> (getenv env) under DOS
;; V2.01 Mar 27 95 - Peter Galbraith - No imenu on xemacs; check BIBINPUT also
;; V2.00 Mar 27 95 - Peter Galbraith
;; - bib-find and bib-display replace bib-edit-citation and
;; bib-display-citation
;; - bib-apropos now take initial guess from start of cite argument at point.
;; - Multi-file support for bib-make-bibliography using .aux files.
;; - \label and \ref functionality for bib-find and bib-display:
;; - \label may appear within an \begin\end or to label a (sub-)section.
;; - Cursor on \label, goto first \ref, set next i-search to pattern.
;; - Cursor on \ref, goto \label or display it's environment or section.
;; - Works on hidden code!
;; V1.08 Jan 16 95 - Peter Galbraith
;; bib-apropos can be used within *Help* buffer to trim a search.
;; V1.07 Dec 13 94 - Peter Galbraith
;; - Fixed: multi-line @string commands in non-inserted display.
;; - Fixed: quoted \ character in @string commands.
;; - BiBTeX comments should not affect bib-cite
;; - Fixed bib-apropos (from Christoph Wedler <wedler@fmi.uni-passau.de>)
;; Faster now, and avoids infinite loops.
;; - Added bib-edit-citation to edit a bibtex files about current citation.
;; - Allow space and newlines between citations: \cite{ entry1, entry2}
;; - Added bib-substitute-string-in-display, bib-string-ignored-warning
;; and bib-string-regexp.
;; - bib-display-citation (from Markus Stricker <stricki@vision.ee.ethz.ch>)
;; Could not find entry with trailing spaces
;; V1.06 Nov 20 94 - Peter Galbraith
;; - Fixed bib-apropos for:
;; hilighting without invoking bibtex mode.
;; display message when no matches found.
;; would search only last bib file listed (forgot to `goto-char 1')
;; - Fixed bib-make-bibliography that would only see first citation in a
;; multi-key \cite command (found by Michail Rozman <roz@physik.uni-ulm.de>
;; - bib-make-bibliography didn't see \cite[A-Z]* commands.
;; Found by Richard Stanton <stanton@haas.berkeley.edu>
;; **************************************************
;; - * Completely rewritten code to support crossrefs *
;; **************************************************
;; - autodetection of OS/2 and DOS for bib-dos-or-os2-variable
;; - Created bib-display-citation-mouse
;; - bib-apropos works in bibtex-mode on the current buffer
;; - bibtex entry may have comma on next line (!)
;; @ARTICLE{Kiryati-91
;; , YEAR = {1991 }
;; ...
;; V1.05 Nov 02 94 - Peter Galbraith
;; - bug fix by rossmann@TI.Uni-Trier.DE (Jan Rossmann)
;; for (boundp 'TeX-check-path) instead of fboundp. Thanks!
;; - Translate environment variable set by bib-bibtex-env-variable.
;; (suggested by Richard Stanton <stanton@haas.berkeley.edu>)
;; - add bib-dos-or-os2-variable to set environment variable path separator
;; - Add key-defs for any tex-mode and auc-tex menu-bar entries.
;; [in auc-tec TeX-mode-map is common to both TeX and LaTeX at startup
;; (but TeX-mode-map is only copied to LaTeX-mode-map at initilisation)
;; in plain emacs, use tex-mode-map for both TeX and LaTeX.]
;; - Add key def for bibtex-mode to create auc-tex's parsing file.
;; - Fix bugs found by <thompson@loon.econ.wisc.edu>
;; - fix bib-get-citation for options
;; - fix bib-get-citation for commas preceeded citation command
;; - better regexp for citations and their keys.
;; - Added @string support for any entry (not just journal entries).
;; (I had to disallow numbers in @string keys because of years.
;; Is that ok?)
;; - added bib-apropos
;; V1.04 Oct 24 94 - Peter Galbraith
;; - Don't require dired-aux, rather define the function we need from it.
;; - Regexp-quote the re-search for keys.
;; - Name the bib-make-bibliography buffer diffently than LaTeX buffer
;; because auc-tex's parsing gets confused if same name base is used.
;; V1.03 Oct 24 94 - Peter Galbraith - require dired-aux for dired-split
;; V1.02 Oct 19 94 - Peter Galbraith
;; - If using auc-tex with parsing activated, use auc-tex's functions
;; to find all \bibliography files in a multi-file document.
;; - Find bib files in pwd, BIBINPUTS environment variable path and
;; TeX-check-path elisp variable path.
;; - Have the parser ignore \bibliography that is on a commented `%' line.
;; (patched by Karl Eichwalder <karl@pertron.central.de>)
;; - Allow for spaces between entry type and key in bib files:
;; (e.g @Article{ key} )
;; (suggested by Nathan E. Doss <doss@ERC.MsState.Edu>)
;; - Allows options in \cite command (e.g. agu++ package \cite[e.g.][]{key})
;; - Includes @String{} abbreviations for `journal' entries
;; V1.01 July 07 94 - Peter Galbraith - \bibliography command may have list of
;; BibTeX files. All must be readable.
;; V1.00 July 06 94 - Peter Galbraith - Created
;; ----------------------------------------------------------------------------
;;; Code:
;;>>>>>>User-Modifiable variables start here:
(defvar bib-novice t
"*Give advice to novice users about what commands to use next.")
(defvar bib-use-imenu (not (string-match "XEmacs\\|Lucid" emacs-version))
"*Use imenu package for LaTeX modes (coded in bib-cite).")
(defvar bib-hilit-if-available t
"*Use hilit19 or hl319 to hilit bib-display if available")
(defvar bib-switch-to-buffer-function 'switch-to-buffer
"*Function used to select buffers if they differ from the original.
You may use `switch-to-buffer' `switch-to-buffer-other-window' or
`switch-to-buffer-other-frame'.")
(defvar bib-highlight-mouse-t t
"*Call bib-highlight-mouse from LaTeX-mode-hook to add green highlight.")
(defvar bib-label-help-echo-format "button2 finds %s, button3 displays %s"
"*Format string for info if the mouse is over LaTeX commands.
If nil, do not display info.")
(defvar bib-bibtex-env-variable "BIBINPUTS"
"*Environment variable setting the path where BiBTeX input files are found.
BiBTeX 0.99b manual says this should be TEXBIB.
Another version says it should BSTINPUTS. I don't know anymore!
The colon character (:) is the default path separator in unix, but you may
use semi-colon (;) for DOS or OS/2 if you set bib-dos-or-os2-variable to `t'.")
(defvar bib-dos-or-os2-variable (or (equal 'emx system-type)
(equal 'ms-dos system-type))
;; Under OS/2 system-type equals emx
;; Under DOS system-type equals ms-dos
"*`t' if you use DOS or OS/2 for bib-make-bibliography/bib-display
It tells bib-make-bibliography and bib-display to translate
the BIBINPUTS environment variable using the \";\" character as
a path separator and to translate DOS' backslash to slash.
e.g. Use a path like \"c:\\emtex\\bibinput;c:\\latex\\bibinput\"
(You can change the environment variable which is searched by setting the
elisp variable bib-bibtex-env-variable)")
(defvar bib-etags-command "etags -o "
"*Variable for the etags command and its output option.
In unix, this is usually \"etags -o \"
In DOS and OS/2, this *may* be \"etags /o=\" If so, set it this variable.")
(defvar bib-etags-append-command "etags -a -o "
"*Variable for the etags command and its append and output option.
In unix, this is usually \"etags -a -o \"
In DOS and OS/2, this *may* be \"etags /a /o=\" If so, set it this variable.")
(defvar bib-etags-filename "TAGS"
"*Variable for the filename generated by etags, by defaults this TAGS
but you may want to change this to something like TAGSLaTeX such that it can
coexist with some other tags file in your master file directory.")
(defvar bib-substitute-string-in-display t
"*Determines if bib-display will substitute @string definitions.
If t, then the @string text is substituted.
If nil, the text is not substituted but the @string entry is included.")
(defvar bib-string-ignored-warning
'("jan" "feb" "mar" "apr" "may" "jun" "jul" "aug" "sep" "sept" "oct" "nov"
"dec")
"*List of @string abbreviations for which a warning is given if not defined.
These are usually month abbreviations (or journals) defined in a style file.")
;;<<<<<<User-Modifiable variables end here.
(defvar bib-cite-is-XEmacs
(not (null (save-match-data (string-match "XEmacs\\|Lucid" emacs-version)))))
(defvar bib-cite-minor-mode nil)
;;;###autoload
(defun bib-cite-minor-mode (arg)
"Toggle bib-cite mode.
When bib-cite mode is enabled, citations, labels and refs are highlighted
when the mouse is over them. Clicking on these highlights with [mouse-2]
runs bib-find, and [mouse-3] runs bib-display."
(interactive "P")
(set (make-local-variable 'bib-cite-minor-mode)
(if arg
(> (prefix-numeric-value arg) 0)
(not bib-cite-minor-mode)))
(cond
(bib-cite-minor-mode ;Setup the minor-mode
;; Christoph Wedler's <wedler@fmi.uni-passau.de> suggestion for xemacs
;; Added for version 2.19
(if (boundp 'tags-always-exact)
(progn
(make-local-variable 'tags-always-exact)
(setq tags-always-exact nil)))
;; imenu support
(if bib-use-imenu
(progn
;; User who *never* uses multi-file documents could change this to:
;; 'imenu--create-LaTeX-index-for-buffer
(setq imenu-create-index-function 'imenu--create-LaTeX-index)
;; Make sure that imenu-sort-function is nil
(and (boundp 'imenu-sort-function)
imenu-sort-function
(make-local-variable 'imenu-sort-function)
(setq imenu-sort-function nil))))
;; mouse overlay
(if bib-highlight-mouse-t
(progn
(bib-cite-setup-highlight-mouse-keymap)
(bib-highlight-mouse)
(make-local-hook 'after-change-functions)
(add-hook 'after-change-functions
'bib-cite-setup-mouse-function nil t)))
(if bib-cite-is-XEmacs
(progn
(or (local-variable-p 'current-menubar (current-buffer))
(set-buffer-menubar current-menubar))
(add-submenu nil bib-cite-minor-mode-menu))))
(t
;;;Undo the minor-mode
;; mouse overlay
(cond
(bib-cite-is-XEmacs
(while bib-ext-list
(delete-extent (car bib-ext-list))
(setq bib-ext-list (cdr bib-ext-list))))
(t
(remove-hook 'after-change-functions 'bib-cite-setup-mouse-function t)
(let ((before-change-functions) (after-change-functions))
;; FIXME This detroys all mouse-faces and local-maps!
;; FIXME Hope no other package is using them in this buffer!
(remove-text-properties (point-min) (point-max)
'(mouse-face t local-map t)))))
(if bib-cite-is-XEmacs
(delete-menu-item '("BCite"))))))
;;This must be eval'ed when the LaTeX mode is in use.
;; bib-highlight-mouse-keymap is a local variable so each buffer can have it's
;; own.
(defun bib-cite-setup-highlight-mouse-keymap ()
(make-local-variable 'bib-highlight-mouse-keymap)
(setq bib-highlight-mouse-keymap
;;; First, copy the local keymap so we don't have `disappearing' menus
;;; when the mouse is moved over a \ref, \label or \cite command.
;;; FIXME: Check out (mouse-major-mode-menu) to see how it grabs the local
;;; menus to display. Maybe on `highlighted' commands we could only
;;; display the bib-cite stuff (or a subset of it).
(let ((m (copy-keymap (current-local-map))))
(cond
(bib-cite-is-XEmacs
(set-keymap-name m 'bib-highlight-mouse-keymap)
(cond
;;action-key stuff from Vladimir Alexiev <vladimir@cs.ualberta.ca>
((commandp 'action-key)
;; for hyperbole. The Right Way is to define implicit buttons
;; (defib) bib-cite and label-ref instead of overriding
;; action-key and assist key, so that eg smart key help can
;; be obtained, but I'm lazy.
(substitute-key-definition 'action-key 'bib-find m global-map)
(substitute-key-definition 'assist-key 'bib-display m global-map)
(substitute-key-definition 'action-key-depress
'bib-find-mouse m global-map)
(substitute-key-definition 'assist-key-depress
'bib-display-mouse m global-map)
(substitute-key-definition 'action-mouse-key nil m global-map)
(substitute-key-definition 'assist-mouse-key nil m global-map))
(t ; xemacs, not hyperbole
(define-key m "\e\r" 'bib-find-mouse) ; bug Fixed in V2.17
(define-key m "\e\n" 'bib-display-mouse) ;bug Fixed in V2.17
;;(define-key m [(shift button1)] 'bib-display-mouse)
(define-key m [button3] 'bib-display-mouse)
(define-key m [button2] 'bib-find-mouse))))
(t ; emacs 19
(cond
((commandp 'action-key)
(substitute-key-definition 'action-key 'bib-find m global-map)
(substitute-key-definition 'assist-key 'bib-display m global-map)
(substitute-key-definition 'action-mouse-key-emacs19
'bib-find-mouse m global-map)
(substitute-key-definition 'assist-mouse-key-emacs19
'bib-display-mouse m global-map)
(substitute-key-definition 'action-key-depress-emacs19
nil m global-map)
(substitute-key-definition 'assist-key-depress-emacs19
nil m global-map))
(t ; emacs 19, not hyperbole
(define-key m [down-mouse-3] 'bib-display-mouse)
(define-key m [mouse-2] 'bib-find-mouse)))))
m)))
;;;###autoload
(defun turn-on-bib-cite ()
"Unconditionally turn on Bib Cite mode."
(bib-cite-minor-mode 1))
(defun bib-cite-setup-mouse-function (beg end old-len)
(save-excursion
(save-match-data
(save-restriction
(narrow-to-region
(progn (goto-char beg) (beginning-of-line) (point))
(progn (goto-char end) (forward-line 1) (point)))
(bib-highlight-mouse)))))
(defvar bib-cite-minor-mode-map
(let ((map (make-sparse-keymap)))
(define-key map "\C-cba" 'bib-apropos)
(define-key map "\C-cbb" 'bib-make-bibliography)
(define-key map "\C-cbd" 'bib-display)
(define-key map "\C-cbe" 'bib-etags)
(define-key map "\C-cbf" 'bib-find)
(define-key map "\C-cbh" 'bib-highlight-mouse)
map)
"bib-cite minor-mode keymap")
(easy-menu-define
bib-cite-minor-mode-menu bib-cite-minor-mode-map "Menu keymap for bib-cite."
'("BCite"
["Make BibTeX bibliography buffer" bib-make-bibliography t]
["Display citation or matching \\ref or \\label" bib-display t]
["Find BibTeX citation or matching \\ref or \\label" bib-find t]
["Search apropos BibTeX files" bib-apropos t]
["Build TAGS file for multi-file document" bib-etags (bib-master-file)]
["Refresh \\cite, \\ref and \\label mouse highlight"
bib-highlight-mouse t]))
;; Install ourselves:
(or (assq 'bib-cite-minor-mode minor-mode-alist)
(setq minor-mode-alist
(cons '(bib-cite-minor-mode " BCite") minor-mode-alist)))
(or (assq 'bib-cite-minor-mode minor-mode-map-alist)
(setq minor-mode-map-alist
(cons (cons 'bib-cite-minor-mode bib-cite-minor-mode-map)
minor-mode-map-alist)))
;;; Add a menu entry to bibtex.el (Perhaps I should not do this).
(cond
((and (string-match "XEmacs\\|Lucid" emacs-version)
(or window-system
(fboundp 'smart-menu))) ;text menus by Bob Weiner
;;
;; xemacs under X with auc-tex
;;
;; Add to bibtex.el's popup menu
(defvar bib-cite-xemacs-bibtex-mode-menu
'("---"
"Bib-Cite"
"---"
["Search apropos BibTeX files" bib-apropos t]
["Create auc-tex auto parsing file" bib-create-auto-file t])
"Submenu of bibtex-mode menu, used by bib-cite.")
(if (boundp 'bibtex-menu)
;; Add menu now
(setq bibtex-menu
(append
bibtex-menu
bib-cite-xemacs-bibtex-mode-menu))
;; Setup to add menu later
(defun bib-cite-bibtex-mode-hook ()
(if (boundp 'bibtex-menu)
(progn
(setq bibtex-menu
(append
bibtex-menu
bib-cite-xemacs-bibtex-mode-menu))
(remove-hook 'bibtex-mode-hook 'bib-cite-bibtex-mode-hook))))
(add-hook 'bibtex-mode-hook 'bib-cite-bibtex-mode-hook))
)
((and (not (string-match "XEmacs\\|Lucid" emacs-version))
(string-equal "19" (substring emacs-version 0 2))
(or window-system
(fboundp 'tmm-menubar))) ; 19.30 - Will autoload if necessary
;;
;; emacs-19 under X-windows (or non-X with tmm)
;;
;; This *almost* makes me want to switch over to XEmacs...
;; to auc-tex auto file for a bibtex buffer
(eval-after-load
"bibtex"
'(progn
(cond
((lookup-key bibtex-mode-map [menu-bar move/edit])
(define-key-after
(lookup-key bibtex-mode-map [menu-bar move/edit])
[bib-nil] '("---" . nil) '"--")
(define-key-after
(lookup-key bibtex-mode-map [menu-bar move/edit])
[bib-apropos] '("Search Apropos" . bib-apropos) 'bib-nil)
(define-key-after
(lookup-key bibtex-mode-map [menu-bar move/edit])
[auc-tex-parse]
'("Create auc-tex auto parsing file" . bib-create-auto-file)
'bib-apropos))
((lookup-key bibtex-mode-map [menu-bar bibtex-edit])
(define-key-after
(lookup-key bibtex-mode-map [menu-bar bibtex-edit])
[bib-nil] '("---" . nil) '"--")
(define-key-after
(lookup-key bibtex-mode-map [menu-bar bibtex-edit])
[bib-apropos] '("Search Apropos" . bib-apropos) 'bib-nil)
(define-key-after
(lookup-key bibtex-mode-map [menu-bar bibtex-edit])
[auc-tex-parse]
'("Create auc-tex auto parsing file" . bib-create-auto-file)
'bib-apropos)))))))
;; Following from bibtex.el
(defvar
bib-cite-bibtex-font-lock-keywords
'(("^\\( \\|\t\\)*\\(@[A-Za-z]+\\)[ \t]*[({]\\([][A-Za-z0-9.:;?!`'()/*@_+=|<>-]+\\)?"
(2 font-lock-function-name-face)
(3 font-lock-reference-face nil t))
;; reference type and reference label
("^[ \t]*\\(OPT[^\"#%'(),={} \t\n0-9][^\"#%'(),={} \t\n]*\\)[ \t]*="
1 font-lock-comment-face)
;; optional field names (treated as comments)
("^[ \t]*\\([^\"#%'(),={} \t\n0-9][^\"#%'(),={} \t\n]*\\)[ \t]*="
1 font-lock-variable-name-face)
;; field names
"Default expressions to fontify in BibTeX mode."))
(defvar bib-cite-bibtex-mode-syntax-table
(let ((st (make-syntax-table)))
;; [alarson:19920214.1004CST] make double quote a string quote
(modify-syntax-entry ?\" "\"" st)
(modify-syntax-entry ?$ "$$ " st)
(modify-syntax-entry ?% "< " st)
(modify-syntax-entry ?' "w " st)
(modify-syntax-entry ?@ "w " st)
(modify-syntax-entry ?\\ "\\" st)
(modify-syntax-entry ?\f "> " st)
(modify-syntax-entry ?\n "> " st)
(modify-syntax-entry ?~ " " st)
st))
;; Code from bibtex.el ends
;; @string starts with a letter and does not contain any of ""#%'(),={}
;; Here we do not check that the field contains only one string field and
;; nothing else.
(defvar bib-string-regexp
"^[, \t]*[a-zA-Z]+[ \t]*=[ \t]*\\([a-zA-Z][^#%'(),={}\" \t\n]*\\)"
"Regular expression for field containing a @string")
(defvar bib-ext-list nil
"xemacs buffer-local list of bib-cite extents.")
(make-variable-buffer-local 'bib-ext-list)
(defun bib-display ()
"Display BibTeX citation or matching \\ref or \\label command under point.
If text under cursor is a \\cite command, then display its BibTeX info from
\\bibliography input file.
Example with cursor located over cite command or arguments:
\cite{Wadhams81,Bourke.et.al87,SchneiderBudeus94}
^Display-all-citations ^Display-this-citation
If text under cursor is a \\ref command, then display environment associated
with its matching \\label command.
If text under cursor is a \\label command, then display the text around
the first matching \\ref command.
The user is prompted for a \\label or \\ref is nothing suitable is found under
the cursor. The first prompt is for a label. If you answer with an empty
string, a second prompt for a ref will be given.
A TAGS file is created and used for multi-file documents under auctex."
(interactive)
(let ((cite))
(save-excursion
(if (not (looking-at "\\\\"))
(re-search-backward "[\\]" nil t))
(if (looking-at "\\\\[a-zA-Z]*cite")
(setq cite t)))
(if cite
(bib-display-citation)
(bib-display-label))))
(defun bib-find ()
"Edit BibTeX citation or find matching \\ref or \\label command under point.
For multi-entry cite commands, the cursor should be on the actual cite key
desired (otherwise a random entry will be selected).
e.g.: \cite{Wadhams81,Bourke.et.al87,SchneiderBudeus94}
^Display-this-citation
If text under cursor is a \\ref command, then point is moved to its matching
\\label command.
If text under cursor is a \\label command, then point is moved to the first
matching \\ref command.
The user is prompted for a \\label or \\ref is nothing suitable is found under
the cursor. The first prompt is for a label. If you answer with an empty
string, a second prompt for a ref will be given.
A TAGS file is created and used for multi-file documents under auctex."
(interactive)
(let ((cite))
(save-excursion
(if (not (looking-at "\\\\"))
(re-search-backward "[ \\\n]" nil t))
(if (looking-at "\\\\[a-zA-Z]*cite")
(setq cite t)))
(if cite
(bib-edit-citation)
(bib-find-label))))
(defun bib-display-mouse (EVENT)
"Display BibTeX citation or matching \\ref or \\label command under mouse.
See bib-display."
(interactive "e")
(mouse-set-point EVENT)
(bib-display))
(defun bib-find-mouse (EVENT)
"Edit BibTeX citation or find matching \\ref or \\label command under mouse.
See bib-find."
(interactive "e")
(mouse-set-point EVENT)
(bib-find))
(defun bib-apropos ()
"Display BibTeX entries containing a keyword from bibliography file.
The files specified in the \\bibliography command are searched unless
the current buffer is in bibtex-mode or is the Help buffer. In those
cases, *it* is searched. This allows you to trim down a search further
by using bib-apropos sequentially."
;;(interactive "sBibTeX apropos: ")
(interactive)
(let* ((keylist (and (boundp 'TeX-auto-update) ;Avoid error in FRAMEPOP
(fboundp 'LaTeX-bibitem-list) ;Use this if using auctex
(LaTeX-bibitem-list)))
(keyword (bib-apropos-keyword-at-point))
(keyword (completing-read "BiBTeX apropos: " keylist nil nil keyword))
(the-text)(key-point)(start-point)
(new-buffer-f (and (not (string-match "^bib" mode-name))
(not (string-equal "*Help*" (buffer-name)))))
(bib-buffer (or (and new-buffer-f (bib-get-bibliography nil))
(current-buffer))))
(save-excursion
(set-buffer bib-buffer)
(goto-char (point-min))
(while (and (re-search-forward "^[ \t]*@" nil t)
(re-search-forward keyword nil t))
(setq key-point (point)) ;To make sure this is within entry
(re-search-backward "^[ \t]*@" nil t)
(setq start-point (point))
(forward-list 1)
(if (< (point) key-point) ;And this is that test...
(goto-char key-point) ;Not within entry, skip it.
(setq the-text
(cons (concat (buffer-substring start-point (point)) "\n")
the-text))))
(if (not the-text)
(message "Sorry, no matches found.")
(with-output-to-temp-buffer "*Help*"
(mapcar 'princ (nreverse the-text)))
(bib-cite-fontify-help-as-bibtex)
(if bib-novice
(message
(substitute-command-keys
(concat "Use \\[bib-apropos] again in the *help* buffer"
" to trim the search")))))
(if new-buffer-f
(kill-buffer bib-buffer)))))
(defvar bib-document-citekeys-obarray-warnings nil
"bib-cite internal variable")
(defun bib-make-bibliography ()
"Extract citations used in the current document from \bibliography{} file(s).
Put them into a buffer named after the current buffer, with extension .bib.
In an auc-tex multi-file document, parsing must be on and the citation keys
are extracted from the .aux files.
In a plain LaTeX buffer (not multi-file), the cite keys are extracted from
the text itself. Therefore the text need not have been previously processed
by LaTeX.
This function is useful when you want to share a LaTeX file, and therefore want
to create a bibtex file containing only the references used in the document."
(interactive)
(let* ((the-keys-obarray (or (bib-document-citekeys-obarray)
(bib-buffer-citekeys-obarray)))
;1st in case of error
(new-buffer
(create-file-buffer
(concat (substring (buffer-name) 0
(or (string-match "\\." (buffer-name))
(length (buffer-name))))
"-bib.bib")))
(bib-buffer (bib-get-bibliography nil))
(the-warnings (bib-get-citations the-keys-obarray
bib-buffer
new-buffer
nil)))
(kill-buffer bib-buffer)
;;; (switch-to-buffer new-buffer)
(funcall bib-switch-to-buffer-function new-buffer)
(bibtex-mode)
(cond
((and bib-hilit-if-available
(fboundp 'hilit-highlight-region))
(hilit-highlight-buffer t))
((featurep 'font-lock) ;Perhaps let the user's setup determine
(font-lock-fontify-buffer))) ; if font-lock fontifies?
(if (or bib-document-citekeys-obarray-warnings
the-warnings)
(progn
(cond
((and bib-document-citekeys-obarray-warnings the-warnings)
(with-output-to-temp-buffer "*Help*"
(princ bib-document-citekeys-obarray-warnings the-warnings)))
(bib-document-citekeys-obarray-warnings
(with-output-to-temp-buffer "*Help*"
(princ bib-document-citekeys-obarray-warnings)))
(the-warnings
(with-output-to-temp-buffer "*Help*" (princ the-warnings))))
(setq bib-document-citekeys-obarray-warnings nil) ;Reset
(bib-cite-fontify-red)))
(if bib-novice
(message
(substitute-command-keys
"Use \\[save-buffer] to save this buffer to a file.")))))
(defun bib-cite-fontify-red (&optional limit)
"Fontify *Help* buffer in red-bold up to optional limit"
(if (and window-system ;Not exactly correct for XEmacs
(not (facep 'red-bold)))
(progn
(copy-face 'bold 'red-bold)
(set-face-foreground 'red-bold "red")))
(save-excursion
(set-buffer "*Help*")
(let ((before-change-functions) (after-change-functions))
(put-text-property (point-min)(or limit (point-max))
'face 'red-bold))))
(defun bib-cite-fontify-help-xemacs (defaults)
(if (fboundp 'font-lock-set-defaults-1) ; >= XEmcas 19.14
(progn
(set-buffer "*Help*")
(setq font-lock-defaults-computed nil
font-lock-keywords nil)
(font-lock-set-defaults-1
(and defaults (font-lock-find-font-lock-defaults defaults)))
(font-lock-fontify-buffer)
(setq font-lock-defaults-computed nil
font-lock-keywords nil)
(font-lock-set-defaults-1))))
(defun bib-cite-fontify-help-as-bibtex ()
(save-excursion
(cond
((and bib-hilit-if-available
(fboundp 'hilit-highlight-region))
(set-buffer "*Help*")
(hilit-highlight-region (point-min) (point-max) 'bibtex-mode t))
((not (featurep 'font-lock))
nil) ;No font-lock! Stop here.
;; font-lock under Emacs and XEmacs
((string-match "XEmacs\\|Lucid" emacs-version)
;; XEmacs
(bib-cite-fontify-help-xemacs 'bibtex-mode))
(t
;; Emacs
(set-buffer "*Help*")
(let ((font-lock-defaults
'(bib-cite-bibtex-font-lock-keywords
nil t ((?$ . "\"")(?\" . ".")))))
(if font-lock-mode
(font-lock-mode)
(font-lock-unset-defaults)
(font-lock-unfontify-buffer))
(font-lock-fontify-buffer))))))
(defun bib-cite-fontify-help-as-latex ()
(save-excursion
(cond
((and bib-hilit-if-available
(fboundp 'hilit-highlight-region))
(set-buffer "*Help*")
(hilit-highlight-region (point-min) (point-max) 'latex-mode t))
((not (featurep 'font-lock))
nil) ;No font-lock! Stop here.
;; font-lock under Emacs and XEmacs
((string-match "XEmacs\\|Lucid" emacs-version)
;; XEmacs, not necessary to do s.th. special for font-latex, we do *not*
;; want the buffer-local faces!
(bib-cite-fontify-help-xemacs 'latex-mode))
(t
;; Emacs
(set-buffer "*Help*")
;; Actually, don't want to `permanently' affect *Help* buffer...
;;(if (featurep 'font-latex)
;; (font-latex-setup)
;; Rather I should deal with this in the `let' form:
;; (make-local-variable 'font-lock-string-face)
;; (setq font-lock-string-face font-latex-math-face
;; font-latex-string-face (default-value 'font-lock-string-face))
(let ((font-lock-defaults
(if (featurep 'font-latex)
'((font-latex-keywords font-latex-keywords-1
font-latex-keywords-2)
nil nil ((?\( . ".") (?\) . ".") (?$ . "\"")) nil
(font-lock-comment-start-regexp . "%")
(font-lock-mark-block-function . mark-paragraph))
'(tex-font-lock-keywords nil nil ((?$ . "\""))))))
(if font-lock-mode
(font-lock-mode)
(font-lock-unset-defaults)
(font-lock-unfontify-buffer))
(font-lock-fontify-buffer))))))
(defvar bib-document-TeX-files-warnings nil
"bib-cite internal variable")
(defun bib-etags (&optional masterdir)
"Invoke etags on all tex files of the document, storing the TAGS file
in the master-directory. Expect errors if you use this outside of auctex
or within a plain single-file document.
Also makes sure that the TAGS buffer is updated.
See variables bib-etags-command and bib-etags-filename"
(interactive)
(require 'etags)
(let* ((the-file-list (bib-document-TeX-files))
(the-file (car the-file-list))
(dir (or masterdir (bib-master-directory)))
(the-tags-file (expand-file-name bib-etags-filename dir))
(the-tags-buffer (get-file-buffer the-tags-file)))
;; Create TAGS file with first TeX file (master file)
(shell-command (concat bib-etags-command the-tags-file " " the-file))
(setq the-file-list (cdr the-file-list))
;; Append to TAGS file for all other TeX files.
(while the-file-list
(setq the-file (car the-file-list))
(shell-command
(concat bib-etags-append-command the-tags-file " " the-file))
(setq the-file-list (cdr the-file-list)))
(if the-tags-buffer ;buffer existed; we must refresh it.
(save-excursion
(set-buffer the-tags-buffer)
(revert-buffer t t)))
;; Check value of tags-file-name against the-tags-file
(or (equal the-tags-file tags-file-name) ;make sure it's current
(visit-tags-table the-tags-file))
;(set (make-local-variable 'tags-file-name) the-tags-file))
;; above should not be needed
;; Weird Bug:
;; (visit-tags-table-buffer) seems to get called twice when called by
;; find-tag on an undefined tag. The second time, it's in the TAGS
;; buffer and returns an error because TAGS buffer does have
;; tags-file-name set.
;; To get around this. I'm setting this variable in the TAGS buffer.
;; Skip this in XEmacs (Changed by Anders Stenman)
(if (and (not (string-match "XEmacs\\|Lucid" emacs-version))
(get-file-buffer the-tags-file))
(save-excursion
(set-buffer (get-file-buffer the-tags-file))
(set (make-local-variable 'tags-file-name) the-tags-file))))
(if bib-document-TeX-files-warnings ;free variable loose in emacs!
(progn
(with-output-to-temp-buffer "*Help*"
(princ bib-document-TeX-files-warnings))
(setq bib-document-TeX-files-warnings nil) ;Reset
(bib-cite-fontify-red))))
(defun bib-Is-hidden ()
"Return true is current point is hidden"
(if (not selective-display)
nil ;Not hidden if not using this...
(save-excursion
(if (not (re-search-backward "[\n\^M]" nil t))
nil ;Play safe
(if (string-equal (buffer-substring (match-beginning 0)(match-end 0))
"\n")
nil
t)))))
(defun bib-highlight-mouse ()
"Make that nice green highlight when the mouse is over LaTeX commands"
(interactive)
;;;Comment this out. User should be able to use bib-highlight-mouse
;;;to try it out regardless of bib-highlight-mouse-t.
;;;Check bib-highlight-mouse-t only in automated cases.
;;;
;;; (if (and bib-highlight-mouse-t
;;; ;;window-system) ;Do nothing unless under X
;;; )
;;; *all of code was here*
;;; )
(save-excursion
(let ((s)(e)(extent)(local-extent-list bib-ext-list)
(inhibit-read-only t)
(modified (buffer-modified-p))) ;put-text-property changing this?
;; * peta Wed Nov 8 16:27:29 1995 -- better remove the mouse face
;; properties first.
(setq bib-ext-list nil) ;Reconstructed below...
(if (string-match "XEmacs\\|Lucid" emacs-version)
(while local-extent-list
(setq extent (car local-extent-list))
(if (or (extent-detached-p extent)
(and (<= (point-min)(extent-start-position extent))
(>= (point-max)(extent-end-position extent))))
(delete-extent extent)
(setq bib-ext-list (cons extent bib-ext-list)))
(setq local-extent-list (cdr local-extent-list)))
;; Remove properties for regular emacs
;; FIXME This detroys all mouse-faces and local-maps!
;; FIXME Hope no other package is using them in this buffer!
(let ((before-change-functions) (after-change-functions))
(remove-text-properties (point-min) (point-max)
'(mouse-face t local-map t))))
(goto-char (point-min))
(while
(re-search-forward
"\\\\\\(ref\\|label\\|[A-Za-z]*cite[A-Za-z]*\\(\\[.*\\]\\)?\\){[^}]*}"
nil t)
(setq s (match-beginning 0))
(setq e (match-end 0))
(cond
((string-match "XEmacs\\|Lucid" emacs-version)
(setq extent (make-extent s e))
(setq bib-ext-list (cons extent bib-ext-list))
(set-extent-property extent 'highlight t)
(set-extent-property extent 'start-open t)
(set-extent-property extent 'balloon-help 'bib-label-help)
(set-extent-property extent 'help-echo 'bib-label-help-echo)
(set-extent-property extent 'keymap bib-highlight-mouse-keymap))
(t
(let ((before-change-functions) (after-change-functions)
;;(this-overlay (make-overlay s e))
)
;;; Even using overlays doens't help here. If bib-highlight-mouse-keymap
;;; does not include the AucTeX menus, then these disappear when we click
;;; onto a \cite command. Perhaps using bib-cite as a minor mode will fix
;;; this? For now, bib-cite must be loaded after these menus are built.
;;; It must therefore be loaded in a mode-hook.
(put-text-property s e 'local-map bib-highlight-mouse-keymap)
(put-text-property s e 'mouse-face 'highlight)
;;(overlay-put this-overlay 'local-map bib-highlight-mouse-keymap)
;;(overlay-put this-overlay 'mouse-face 'highlight)
))))
(set-buffer-modified-p modified))))
(defun bib-toggle-highlight ()
;; FIXME: do something about after-change stuff?
(interactive)
(if (setq bib-highlight-mouse-t (not bib-highlight-mouse-t))
(bib-highlight-mouse)
(let ((modified (buffer-modified-p))
(inhibit-read-only t))
(cond
((string-match "XEmacs\\|Lucid" emacs-version)
(while bib-ext-list
(delete-extent (car bib-ext-list))
(setq bib-ext-list (cdr bib-ext-list))))
(t
(let ((before-change-functions) (after-change-functions))
(remove-text-properties (point-min) (point-max)
'(mouse-face local-map)))))
(set-buffer-modified-p modified))))
(defun bib-label-help-echo (object)
(if bib-label-help-echo-format
(bib-label-help object bib-label-help-echo-format)))
;;; Balloon-help callback. Anders Stenman <stenman@isy.liu.se>
(defun bib-label-help (object &optional format)
(or format (setq format "Use mouse button 2 to find the %s.
Use mouse button 3 to display the %s."))
(save-match-data
(let* ((string (extent-string object))
(type (cond ((string-match "^\\\\cite" string) "citation")
((string-match "^\\\\ref" string) "\\label{}")
((string-match "^\\\\label" string) "\\ref{}")
(t "bullshit"))))
(format format type type))))
;;----------------------------------------------------------------------------
;; Routines to display or edit a citation's bibliography
(defun bib-display-citation ()
"Do the displaying of cite info. Returns t if found cite key, nil otherwise.
Example with cursor located over cite command or arguments:
\cite{Wadhams81,Bourke.et.al87,SchneiderBudeus94}
^Display-all-citations ^Display-this-citation"
(save-excursion
(let* ((the-keys-obarray (bib-get-citekeys-obarray)) ;1st in case of error
(work-buffer (get-buffer-create "*bibtex-work*"))
(bib-buffer (bib-get-bibliography nil))
(the-warnings (bib-get-citations
the-keys-obarray
bib-buffer
work-buffer
bib-substitute-string-in-display))
(the-warn-point))
(if the-warnings
(progn
(set-buffer work-buffer)
(goto-char 1)
(insert the-warnings)
(setq the-warn-point (point))))
(with-output-to-temp-buffer
"*Help*"
(set-buffer work-buffer)
(princ (buffer-substring 1 (point-max))))
(bib-cite-fontify-help-as-bibtex)
(if the-warn-point
(bib-cite-fontify-red the-warn-point))
(kill-buffer bib-buffer)
(kill-buffer work-buffer))))
(defun bib-edit-citation ()
"Do the edit of cite info. Returns t if found cite key, nil otherwise.
Find and and put edit point in bib file associated with a BibTeX citation
under cursor from \bibliography input file.
In a multi-entry cite command, the cursor should be on the actual cite key
desired (otherwise a random entry will be selected).
e.g.: \cite{Wadhams81,Bourke.et.al87,SchneiderBudeus94}
^Display-this-citation"
(let ((the-keys-obarray (bib-get-citekeys-obarray)) ;1st in case of error
(bib-buffer (bib-get-bibliography t))
(the-key)(the-file))
(save-excursion
(mapatoms ;Do this for each cite-key found...
(function (lambda (cite-key)
(setq the-key (symbol-name cite-key))))
the-keys-obarray)
(set-buffer bib-buffer)
(goto-char (point-min))
(if (not (re-search-forward
(concat "@[^{(]+[{(][\t ]*" the-key "[ ,\n]") nil t))
(progn
(kill-buffer bib-buffer)
(error "Sorry, could not find bib entry for %s" the-key))
(re-search-backward "%%%Filename: \\([^\n]*\\)" nil t)
(setq the-file (buffer-substring (match-beginning 1)(match-end 1)))
(kill-buffer bib-buffer)))
;;; (find-file the-file)
(funcall bib-switch-to-buffer-function (find-file-noselect the-file))
(goto-char (point-min)) ;V2.19 fix
(re-search-forward (concat "@[^{(]+[{(][\t ]*" the-key "[ ,\n]") nil t)))
;;--------------------------------------------------------------------------
;; Function for bib-apropos
(defun bib-apropos-keyword-at-point ()
;; Returns the keyword under point for initial input to bib-apropos prompt
(save-excursion
(let ((here (point)))
(cond
((and (re-search-backward "[\n{, ]" nil t)
(string-equal "{" (buffer-substring (match-beginning 0)
(match-end 0))))
(if (fboundp 'buffer-substring-no-properties)
(buffer-substring-no-properties (1+ (point)) here)
(buffer-substring (1+ (point)) here)))))))
;;--------------------------------------------------------------------------
;; Functions for Displaying or moving to matching \ref or \label command
(defun bib-display-label ()
;; "Display environment associated with a label or first ref assoc. with label
;;The label or ref name is extracted from the text under the cursor, or the
;;user is prompted is nothing suitable is found. The first prompt is for a
;;label. If you answer with an empty string, a second prompt for a ref will
;;be given."
(let ((the-name (bib-guess-or-prompt-for-label)))
(if (not the-name)
(message "No name given")
(bib-display-or-find-label the-name t))))
(defun bib-find-label ()
"Move to a label, or the first occurance of a ref.
The label or ref name is extracted from the text under the cursor.
;;If nothing suitable is found, the user is prompted. The first prompt is for a
;;label. If you answer with an empty string, a second prompt for a ref will be
;;given.
;;
;;If within a single file document:
;; You can move back with C-x C-x as the mark is set before moving.
;; You can search for next occurrances of a ref command with C-s C-s.
;;
;;If within a multi-file document (in auctex only)
;; You can move back with C-x C-x if within the same buffer. If not, just
;; select your previous buffer.
;; You can search for next occurrances of a ref command with tag commands:
;; C-u M-. Find next alternate definition of last tag specified.
;; C-u - M-. Go back to previous tag found."
(let ((the-name (bib-guess-or-prompt-for-label)))
(if (not the-name)
(message "No name given")
(bib-display-or-find-label the-name nil))))
;;--------------------------------------------------------------------------
;; Functions for Displaying or moving to matching \ref or \label command
(defun bib-display-or-find-label (the-name displayf)
;; work horse for bib-find-label and bib-display-label
(let* ((masterfile (bib-master-file))
(masterdir (and masterfile
(file-name-directory masterfile)))
(new-point)(new-buffer))
(save-excursion
;; Now we are either in a simple file, or with a multi-file document
(cond
(masterfile ;Multi-file document
(cond
(displayf ;Display only
(set-buffer (bib-etags-find-noselect the-name masterdir))
(re-search-forward the-name nil t) ;'cos tags puts point line begin
(if (string-match "^\\\\label" the-name)
(bib-display-this-environment) ;display the label's environment
(bib-display-this-ref))) ; display the ref's context
(t ;Move to it
(setq new-buffer (bib-etags-find-noselect the-name masterdir))
(if bib-novice
(message
(substitute-command-keys
(concat "Use C-u \\[find-tag] to find the next occurrence; "
"Use C-u - \\[find-tag] to find the previous."))))
(if (equal new-buffer (current-buffer))
(setq new-point (point))) ;Moving with the same buffer
(and (string-match "^\\\\ref" the-name)
(setq search-ring (cons the-name search-ring))))))
(t ;Single-file document
(goto-char (point-min))
(if (search-forward the-name nil t)
(if displayf
(if (string-match "^\\\\label" the-name)
(bib-display-this-environment) ;Display the environment
(bib-display-this-ref)) ; display the ref's context
(setq new-point (match-beginning 0)) ;or move there
(if bib-novice
(message
(substitute-command-keys
(concat
"Use \\[isearch-forward] \\[isearch-forward] to find the "
"next occurrence; Use C-x C-x to go back."))))
(if (string-match "^\\\\ref" the-name)
(setq search-ring (cons the-name search-ring))
(setq search-ring (cons (concat "\\ref" (substring the-name 6))
search-ring))))
(message "Sorry, cannot find %s" the-name)))))
(if new-point
(progn
(push-mark (point) t nil) ;We've moving there... push mark
(goto-char new-point))
(if new-buffer ;We've changing buffer
;; (switch-to-buffer new-buffer)
(funcall bib-switch-to-buffer-function new-buffer)))
(if (bib-Is-hidden)
(save-excursion
(beginning-of-line)
(show-entry)))))
(defvar bib-label-prompt-map nil)
(if bib-label-prompt-map
()
(setq bib-label-prompt-map (copy-keymap minibuffer-local-completion-map))
(define-key bib-label-prompt-map " " 'self-insert-command))
(defun bib-guess-or-prompt-for-label ()
;; Guess from context, or prompt the user for a label command
(save-excursion
(if (not (looking-at "\\\\")) ;If not on beginning of a command
(re-search-backward "[\\]"
(save-excursion (beginning-of-line)(point))
t))
(cond
((looking-at "\\\\ref{") ;On \ref, looking for matching \label
(let ((b (progn (search-forward "{" nil t)(forward-char -1)(point)))
(e (progn (forward-sexp 1)(point))))
(concat "\\label" (buffer-substring b e))))
((looking-at "\\\\label{") ;On \label, looking for matching \ref
(let ((b (progn (search-forward "{" nil t)(forward-char -1)(point)))
(e (progn (forward-sexp 1)(point))))
(concat "\\ref" (buffer-substring b e))))
(t ;Prompt the user
(let* ((minibuffer-local-completion-map bib-label-prompt-map)
(the-alist (create-alist-from-list
(cdr (reverse LaTeX-label-list))))
;;; LaTeX-label-list example:
;;; '(("label3" "label4")("label1" "label2") nil)
;; so let's get rid of that nil part in embedded list.
(the-name
(if (string-equal "18" (substring emacs-version 0 2))
(completing-read "Label: " the-alist nil nil nil)
(completing-read "Label: " the-alist nil nil nil
'LaTeX-find-label-hist-alist))))
(if (not (equal the-name ""))
(concat "\\label{" the-name "}")
;; else try to get a \ref
(if (string-equal "18" (substring emacs-version 0 2))
(setq the-name (completing-read "Ref: " the-alist nil nil nil))
(setq the-name (completing-read "Ref: " the-alist nil nil nil
'LaTeX-find-label-hist-alist)))
(if (not (equal the-name ""))
(concat "\\ref{" the-name "}")
nil)))))))
(defun bib-display-this-ref ()
"Display a few lines around current point"
(cond
((bib-Is-hidden)
(with-output-to-temp-buffer "*BiBTemp*"
(princ
(buffer-substring
(save-excursion
(let ((i 3))
(while (and (> i 0)
(re-search-backward "[\n\^M]" nil t)
(setq i (1- i)))))
(point))
(save-excursion
(let ((i 3))
(while (and (> i 0)
(re-search-forward "[\n\^M]" nil t)
(setq i (1- i)))))
(point)))))
(set-buffer "*BiBTemp*")
(while (search-forward "\^M" nil t)
(replace-match "\n" nil t))
(goto-char 1)
(if (looking-at "\n") ;Remove first empty line...
(delete-char 1))
(with-output-to-temp-buffer "*Help*"
(princ (buffer-substring 1 (point-max))))
(bib-cite-fontify-help-as-latex)
(kill-buffer "*BiBTemp*"))
(t
(with-output-to-temp-buffer ; display the ref's context
"*Help*"
(princ
(buffer-substring (save-excursion (forward-line -2)(point))
(save-excursion (forward-line 3)(point)))))
(bib-cite-fontify-help-as-latex))))
(defun bib-display-this-environment ()
"Display the environment associated with a label, or its section name
Assumes point is already on the label.
Does not save excursion."
;; Bugs: The method used here to detect the environment is *not* foolproof.
;; It will get confused, for example, between two figure environments,
;; picking out both instead of the section label above them. But since
;; users typically puts their labels next to the section declaration,
;; I'm satisfied with this... for now.
;; I could have used the following auc-tex functions:
;; LaTeX-current-environment
;; Function: Return the name (a string) of the enclosing LaTeX environment.
;; LaTeX-current-section
;; Function: Return the level of the section that contain point.
;; but then this code would only work as part of auc-tex...
(let ((the-point (point))
(end-point (point))
(the-environment)(foundf))
(while (and (not foundf)
(goto-char end-point) ;Past end of last search
(re-search-forward "\\(^\\|\^M\\)[ \t]*\\\\end{\\([^}]*\\)}"
nil t))
(setq end-point (point))
(setq the-environment (buffer-substring (match-beginning 2)
(match-end 2)))
(and (not (string-match "document" the-environment))
(re-search-backward (concat "\\(^\\|\^M\\)[ \t]*\\\\begin{"
(regexp-quote the-environment) "}"))
(<= (point) the-point)
(setq foundf t)))
(if foundf ;A good environment
(progn
(cond ((bib-Is-hidden) ;Better way is: replace-within-string
(with-output-to-temp-buffer "*BiBTemp*"
(princ (buffer-substring (point) end-point)))
(set-buffer "*BiBTemp*")
(while (search-forward "\^M" nil t)
(replace-match "\n" nil t))
(goto-char 1)
(if (looking-at "\n") ;Remove first empty line...
(delete-char 1))
(with-output-to-temp-buffer "*Help*"
(princ (buffer-substring 1 (point-max))))
(kill-buffer "*BiBTemp*"))
(t
(with-output-to-temp-buffer "*Help*"
(princ (buffer-substring (point) end-point)))))
(bib-cite-fontify-help-as-latex))
;; Just find the section declaration
(goto-char the-point)
(if (re-search-backward
"\\(^\\|\^M\\)[ \t]*\\\\\\(sub\\)*section{\\([^}]*\\)}" nil t)
(message (buffer-substring (match-beginning 0)(match-end 0)))
(error
"Sorry, could not find an environment or section declaration")))))
(defvar LaTeX-find-label-hist-alist nil "History list for LaTeX-find-label")
(defvar LaTeX-label-list nil "Used by auc-tex to store label names")
(defun create-alist-from-list (the-list)
;;; Return a single list from a list that may contain either items
;;; or any number of list levels containing items.
;;; e.g. turns
;;; '(("label3" "label4")("label1" "label2") "label")
;;; into
;;; '(("label3") ("label4") ("label1") ("label2") ("label"))
(mapcar 'list (bib-cite-mh-list-to-string the-list)))
;;;
;;; Following two functions from mh-utils.el (part of GNU emacs)
;;; I have changed the names in case these functions change what they do.
;;;
(defun bib-cite-mh-list-to-string (l)
;; Flattens the list L and makes every element of the new list into a string.
(nreverse (bib-cite-mh-list-to-string-1 l)))
(defun bib-cite-mh-list-to-string-1 (l)
(let ((new-list nil))
(while l
(cond ((null (car l)))
((symbolp (car l))
(setq new-list (cons (symbol-name (car l)) new-list)))
((numberp (car l))
(setq new-list (cons (int-to-string (car l)) new-list)))
((equal (car l) ""))
((stringp (car l)) (setq new-list (cons (car l) new-list)))
((listp (car l))
(setq new-list (nconc (bib-cite-mh-list-to-string-1 (car l))
new-list)))
(t (error "Bad element in mh-list-to-string: %s" (car l))))
(setq l (cdr l)))
new-list))
;; -------------------------------------------------------------------------
;; Routines to extract cite keys from text
;; ... is truly remarkable, as shown in \citeN{Thomson77,Test56}. Every
;; \cite[{\it e.g.}]{Thomson77,Test56}
(defun bib-get-citations (keys-obarray bib-buffer new-buffer substitute)
"Put citations of KEYS-OBARRAY from BIB-BUFFER into NEW-BUFFER,
Substitute strings if SUBSTITUTE is t
Return the-warnings as text."
(let ((the-warnings) ;The only variable to remember...
(case-fold-search t)) ;All other results go into new-buffer
;; bibtex is not case-sensitive for keys.
(save-excursion
(let ((the-text))
(set-buffer bib-buffer)
(mapatoms ;Do this for each cite-key found...
(function
(lambda (cite-key)
(goto-char (point-min))
(if (re-search-forward
(concat "@[^{(]+[{(][\t ]*"
(regexp-quote (symbol-name cite-key))
"\\([, ]\\\|$\\)")
;; ^^ ^ comma, space or end-of-line
nil t)
(setq the-text (concat the-text
(buffer-substring
(progn (beginning-of-line)(point))
(progn (forward-sexp 2)(point)))
"\n\n"))
(setq the-warnings (concat the-warnings
"Cannot find entry for: "
(symbol-name cite-key) "\n")))))
keys-obarray)
(if (not the-text)
(error "Sorry, could not find any of the references"))
;; Insert the citations in the new buffer
(set-buffer new-buffer)
(insert the-text)
(goto-char 1))
;; We are at beginning of new-buffer.
;; Now handle crossrefs
(let ((crossref-obarray (make-vector 201 0)))
(while (re-search-forward
"[, \t]*crossref[ \t]*=[ \t]*\\(\"\\|\{\\)" nil t)
;;handle {text} or "text" cases
(if (string-equal "{" (buffer-substring (match-beginning 1)
(match-end 1)))
(re-search-forward "[^\}]+" nil t)
(re-search-forward "[^\"]+" nil t))
(intern (buffer-substring (match-beginning 0)(match-end 0))
crossref-obarray))
;; Now find the corresponding keys,
;; but add them only if not already in `keys-obarray'
(set-buffer bib-buffer)
(goto-char 1)
(let ((the-text))
(mapatoms ;Do this for each crossref key found...
(function
(lambda (crossref-key)
(if (not (intern-soft (symbol-name crossref-key) keys-obarray))
(progn
;; Not in keys-obarray, so not yet displayed.
(goto-char (point-min))
(if (re-search-forward
(concat "@[^{(]+[{(][\t ]*"
(regexp-quote (symbol-name crossref-key))
"\\(,\\|$\\)")
nil t)
(setq the-text
(concat the-text
(buffer-substring
(progn (beginning-of-line)(point))
(progn (forward-sexp 2)(point)))
"\n\n"))
(setq the-warnings
(concat the-warnings
"Cannot find crossref entry for: "
(symbol-name crossref-key) "\n")))))))
crossref-obarray)
;; Insert the citations in the new buffer
(set-buffer new-buffer)
(goto-char (point-max))
(if the-text
(insert the-text)))
(goto-char 1))
;; Now we have all citations in new-buffer, collect all used @String keys
;; Ex: journal = JPO,
(let ((strings-obarray (make-vector 201 0)))
(while (re-search-forward bib-string-regexp nil t)
(intern (buffer-substring (match-beginning 1)(match-end 1))
strings-obarray))
;; Now find the corresponding @String commands
;; Collect either the @string commands, or the string to substitute
(set-buffer bib-buffer)
(goto-char 1)
(let ((string-alist)
(the-text))
(mapatoms ;Do this for each string-key found...
(function
(lambda (string-key)
(goto-char (point-min))
;; search for @string{ key = {text}} or @string{ key = "text"}
(if (re-search-forward
(concat "^[ \t]*@string[{(]"
(regexp-quote (symbol-name string-key))
"[\t ]*=[\t ]*\\(\"\\|\{\\)")
nil t)
(let ((the-string-start (1- (match-end 1))) ;catch bracket
;;handle {text} or "text" cases
(the-string-end
(cond
((string-equal "\""
(buffer-substring (match-beginning 1)
(match-end 1)))
(re-search-forward "[^\\]\"" nil t)
(point))
(t
(forward-char -1)
(forward-list 1)
(point)))))
(if substitute ;Collect substitutions
(setq string-alist
(append
string-alist
(list
(cons (symbol-name string-key)
(regexp-quote
(buffer-substring the-string-start
the-string-end))))))
;;Collect the strings command themseves
(setq the-text
(concat the-text
(buffer-substring
(progn (forward-char 1)(point))
(re-search-backward "^[ \t]*@string[{(]"
nil t))
"\n"))))
;; @string entry not found
(if (not (member (symbol-name string-key)
bib-string-ignored-warning))
(setq the-warnings
(concat the-warnings
"Cannot find @String entry for: "
(symbol-name string-key) "\n"))))))
strings-obarray)
;; Now we have `the-text' of @string commands,
;; or the `string-alist' to substitute.
(set-buffer new-buffer)
(if substitute
(while string-alist
(goto-char 1)
(let ((the-key (car (car string-alist)))
(the-string (cdr (car string-alist))))
(while (re-search-forward
(concat "\\(^[, \t]*[a-zA-Z]+[ \t]*=[ \t]*\\)"
the-key
"\\([, \t\n]\\)")
nil t)
(replace-match (concat "\\1" the-string "\\2") t)))
(setq string-alist (cdr string-alist)))
;; substitute is nil; Simply insert text of @string commands
(goto-char 1)
(if the-text
(insert the-text "\n")))
(goto-char 1))))
;; We are done!
;; Return the warnings...
the-warnings))
(defun bib-get-citekeys-obarray ()
"Return obarray of citation key (within curly brackets) under cursor."
(save-excursion
;; First find *only* a key *within a cite command
(let ((the-point (point))
(keys-obarray (make-vector 201 0)))
;; First try to match a cite command
(if (and (skip-chars-backward "a-zA-Z") ;Stops on \ or {
(looking-at "[a-zA-Z]*cite[a-zA-Z]*"))
(progn
;;skip over any optional arguments to \cite[][]{key} command
(skip-chars-forward "a-zA-Z")
(while (looking-at "\\[")
(forward-list 1))
(re-search-forward "{[ \n]*\\([^,} \n]+\\)" nil t)
(intern (buffer-substring (match-beginning 1)(match-end 1))
keys-obarray)
(while (and (skip-chars-forward " \n") ;no effect on while
(looking-at ","))
(forward-char 1)
;;The following re-search skips over leading spaces
(re-search-forward "\\([^,} \n]+\\)" nil t)
(intern (buffer-substring (match-beginning 1)(match-end 1))
keys-obarray)))
;; Assume we are on the keyword
(goto-char the-point)
(let ((the-start (re-search-backward "[\n{, ]" nil t))
(the-end (progn (goto-char the-point)
(re-search-forward "[\n}, ]" nil t))))
(if (and the-start the-end)
(intern (buffer-substring (1+ the-start) (1- the-end))
keys-obarray)
;; Neither...
(error "Sorry, can't find a reference here"))))
keys-obarray)))
(defun bib-buffer-citekeys-obarray ()
"Extract citations keys used in the current buffer"
(let ((keys-obarray (make-vector 201 0)))
(save-excursion
(goto-char (point-min))
;; Following must allow for \cite[e.g.][]{key} !!!
;; regexp for \cite{key1,key2} was "\\\\[a-Z]*cite[a-Z]*{\\([^,}]+\\)"
(while (re-search-forward "\\\\[a-zA-Z]*cite[a-zA-Z]*\\(\\[\\|{\\)"
nil t)
(backward-char 1)
(while (looking-at "\\[") ; ...so skip all bracketted options
(forward-sexp 1))
;; then lookup first key
(if (looking-at "{[ \n]*\\([^,} \n]+\\)")
(progn
(intern (buffer-substring (match-beginning 1)(match-end 1))
keys-obarray)
(goto-char (match-end 1))
(while (and (skip-chars-forward " \n")
(looking-at ","))
(forward-char 1)
(re-search-forward "\\([^,} \n]+\\)" nil t)
(intern (buffer-substring (match-beginning 1)(match-end 1))
keys-obarray)))))
(if keys-obarray
keys-obarray
(error "Sorry, could not find any citation keys in this buffer.")))))
;;---------------------------------------------------------------------------
;; Multi-file document programming requirements:
;; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
;; bib-make-bibliography
;; bib-document-citekeys-obarray needs the master .aux file to extract
;; citation keys.
;; Included .aux files (corresponding to \include'd LaTeX files) are
;; then specified relative to the master-file-directory.
;;
;; bib-get-bibliography (used by interactive commands to extract bib sources)
;;
;; bibtex source filenames are returned from (LaTeX-bibliography-list)
;; unformatted. Since only a single \bibliogragrphy command is allowed
;; by BiBTeX in a document, it is safe to assume that their path is
;; relative to the master file's directory (since the path is relative
;; to where the BiBTeX program is actually ran).
;;
;; imenu
;;
;; Requires list of all tex files (complete with paths) to call etags on
;; them.
;; I used (TeX-style-list) to get the list of possible tex files, but
;; they are not in sorted order. Therefore the imenu would be somewhat
;; confusing. I'll have to do the scan myself, except that I'll only be
;; looking at the master file for \include statements.
;; (See TeX-check-files, used in TeX-save-document. All documents related
;; files are returned by (TeX-style-list) and stored in TeX-active-styles.
;; Original idea was to search TeX-check-path for files listed in
;; TeX-active-styles (with possible relative or full paths) that end in .tex.)
(defun bib-master-directory ()
;; Returns the directory associated with the master file.
;; If no master file, then return current default.
(let ((masterfile (bib-master-file)))
(if masterfile
(file-name-directory (expand-file-name (TeX-master-file)))
default-directory)))
(defun bib-master-file ()
;; return master file full path, or nil if not a multi-file document
;; I wish there were a better way to tell about non multi-file documents...
(let ((master
(cond
((not (boundp 'TeX-master))
;; This buffer doesn't know what a master file is, so return now.
nil)
((and TeX-master ;Set, but not to t
(not (eq TeX-master 't))) ; then we have an actual name
(expand-file-name TeX-master))
((and (eq TeX-master 't) ;Test if master file itself
(progn ;But also require at least one \include
(save-excursion
(goto-char 1) ;Too bad I have to do this search...
;; Require that user uses \input{file}
;; rather than \input file
(re-search-forward "^[ \t]*\\\\\\(include\\|input\\){"
nil t))))
(buffer-file-name))
(t
nil))))
(cond
((not master)
nil)
((string-match ".tex$" master)
master)
(t
(concat master ".tex")))))
;; I don't use this one because files are not returned in order...
;; (defun bib-document-TeX-files ()
;; ;; Return all tex input files associated with a known multi-file document.
;; (let ((master-directory (bib-master-directory))
;; (the-list (cons (file-name-nondirectory (TeX-master-file))
;; (TeX-style-list)))
;; ;; TeX-style-list returns "../master" for the main file if TeX-master
;; ;; was set like that. "../master" would not be found relative
;; ;; to the master-directory! So let's add it to the list w/o directory.
;; (the-result)
;; (the-file))
;; (while the-list
;; (setq the-file (expand-file-name (car the-list) master-directory))
;; (setq the-list (cdr the-list))
;; (and (not (string-match ".tex$" the-file))
;; (setq the-file (concat the-file ".tex")))
;; (and (file-readable-p the-file)
;; (not (member the-file the-result)) ;listed already?
;; (setq the-result (cons the-file the-result))))
;; the-result))
(defun bib-document-TeX-files ()
;; For a multi-file document in auctex only.
;; Return all tex input files associated with a *known* multi-file document.
;; No checking is done that this is a real multi-file document.
;; sets global variable bib-document-TeX-files-warnings
(setq bib-document-TeX-files-warnings nil)
(let* ((masterfile (bib-master-file))
(dir (and masterfile (file-name-directory masterfile)))
(tex-buffer (get-buffer-create "*tex-document*"))
(the-list (list masterfile))
(the-file))
(if (not masterfile)
(progn
(kill-buffer tex-buffer)
(error
"Sorry, but this is not a multi-file document (Try C-u C-c C-n if using auctex)")))
(save-excursion
(set-buffer tex-buffer)
;; set its directory so relative includes work without expanding
(setq default-directory dir)
(insert-file-contents masterfile)
(goto-char (point-min))
(while (re-search-forward "^[ \t]*\\\\\\(input\\|include\\){\\(.*\\)}"
nil t)
(let ((the-file (buffer-substring (match-beginning 2)(match-end 2))))
(if (string-match ".sty$" the-file) ;Skip over style files!
nil
(if (and (not (file-readable-p (expand-file-name the-file dir)))
(not (string-match ".tex$" the-file)))
(setq the-file (concat the-file ".tex")))
(setq the-file (expand-file-name the-file dir))
(if (not (file-readable-p the-file))
(setq bib-document-TeX-files-warnings
(concat
bib-document-TeX-files-warnings
(format "Warning: File not found: %s" the-file)))
(setq the-list (cons (expand-file-name the-file dir) the-list))
(end-of-line)(insert "\n")
(insert-file-contents the-file))))))
(kill-buffer tex-buffer)
(nreverse the-list)))
(defun bib-document-citekeys-obarray ()
;; Return cite keys obarray for multi-file document, or nil if not a multi-file
;; document. This is a auc-tex supported feature only.
;; Also, see bib-buffer-citekeys-obarray.
;; Sets global variable bib-document-citekeys-obarray-warnings.
(setq bib-document-citekeys-obarray-warnings nil)
(let ((master-tex (bib-master-file))
(master-aux))
(if (not master-tex)
nil ;Not a multifile document. No need...
(setq master-aux (bib-return-aux-file-from-tex master-tex "aux"))
(or (file-readable-p master-aux)
(error "Sorry, cannot read file %s" master-aux))
(and (file-newer-than-file-p master-tex master-aux)
(setq bib-document-citekeys-obarray-warnings
(format "Warning: %s is out of date relative to %s.\n"
master-aux master-tex)))
(let ((work-buffer (get-buffer-create "*bib-cite-work*"))
(keys-obarray (make-vector 201 0)))
(save-excursion
(set-buffer work-buffer)
(insert-file-contents master-aux)
;; Because we will be looking for \input statements, we need to set
;; the default directory to that of the master file.
(setq default-directory (file-name-directory master-tex))
;; bib-make-bibliography will need this also to find .bib files
;; look for \@input{chap1/part1.aux}
(while (re-search-forward "^\\\\@input{\\(.*\\)}$" nil t)
(let* ((auxfile (buffer-substring(match-beginning 1)(match-end 1)))
(texfile (bib-return-aux-file-from-tex auxfile "tex")))
(if (not (file-readable-p auxfile))
(setq bib-document-citekeys-obarray-warnings
(concat
bib-document-citekeys-obarray-warnings
(format "Warning: %s is not found or readable.\n"
auxfile)))
(if (file-newer-than-file-p texfile auxfile)
(setq bib-document-citekeys-obarray-warnings
(concat
bib-document-citekeys-obarray-warnings
(format
"Warning: %s is out of date relative to %s.\n"
auxfile texfile))))
(end-of-line)(insert "\n")
(insert-file-contents (buffer-substring (match-beginning 1)
(match-end 1))))))
(goto-char 1)
;;; Patched by calvanes@dis.uniroma1.it (Diego Calvanese)
;;; ;; look for \citation{gertsenshtein59}
;;; (while (re-search-forward "^\\\\citation{\\(.*\\)}$" nil t)
;;; (intern (buffer-substring (match-beginning 1)(match-end 1))
;;; keys-obarray))
;; look for \citation{gertsenshtein59,vardi88,...,ullmann90}
;; comma-separation generated by certain LaTeX styles.
(while (re-search-forward "^\\\\citation{\\(.*\\)}$" nil t)
(let ((string (buffer-substring (match-beginning 1)(match-end 1)))
(start 0))
(while (string-match "\\([^,\n]+\\)" string start)
(intern (substring string (match-beginning 1) (match-end 1))
keys-obarray)
(setq start (match-end 0))))))
(kill-buffer work-buffer)
keys-obarray))))
(defun bib-return-aux-file-from-tex (texname ext)
;; given name.name.XXX return name.name.ext
(concat (substring texname 0 -3) ext))
(defun bib-etags-find-noselect (tag &optional masterdir)
;; Returns a buffer with point on `tag'. buffer is not selected.
;; Makes sure TAGS file exists, etc.
(require 'etags)
(let* ((master (or masterdir (bib-master-directory)))
(the-buffer (current-buffer))
(new-buffer)
(the-tags-file-name (expand-file-name bib-etags-filename master)))
(or (file-exists-p the-tags-file-name) ;make sure TAGS exists
(bib-etags master))
(or (equal the-tags-file-name tags-file-name) ;make sure it's current
(visit-tags-table the-tags-file-name))
;; find-tag-noselect should set the TAGS file for the new buffer
;; that's what C-h f visit-tags-table says...
(if (string-match "XEmacs\\|Lucid" emacs-version)
(progn
(find-tag tag)
(setq new-buffer (current-buffer))
(set-buffer the-buffer))
(setq new-buffer (find-tag-noselect tag)) ;Seems to set buffer to TAGS
(set-buffer the-buffer))
new-buffer))
;;---------------------------------------------------------------------------
;; imenu stuff
;; All of this should only be loaded if imenu is *already* loaded because
;; we redefine imenu here.
(cond
(bib-use-imenu
(require 'imenu)
(require 'cl)
;;; Now done at end of this file:
;;(add-hook 'LaTeX-mode-hook 'LaTeX-hook-setq-imenu)
(defvar bib-imenu-document-counter nil
"bib-cite internal variable")
(defun imenu--create-LaTeX-index ()
;; dispatch to proper function, depending on whether a multi-file document.
(let ((masterfile (bib-master-file)))
(if masterfile
(imenu--create-LaTeX-index-for-document masterfile)
(imenu--create-LaTeX-index-for-buffer))))
(defun imenu--create-LaTeX-index-for-document (masterfile)
;; For a multi-file document in auctex only.
;; Create imenu--index-alist for master file buffer and use the same
;; for all input files? This would be faster... Maybe in next version?
;;FIXME: How about parsing TAGS file instead of search through all files?
(bib-etags) ;Create a new TAGS file, user needs it.
(let ((tex-buffer (get-buffer-create "*imenu-tex*"))
(index-alist '())
(index-label-alist '())
(prev-pos))
(save-excursion
(set-buffer tex-buffer)
;; set its directory so relative includes work without expanding
(setq default-directory (file-name-directory masterfile))
(insert-file-contents masterfile)
(goto-char (point-min))
(while (re-search-forward
"^[ \t]*\\\\\\(input\\|include\\){\\([^}]*\\)}" nil t)
(let ((the-file (buffer-substring (match-beginning 2)(match-end 2))))
(if (and (not (file-readable-p
(expand-file-name the-file default-directory)))
(not (string-match ".tex$" the-file)))
(setq the-file (concat the-file ".tex")))
(end-of-line)(insert "\n")
(insert-file-contents the-file)))
;; Now, the document is like any other tex file
(setq bib-imenu-document-counter -99) ;IDs menu entries start at -100
(goto-char (point-max))
(imenu-progress-message prev-pos 0 t)
(while
(re-search-backward
;;; "\\\\\\(\\(sub\\)*section\\|chapter\\|label\\){[^}]+}"
"\\(\\(\\\\label\\)\\|\\(^[ ]*\\\\\\(\\(sub\\)*section\\|chapter\\)\\)\\){[^}]+}"
nil t)
(imenu-progress-message prev-pos nil t)
(save-match-data
(save-excursion
(cond
((looking-at "\\\\label")
(push (imenu--LaTeX-name-and-etags)
index-label-alist))
(t
(push (imenu--LaTeX-name-and-etags)
index-alist))))))
(kill-buffer tex-buffer)
(imenu-progress-message prev-pos 100 t)
;;Michal Mnuk's add-on removes \label <Michal.Mnuk@risc.uni-linz.ac.at>
;;Plus PSG's fix for 19.31 w/o imenu-create-submenu-name
(and index-label-alist
(push (cons (or (and (fboundp 'imenu-create-submenu-name)
(imenu-create-submenu-name "Labels"))
"Labels")
(sort (imenu--remove-LaTeX-keyword-list
index-label-alist) 'imenu--label-cmp))
index-alist))
;;(and index-label-alist
;; (push (cons (imenu-create-submenu-name "Labels")
;; index-label-alist)
;; index-alist))
index-alist)))
(defun imenu--create-LaTeX-index-for-buffer ()
;; For non-multi-file documents.
(let ((index-alist '())
(index-label-alist '())
prev-pos)
(setq bib-imenu-document-counter -99) ;IDs menu entries starting at -100
(goto-char (point-max))
(imenu-progress-message prev-pos 0 t)
(while
(re-search-backward
;;; Better regexp, but slow
;;; "^[^;]*\\(\\\\\\)\\(\\(sub\\)*section\\|chapter\\|label\\){[^}]+}"
;;; Original regexp that would catch commented-out stuff
;;; "\\\\\\(\\(sub\\)*section\\|chapter\\|label\\){[^}]+}"
"\\(\\(\\\\label\\)\\|\\(^[ ]*\\\\\\(\\(sub\\)*section\\|chapter\\)\\)\\){[^}]+}"
nil t)
(imenu-progress-message prev-pos nil t)
(save-match-data
(save-excursion
(cond
((looking-at "\\\\label")
(push (imenu--LaTeX-name-and-position)
index-label-alist))
(t
(push (imenu--LaTeX-name-and-position)
index-alist))))))
(imenu-progress-message prev-pos 100 t)
;;Michal Mnuk's add-on removes \label <Michal.Mnuk@risc.uni-linz.ac.at>
;;Plus PSG's fix for 19.31 w/o imenu-create-submenu-name
(and index-label-alist
(push (cons (or (and (fboundp 'imenu-create-submenu-name)
(imenu-create-submenu-name "Labels"))
"Labels")
(sort (imenu--remove-LaTeX-keyword-list
index-label-alist) 'imenu--label-cmp))
index-alist))
;;(and index-label-alist
;; (push (cons (imenu-create-submenu-name "Labels")
;; index-label-alist)
;; index-alist))
index-alist))
;;Michal Mnuk's three routines:
(defun imenu--remove-LaTeX-keyword-list (llist)
"Remove the LaTeX KEYWORD from car's of all elements in LLIST."
(mapcar
(function (lambda (element)
(imenu--remove-LaTeX-keyword-el element "label")))
llist))
(defun imenu--remove-LaTeX-keyword-el (element keyword)
"Remove the LaTeX KEYWORD from car of ELEMENT."
(save-match-data
;; Should I have extra option here: "[
(if (string-match (concat "\\\\" keyword "{\\(.*\\)}") (car element))
(cons
(substring (car element) (match-beginning 1) (match-end 1))
(cdr element)))))
(defun imenu--label-cmp (el1 el2)
"Predicate to compare labels in lists produced by
imenu--create-LaTeX-index."
(string< (car el1) (car el2)))
(defun imenu--LaTeX-name-and-position ()
(save-excursion
;; We're on the opening slash
(let ((beg (point))
(end (progn (search-forward "{" nil t)
(forward-char -1)
(forward-sexp 1)
(point)))
(marker (make-marker)))
(set-marker marker beg)
(cons (buffer-substring beg end) marker))))
(defun imenu--LaTeX-name-and-etags ()
(save-excursion
(setq bib-imenu-document-counter (1- bib-imenu-document-counter))
(cons (buffer-substring (point)
(progn (search-forward "{")
(forward-char -1)
(forward-sexp 1)
(point)))
bib-imenu-document-counter)))
;; Updated to imenu in Emacs 19.33
(defun imenu (index-item)
"Jump to a place in the buffer chosen using a buffer menu or mouse menu.
See `imenu-choose-buffer-index' for more information."
(interactive
(list (save-restriction
(widen)
(imenu-choose-buffer-index))))
;; Convert a string to an alist element.
(if (stringp index-item)
(setq index-item (assoc index-item (imenu--make-index-alist))))
(and index-item
(progn
(push-mark)
(cond
((markerp (cdr index-item))
(if (or ( > (marker-position (cdr index-item)) (point-min))
( < (marker-position (cdr index-item)) (point-max)))
;; widen if outside narrowing
(widen))
(goto-char (marker-position (cdr index-item))))
;; PSG - Handle tags
((and (numberp (cdr index-item))
(< (cdr index-item) -99))
(find-tag (car index-item)))
(t
(if (or ( > (cdr index-item) (point-min))
( < (cdr index-item) (point-max)))
;; widen if outside narrowing
(widen))
(goto-char (cdr index-item)))))))
;;; end of bib-use-imenu stuff
))
;; --------------------------------------------------------------------------
;; The following routines make a temporary bibliography buffer
;; holding all bibtex files found.
(defun bib-get-bibliography (include-filenames-f)
"Returns a new bibliography buffer holding all bibtex files in the document.
If using auc-tex, and either TeX-parse-self is set or C-c C-n is used to
parse the document, then the entire multifile document will be searched
for \bibliography commands.
If this fails, the current buffer is searched for the first \bibliography
command.
If include-filenames-f is true, include as a special header the filename
of each bib file.
Puts the buffer in text-mode such that forward-sexp works with german \"
accents embeded in bibtex entries."
(let ((bib-list (or (and (fboundp 'LaTeX-bibliography-list)
(boundp 'TeX-auto-update)
(LaTeX-bibliography-list))
;; LaTeX-bibliography-list (if bound) returns an unformatted list of
;; bib files used in the document, but only if parsing is turned on
;; or C-c C-n was used.
(bib-bibliography-list)))
(bib-buffer (get-buffer-create "*bibtex-bibliography*"))
;; Path is relative to the master directory
(default-directory (bib-master-directory))
(the-name)(the-warnings)(the-file))
(save-excursion
;; such that forward-sexp works with embeeded \" in german,
;; and unbalanced ()
(set-buffer bib-buffer)
(erase-buffer)
(set-syntax-table text-mode-syntax-table)
;; (if (boundp 'bibtex-mode-syntax-table)
;; (set-syntax-table bibtex-mode-syntax-table)
;; (text-mode))
)
;;We have a list of bib files
;;Search for them, include them, list those not readable
(while bib-list
(setq the-name (car (car bib-list))) ;Extract the string only
(setq bib-list (cdr bib-list))
(setq the-name
(substring the-name
(string-match "[^ ]+" the-name) ;remove leading spaces
(string-match "[ ]+$" the-name))) ;remove trailing space
(if (not (string-match "\\.bib$" the-name))
(setq the-name (concat the-name ".bib")))
(setq the-file
(or
(and (file-readable-p (expand-file-name (concat "./" the-name)))
(expand-file-name (concat "./" the-name)))
(psg-checkfor-file-list the-name
(psg-list-env bib-bibtex-env-variable))
;; Check for BIBINPUT env variable as well (by popular demand!)
(psg-checkfor-file-list the-name (psg-list-env "BIBINPUT"))
(and (boundp 'TeX-check-path)
(psg-checkfor-file-list the-name TeX-check-path))))
(if the-file
(progn
(save-excursion
(set-buffer bib-buffer)
(goto-char (point-max))
(if include-filenames-f
(insert "%%%Filename: " the-file "\n"))
(insert-file-contents the-file nil)
(goto-char 1)))
(setq the-warnings
(concat the-warnings "Could not read file: " the-name "\n"))))
(if the-warnings
(progn
(with-output-to-temp-buffer "*Help*"
(princ the-warnings))
(kill-buffer bib-buffer)
(error
"Sorry, can't find all bibtex files in \\bibliography command"))
bib-buffer)))
(defun bib-bibliography-list ()
"Return list of bib files listed in first \\bibliography command in buffer
Similar output to auc-tex's LaTeX-bibliography-list
The first element may contain trailing whitespace (if there was any in input)
although BiBTeX doesn't allow it!"
(save-excursion
(goto-char 1)
(if (not (re-search-forward "^[ \t]*\\\\bibliography{[ \t]*\\([^},]+\\)"
nil t))
(error "Sorry, can't find \\bibliography command anywhere")
(let ((the-list (list (buffer-substring
(match-beginning 1)(match-end 1))))
(doNext t))
(while doNext
(if (looking-at ",")
(setq the-list
(append the-list
(list (buffer-substring
(progn (skip-chars-forward ", ")(point))
(progn (re-search-forward "[,}]" nil t)
(backward-char 1)
(skip-chars-backward ", ")
(point))))))
(setq doNext nil)))
(mapcar 'list the-list)))))
;; BibTeX-mode key def to create auc-tex's parsing file.
(defun bib-create-auto-file ()
"Force the creation of the auc-tex auto file for a bibtex buffer"
(interactive)
(if (not (require 'latex))
(error "Sorry, This is only useful if you have auc-tex"))
(let ((TeX-auto-save t)
(TeX-auto-update t)
(TeX-auto-regexp-list BibTeX-auto-regexp-list))
;; TeX-auto-write
;; -> calls TeX-auto-store
;; -> calls TeX-auto-parse
;; clears LaTeX-auto-bibtem (temporary holding space for bibitems)
;; searches buffer using regexp in TeX-auto-regexp-list
;; -> if LaTeX-auto-bibtem (the temporary holding space for bibitems)
;; holds stuffs like
;; ("Zimmermann:1991" "Anger_et_al:1993")
;; as determined by
;; (member nil (mapcar 'TeX-auto-entry-clear-p TeX-auto-parser))
;; then it creates the auto file.
;; TeX-auto-write may call TeX-master-file which may fail if
;; TeX-header-end is unset (by LaTeX-common-initialization in latex-mode)
(if (not TeX-header-end)
(setq TeX-header-end LaTeX-header-end))
(TeX-auto-write)))
;; --------------------------------------------------------------------------
;; The following routines are also defined in other packages...
;; Must be in sync with function of same name in ff-paths.el
(defun psg-checkfor-file-list (filename list)
"Check for presence of FILENAME in directory LIST. Return 1st found path."
;;USAGE: (psg-checkfor-file-list "gri.cmd" (psg-list-env "PATH"))
;;USAGE: (psg-checkfor-file-list "gri-mode.el" load-path)
;;USAGE: (psg-checkfor-file-list "gri.cmd" (psg-translate-ff-list "gri.tmp"))
(let ((the-list list)
(filespec))
(while the-list
(if (not (car the-list)) ; it is nil
(setq filespec (expand-file-name filename "~"))
(setq filespec
(concat (file-name-as-directory (car the-list)) filename)))
(if (file-exists-p filespec)
(setq the-list nil)
(setq filespec nil)
(setq the-list (cdr the-list))))
(if filespec
filespec
;; If I have not found a file yet, then check if some directories
;; ended in // and recurse through them.
(let ((the-list list))
(while the-list
(if (not (string-match "//$" (car the-list))) nil
(setq filespec (car
(search-directory-tree
(substring (car the-list) 0 (match-beginning 0))
(concat "^" filename "$")
t
t)))
(if filespec ;Success!
(setq the-list nil)))
(setq the-list (cdr the-list)))
filespec))))
(defun search-directory-tree (directories extension-regexp recurse first-file)
"Return a list of all reachable files in DIRECTORIES ending with EXTENSION.
DIRECTORIES is a list or a single-directory string
EXTENSION is actually (any) regexp, usually \\\\.bib$
If RECURSE is t, then we will recurse into the directory tree,
nil, we will only search the list given.
If FIRST-FILE is t, stop after first file is found."
(or (listp directories)
(setq directories (list directories)))
(let (match)
(while directories
(let* ((directory (file-name-as-directory (car directories)))
(content (and directory
(file-readable-p directory)
(file-directory-p directory)
(directory-files directory))))
(setq directories (cdr directories))
(while content
(let ((file (expand-file-name (car content) directory)))
(cond ((string-match "[.]+$" (car content))) ;This or parent dir
((not (file-readable-p file)))
((and recurse
(file-directory-p file))
(setq directories
(cons (file-name-as-directory file) directories)))
((string-match extension-regexp
(file-name-nondirectory file))
(and first-file
(setq content nil
directories nil))
(setq match (cons file match)))))
(setq content (cdr content)))))
match))
;;; (defun psg-checkfor-file-list (filename list)
;;; (let ((the-list list)
;;; (filespec))
;;; (while the-list
;;; (if (not (car the-list)) ; it is nil
;;; (setq filespec (concat "~/" filename))
;;; (setq filespec
;;; (concat (file-name-as-directory (car the-list)) filename)))
;;; (if (file-exists-p filespec)
;;; (setq the-list nil)
;;; (setq filespec nil)
;;; (setq the-list (cdr the-list))))
;;; filespec))
(or (fboundp 'dired-replace-in-string)
;; This code is part of GNU emacs
(defun dired-replace-in-string (regexp newtext string)
;; Replace REGEXP with NEWTEXT everywhere in STRING and return result.
;; NEWTEXT is taken literally---no \\DIGIT escapes will be recognized.
(let ((result "") (start 0) mb me)
(while (string-match regexp string start)
(setq mb (match-beginning 0)
me (match-end 0)
result (concat result (substring string start mb) newtext)
start me))
(concat result (substring string start)))))
;; Could use fset here to equal TeX-split-string to dired-split if only
;; dired-split is defined. That would eliminate a check in psg-list-env.
(and (not (fboundp 'TeX-split-string))
(not (fboundp 'dired-split))
;; This code is part of auc-tex
(defun TeX-split-string (char string)
"Returns a list of strings. given REGEXP the STRING is split into
sections which in string was seperated by REGEXP.
Examples:
(TeX-split-string \"\:\" \"abc:def:ghi\")
-> (\"abc\" \"def\" \"ghi\")
(TeX-split-string \" *\" \"dvips -Plw -p3 -c4 testfile.dvi\")
-> (\"dvips\" \"-Plw\" \"-p3\" \"-c4\" \"testfile.dvi\")
If CHAR is nil, or \"\", an error will occur."
(let ((regexp char)
(start 0)
(result '()))
(while (string-match regexp string start)
(let ((match (string-match regexp string start)))
(setq result (cons (substring string start match) result))
(setq start (match-end 0))))
(setq result (cons (substring string start nil) result))
(nreverse result))))
;; Must be in sync with function of same name in ff-paths.el
;; (See also PC-include-file-path in standard emacs ditsribution.)
(defun psg-list-env (env)
"Return a list of directory elements in ENVIRONMENT variable (w/o leading $)
argument may consist of environment variable plus a trailing directory, e.g.
HOME or HOME/bin (trailing directory not supported in dos or OS/2).
bib-dos-or-os2-variable affects:
path separator used (: or ;)
whether backslashes are converted to slashes"
(if (not (getenv env))
nil ;Because dired-replace-in-string fails
(let* ((value (if bib-dos-or-os2-variable
(dired-replace-in-string "\\\\" "/" (getenv env))
(getenv env)))
(sep-char (or (and bib-dos-or-os2-variable ";") ":"))
(entries (and value
(or (and (fboundp 'TeX-split-string)
(TeX-split-string sep-char value))
(dired-split sep-char value))))
entry
answers)
(while entries
(setq entry (car entries))
(setq entries (cdr entries))
(if (file-directory-p entry)
(setq answers (cons entry answers))))
(nreverse answers))))
(provide 'bib-cite)
;;; bib-cite.el ends here
|