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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Created on June 6, 2018 by texi2html 5.0
texi2html was written by:
Lionel Cons <Lionel.Cons@cern.ch> (original author)
Karl Berry <karl@freefriends.org>
Olaf Bachmann <obachman@mathematik.uni-kl.de>
and many others.
Maintained by: Many creative people.
Send bugs and suggestions to <texi2html-bug@nongnu.org>
-->
<head>
<title>Notes-mode</title>
<meta name="description" content="Notes-mode">
<meta name="keywords" content="Notes-mode">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="texi2html 5.0">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.smallquotation {font-size: smaller}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
div.lisp {margin-left: 3.2em}
div.smalldisplay {margin-left: 3.2em}
div.smallexample {margin-left: 3.2em}
div.smalllisp {margin-left: 3.2em}
pre.display {font-family: serif}
pre.format {font-family: serif}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
pre.smalldisplay {font-family: serif; font-size: smaller}
pre.smallexample {font-size: smaller}
pre.smallformat {font-family: serif; font-size: smaller}
pre.smalllisp {font-size: smaller}
span.nocodebreak {white-space:pre}
span.nolinebreak {white-space:pre}
span.roman {font-family:serif; font-weight:normal}
span.sansserif {font-family:sans-serif; font-weight:normal}
ul.no-bullet {list-style: none}
-->
</style>
</head>
<body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<h1>Notes-mode</h1>
<h3 align="right">Organizing on-line note-taking</h3>
<h3 align="right">Edition $Revision: 1.40 $, for notes-mode version 1.31</h3>
<h3 align="right">$Date: 2010/06/20 18:30:34 $</h3>
<strong>by John Heidemann</strong><br>
<p>Copyright © 1994-1996 by John Heidemann
</p>
<p>Permission is granted to make and distribute verbatim copies of
this manual provided the copyright notice and this permission notice
are preserved on all copies.
</p>
<p>Permission is granted to copy and distribute modified versions of this
manual under the conditions for verbatim copying, provided that the entire
resulting derived work is distributed under the terms of a permission
notice identical to this one.
</p>
<p>Permission is granted to copy and distribute translations of this manual
into another language, under the above conditions for modified versions,
except that this permission notice may be stated in a translation approved
by John Heidemann.
</p><hr>
<a name="Top"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[ << ]</td>
<td valign="middle" align="left">[ < ]</td>
<td valign="middle" align="left">[ Up ]</td>
<td valign="middle" align="left">[<a href="#What-is-it_003f" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#Basics" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#Introduction">1 Introduction</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Basics">2 Basics</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Advanced-Features">3 Advanced Features</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#History">4 History</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Installation">5 Installation</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Keystroke-index">Keystroke index</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Concept-index">Concept index</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><th colspan="3" align="left" valign="top"><pre class="menu-comment"> — The Detailed Node Listing —
Introduction
</pre></th></tr><tr><td align="left" valign="top"><a href="#What-is-it_003f">1.1 What is it?</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Why-keep-notes-at-all_003f">1.2 Why keep notes at all?</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Why-keep-notes-on_002dline_003f">1.3 Why keep notes on-line?</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Why-use-notes_002dmode_003f">1.4 Why use notes-mode?</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Y2K-Statement">1.5 Y2K Statement</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Related-work">1.6 Related work</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Staying-on-top">1.7 Staying on top</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><th colspan="3" align="left" valign="top"><pre class="menu-comment">
Basics
</pre></th></tr><tr><td align="left" valign="top"><a href="#Getting-started">2.1 Getting started</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#A-notes-file">2.2 A notes file</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#The-notes-index">2.3 The notes index</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#The-notes-directories">2.4 The notes directories</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><th colspan="3" align="left" valign="top"><pre class="menu-comment">
Advanced Features
</pre></th></tr><tr><td align="left" valign="top"><a href="#Notes-files">3.1 Notes files</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Notes-indices">3.2 Notes indices</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Notes_002dmode-configuration">3.3 Notes-mode configuration</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><th colspan="3" align="left" valign="top"><pre class="menu-comment">
Notes files
</pre></th></tr><tr><td align="left" valign="top"><a href="#Getting-around">3.1.1 Getting around</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Subject-summary">3.1.2 Subject summary</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Encryption">3.1.3 Encryption</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Useful-conventions">3.1.4 Useful conventions</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><th colspan="3" align="left" valign="top"><pre class="menu-comment">
History
</pre></th></tr><tr><td align="left" valign="top"><a href="#Notes_002dmode-history">4.1 Notes-mode history</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Credits">4.2 Credits</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Changes">4.3 Changes</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><th colspan="3" align="left" valign="top"><pre class="menu-comment">
</pre></th></tr></table>
<a name="Introduction"></a>
<a name="Introduction-1"></a>
<h1 class="chapter">1 Introduction</h1>
<p>What is notes-mode and why should you (perhaps) use it?
</p>
<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#What-is-it_003f">1.1 What is it?</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Why-keep-notes-at-all_003f">1.2 Why keep notes at all?</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Why-keep-notes-on_002dline_003f">1.3 Why keep notes on-line?</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Why-use-notes_002dmode_003f">1.4 Why use notes-mode?</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Y2K-Statement">1.5 Y2K Statement</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Related-work">1.6 Related work</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Staying-on-top">1.7 Staying on top</a></td><td> </td><td align="left" valign="top">
</td></tr>
</table>
<hr>
<a name="What-is-it_003f"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Introduction" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#Introduction" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#Introduction" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Why-keep-notes-at-all_003f" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#Basics" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="What-is-it_003f-1"></a>
<h2 class="section">1.1 What is it?</h2>
<p>Notes-mode is an indexing system for on-line note-taking.
Notes-mode is composed of two parts, the visible part,
a major-mode for emacs to aid note-taking;
and the invisible part,
scripts which periodically index your notes for you.
</p>
<p>Note that notes-mode provides tools to <em>index</em> your notes,
not to <em>search</em> them.
(Other existing tools such as ‘<tt>grep</tt>’, ‘<tt>agrep</tt>’, and ‘<tt>glimpse</tt>’
already allow file search.)
</p>
<p>A digression about indexing vs. searching:
Indexing in this sense means
organize them according to categories you give,
while searching looks through all text for arbitrary strings.
Drawing on the World Wide Web for examples,
Yahoo (‘<tt>http://www.yahoo.com/</tt>’) is an index,
while Alta Vista (‘<tt>http://www.altavista.digital.com/</tt>’)
is a search-engine.
In (potentially) more familiar terms,
the yellow pages
<a name="DOCF1" href="#FOOT1">(1)</a>
are an index,
while directory information (411 in the USA)
is sort of a search-engine.
</p>
<hr>
<a name="Why-keep-notes-at-all_003f"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Introduction" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#What-is-it_003f" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#Introduction" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Why-keep-notes-on_002dline_003f" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#Basics" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Why-keep-notes-at-all_003f-1"></a>
<h2 class="section">1.2 Why keep notes at all?</h2>
<p>So why should you use notes-mode?
Well, first, consider why you should (perhaps)
keep your notes on line.
First,
I assume that you take notes as part of your work or school.
If you don’t,
you can stop reading now and go back to watching TV.
</p>
<p>If you keep notes, ask yourself why you keep them.
Reasons vary for different people, but some include:
</p>
<ul>
<li>
To remember what is said or done.
</li><li>
To focus on what is important about what is said.
</li><li>
To provide proof of having done something
at a particular time or date.
</li><li>
I know there were other reasons here,
but they slipped my mind.
</li></ul>
<hr>
<a name="Why-keep-notes-on_002dline_003f"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Introduction" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#Why-keep-notes-at-all_003f" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#Introduction" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Why-use-notes_002dmode_003f" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#Basics" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Why-keep-notes-on_002dline_003f-1"></a>
<h2 class="section">1.3 Why keep notes on-line?</h2>
<p>OK, I’ve talked you into keeping notes.
Why do it on-line?
Again, there are different reasons for different people.
If you don’t want to consider keeping your notes on-line,
you’re welcome to go back to your (clay tablets)
paper notes.
</p>
<p>However, if you do much of your work on-line,
or if you have portable computer,
then you might want to consider keeping your notes on-line.
</p>
<ul>
<li>
It’s faster to type than write,
and possibly more legible at high speed.
</li><li>
Often information is already on-line.
For example, in software development, bug reports,
measurement results, and everything else that’s useful
is on-line.
</li><li>
You can take down more detail than you otherwise would
(especially if the data is already on-line).
Taking more copious notes can be helpful when you go back
to figure out why that strange thing was happening.
</li><li>
On-line notes are easy to search.
Full-text search with
grep, agrep, and glimpse are all much faster
and are often more accurate than paging through paper notes
looking for a particular keyword.
</li><li>
On-line notes are easy to index.
(At least with notes-mode!)
In addition to full-text search,
it’s helpful to organize notes by category.
If you keep a table-of-contents of your paper notes,
you are either extremely fastidious
or a librarian (Nadia?).
</li><li>
You can keep all of your notes with you at all times
(if you have a portable computer).
Even at a page a day,
paper notes quickly become bulky and awkward to carry around.
On-line notes fit on your computer’s hard disk,
an extraordinarily compact medium
by comparison.
</li><li>
Your notes can be automatically backed up.
Paper notes can become damaged with time,
and as a graduate student
one of my fears was fire in Boelter Hall
consuming all my research experiments
and and therefore hopes of a degree.
Electronic notes are extremely easy to duplicate
and can be automatically backed up with the rest of your computer.
(You <em>do</em> back up your computer, don’t you?)
</li></ul>
<p>While these advantages are undoubtedly clear to any
right-thinking computer user,
it should be said that there are a few disadvantages
for on-line note-taking.
</p>
<ul>
<li>
If you don’t have a computer with you most of the time,
it’s difficult take notes on-line (because you’re off-line, of course).
<a name="DOCF2" href="#FOOT2">(2)</a>
</li><li>
Computers require power.
If your portable computer runs out of juice,
you’re on your own.
Corollary: watch your power, or bring paper.
Better corollary: watch your power, <em>and</em> bring paper.
</li><li>
Social limitations.
It’s not always socially acceptable to take notes-on-line.
For example,
at a party,
few people would use a computer
to take down the phone number of a person
to whom they’re attracted
(at least, if they wanted the attraction to be mutual).
<a name="DOCF3" href="#FOOT3">(3)</a>
Sometimes other people find the sound of typing distracting.
</li><li>
Health issues.
Repetitive stress injuries do occur
writing (slower) by hand is at least
an alternate motion than typing.
</li><li>
Legal limitations.
If you want to use your electronic notes
to justify a patent or invention,
you may be breaking legal ground.
Being on the legal cutting-edge is rarely an easy thing
for the person involved.<a name="DOCF4" href="#FOOT4">(4)</a>
</li></ul>
<hr>
<a name="Why-use-notes_002dmode_003f"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Introduction" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#Why-keep-notes-on_002dline_003f" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#Introduction" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Y2K-Statement" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#Basics" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Why-use-notes_002dmode_003f-1"></a>
<h2 class="section">1.4 Why use notes-mode?</h2>
<p>OK, I’ve sold you on note-taking and even on on-line note-taking.
What about notes-mode?
Naturally,
it slices, dices, and makes julienne fries.
But wait, there’s more:
</p>
<ul>
<li>
It automates indexing your notes,
linking notes with the same subject together.
</li><li>
It supports embedded links,
allowing you to manually link together different topics
and external files.
</li><li>
It includes a number of convenience-features in emacs.
Subjects can be completed based on existing subjects.
The usual emacs customization mechanisms are available.
</li><li>
Notes containing sensitive information can be encrypted.
</li><li>
Notes-mode seems better than the other, currently available alternatives.
</li></ul>
<p>What are the alternatives? I’m glad you asked.
<a name="DOCF5" href="#FOOT5">(5)</a>
</p>
<ul>
<li>
<strong>HTML</strong>.
HTML has better formatting capabilities than notes-mode,
and it has excellent linking capabilities.
Unfortunately,
HTML’s tags are fairly intrusive
(each is at least four characters long and most come with a pair),
tags can get confused with normal text,
errors in HTML can be bad (obscuring data),
and there’s no automatic indexing feature
(at least with plain HTML).
Besides,
all data should be kept as close to the ASCII from whence it came,
as God Intended (hi, Steve).
</li><li>
<strong>Word Processors</strong>.
Word processors are strong in the formatting department,
but most don’t really have linking capabilities,
and have poor or restricted indexing.
</li></ul>
<hr>
<a name="Y2K-Statement"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Introduction" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#Why-use-notes_002dmode_003f" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#Introduction" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Related-work" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#Basics" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Y2K-Statement-1"></a>
<h2 class="section">1.5 Y2K Statement</h2>
<p>Notes mode uses dates extensively,
both two-digit years and seconds-since-1970.
However, notes-mode has been coded to function correctly through
the year 2038.
</p>
<p>To avoid problems with the year 2000, notes-mode assumes
that any two-digit years before “70” are 20xx, not 19xx.
Notes-mode should therefore work correctly in both the year 1999 and 2000.
</p>
<p>(Notes-mode 1.17 released February 1999 fixes a lingering Y2K problem.)
</p>
<p>Because notes-mode uses seconds-since-1970 for some date calculations
it will fail beyond the year 2038 on computers with 32-bit integers.
</p>
<p>If I’m still using notes-mode then on a 32-bit machine I’ll see what I can do.
</p>
<hr>
<a name="Related-work"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Introduction" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#Y2K-Statement" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#Introduction" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Staying-on-top" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#Basics" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Related-work-1"></a>
<h2 class="section">1.6 Related work</h2>
<p>What would a document be without related work?
</p>
<p>Notes-mode is not related in any way to Lotus Notes.
</p>
<p>I am told (by David Weisman)
that it’s something like the now defunct Lotus Agenda.
</p>
<p>Ashvin Goel, one of the contributors to notes-mode,
has gone off and done a from-scratch reimplementation
called records-mode.
It’s very similar to notes mode,
and emphasizes on-the-fly updates to entry links
but lacks a manual.
You may want to check it out at
‘<tt>http://www.cse.ogi.edu/~ashvin/software.html</tt>’.
</p>
<p>Hyperbole (by Bob Weiner) offers better linking facilities
than notes-mode, but it has a bunch of stuff notes-mode doesn’t need
and it’s missing notes-specific indexing provided by notes-mode.
For people already using Hyperbole
it would be interesting to replace notes-mode’s linking
with Hyperbole’s.
Contributions in this area are welcome, provided they make Hyperbole
optional.
</p>
<hr>
<a name="Staying-on-top"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Introduction" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#Related-work" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#Introduction" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Basics" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#Basics" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Staying-on-top-1"></a>
<h2 class="section">1.7 Staying on top</h2>
<p>The most recent distribution of notes-mode
is always available via
‘<tt>http://www.isi.edu/~johnh/SOFTWARE/NOTES_MODE/</tt>’.
</p>
<p>After you’ve installed notes mode you’re encouraged to subscribe
to the mailing lists.
To subscribe, go to the web page
Send the message "subscribe" to
‘<tt>http://www.heidemann.la.ca.us/mailman/listinfo/notes-mode-announce</tt>’ or
‘<tt>http://www.heidemann.la.ca.us/mailman/listinfo/notes-mode-talk</tt>’.
</p>
<p>The announce list will contain only release announcements
and so is guaranteed to be very low bandwidth.
</p>
<hr>
<a name="Basics"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Introduction" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#Staying-on-top" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[ Up ]</td>
<td valign="middle" align="left">[<a href="#Getting-started" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#Advanced-Features" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Basics-1"></a>
<h1 class="chapter">2 Basics</h1>
<p>All you need to use notes-mode
in a chapter.
(Except for installation, See section <a href="#Installation">Installation</a>.)
</p>
<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#Getting-started">2.1 Getting started</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#A-notes-file">2.2 A notes file</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#The-notes-index">2.3 The notes index</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#The-notes-directories">2.4 The notes directories</a></td><td> </td><td align="left" valign="top">
</td></tr>
</table>
<hr>
<a name="Getting-started"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Basics" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#Basics" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#Basics" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#A-notes-file" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#Advanced-Features" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Getting-started-1"></a>
<h2 class="section">2.1 Getting started</h2>
<a name="index-notesinit"></a>
<a name="index-setup"></a>
<p>To get started with notes-mode,
read the introduction this chapter,
then either:
</p>
<ul>
<li>
Start emacs, do
<kbd>M-x</kbd> <code>load-library</code> <kbd>RET</kbd> <code>notes-mode</code> <kbd>RET</kbd>
This approach will set up notes-mode with the default parameters.
</li><li>
OR, from the shell,
run the program ‘<tt>notesinit</tt>’.
This approach will ask you some questions about how you want to configure
notes mode.
</li></ul>
<p>Either way these should set up everything notes-mode needs.
This program will modify your environment (as described in this section),
or it will give you the exact commands you should run yourself.
</p>
<p>After you’ve done one of these,
start up emacs and note-away.
I usually begin a
day of note-taking by running the command
<kbd>M-x</kbd> <code>notes-index-todays-link</code>
to jump directly to today’s note.
You may even wish to bind this to something,
perhaps with
<code>(define-key global-map "\C-cn" 'notes-index-todays-link)</code>
in your ‘<tt>.emacs</tt>’.
</p>
<p>If you want to browse your existing notes,
you might instead want to edit the
‘<tt>~/NOTES/index</tt>’.
(What is a notes file and the index? Hurry up and finish
reading this chapter.)
</p>
<hr>
<a name="A-notes-file"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Basics" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#Getting-started" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#Basics" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#The-notes-index" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#Advanced-Features" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="A-notes-file-1"></a>
<h2 class="section">2.2 A notes file</h2>
<a name="index-Notes-files"></a>
<p>The notes file is the focus of most of the activity in notes-mode,
it’s where you take your notes.
Notes files are mostly free-form text
broken up into <em>entries</em>.
Here’s an example:
</p>
<a name="index-Notes-entries"></a>
<div class="example">
<pre class="example">8-Jun-95 Thursday
-----------------
* Today
-------
prev: <none>
next: <file:///~/NOTES/199506/950609#* Today>
next week - release notes-mode
* Environment/notes
-------------------
I explained notes mode to Ashvin and Geoff.
...
</pre></div>
<p>Each entry has a subject-block, (maybe) some links, and then (maybe) some text.
</p>
<p>The subject-block must begin with an asterisk-space (<kbd>* </kbd>)
at the beginning of a line, followed by the subject itself.
Subjects must be underlined with a row of dashes
(if they’re not exact, that’s OK;
notes-mode will fix them periodically).
For convenience,
notes-mode will automatically add the underlines when you
hit <kbd><RTN></kbd> (<code>notes-electric-return</code>),
and <kbd><TAB></kbd> on a partially completed subject will
invoke completion based on indexed subjects (<code>notes-complete-subject</code>).
<a name="index-Notes-subjects"></a>
<a name="index-RTN"></a>
<a name="index-TAB"></a>
</p>
<p>Following the subject may be links.
(In the example, the “Today” entry has links,
the “Environment/notes” entry doesn’t.)
These links will be automatically updated by notes-mode
when your notes are re-indexed;
just leave a blank line when writing the note.
<a name="index-Notes-links"></a>
</p>
<p>Links are made with pseudo-URLs,
sort of like those in the World Wide Web.
Any of these URLs can be followed in notes-mode files
by clicking <kbd>S-mouse-2</kbd> on the pseudo-URL
(<code>notes-w3-follow-link-mouse</code>).
<a name="index-Pseudo_002dURLs"></a>
<a name="index-URLs"></a>
<a name="index-S_002dmouse_002d2"></a>
</p>
<p>Finally comes the text.
Go wild, but just don’t include text that looks like a subject.
You can embed pseudo-URLs to link notes together manually.
</p>
<p>The more anal of you may have noticed
that the lines before the first subject
are not part of any entry.
These lines are
<em>front matter</em>.
They’re not usually used for much,
but they can be a good place to label the file.
<a name="index-Notes-files_002c-font-matter"></a>
<a name="index-Font-matter"></a>
</p>
<p>There are a number of useful conventions
that can be adopted to organize your notes.
The most common is the “Today” entry.
If you keep an entry with the same subject
at the beginning of each file,
you link all of your notes together.
Notes-mode will help you out with some of these convetions
by automatically creating or copying some fields for you;
see see section <a href="#Useful-conventions">Useful conventions</a> for details.
</p>
<p>Finally, notes-mode can also work with outline-minor-mode
(thanks to Tim Carroll for pointing this out).
Outline-mode supports hiding and revealing text and other helpful
features beyond the scope of this document.
See <a href="http://www.gnu.org/software/emacs/manual/html_mono/emacs.html#Outline-Mode">Outline Mode</a> in <cite>The Emacs Editor</cite>, for details.
</p>
<hr>
<a name="The-notes-index"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Basics" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#A-notes-file" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#Basics" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#The-notes-directories" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#Advanced-Features" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="The-notes-index-1"></a>
<h2 class="section">2.3 The notes index</h2>
<a name="index-Notes-index"></a>
<p>The notes index lists all subjects you’ve kept notes about,
and each date of each note.
Impress your friends,
show your advisor why you’re worth the <em>big</em> peanuts,
you’ll soon have the biggest index of all.
</p>
<p>The index has one line per subject, listing the subject
and each day a note was made about that subject.
For example:
</p>
<div class="example">
<pre class="example">Bicycle: 950314, 950316
Bicycle/maintenance/books: 951028
Bridge/hands: 951113, 951114, 951116, 951117
Bridge/UCLA: 960222, 960409
</pre></div>
<p>Clicking on any of the dates with <kbd>mouse-2</kbd>
will take you to that note
(<code>notes-index-mouse-follow-link</code>).
(You can also move the point over the date and hit <kbd><RTN></kbd>
if you’re musaphobic [<code>notes-index-follow-link</code>].)
<a name="index-mouse_002d2"></a>
<a name="index-RTN-1"></a>
</p>
<p>The notes index is automatically updated by the program ‘<tt>mkall</tt>’.
Typically ‘<tt>mkall</tt>’ is run nightly by ‘<tt>cron</tt>’.
On most modern versions of Unix, you can add this command to cron by
running ‘<tt>crontab -e</tt>’ and adding the line:
</p>
<div class="example">
<pre class="example">0 4 * * * /usr/local/lib/notes-mode/mkall
</pre></div>
<a name="index-Crontab"></a>
<a name="index-mkall"></a>
<a name="index-re_002dindexing"></a>
<p>(Assuming that your notes programs are installed
in /usr/local/lib/notes-mode, the default location.)
</p>
<hr>
<a name="The-notes-directories"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Basics" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#The-notes-index" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#Basics" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Advanced-Features" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#Advanced-Features" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="The-notes-directories-1"></a>
<h2 class="section">2.4 The notes directories</h2>
<a name="index-Notes-directories"></a>
<a name="index-Directory-hierarchy"></a>
<p>The final thing needed to tie basic notes-mode together his how
the pieces fit together.
Since my graduate work is in file systems,
you can bet that directories are involved.
</p>
<p>Notes-mode keeps its files in a two-level hierarchy:
</p>
<div class="example">
<pre class="example">~/NOTES
~/NOTES/index
~/NOTES/rawindex
~/NOTES/199603
~/NOTES/199603/960329
~/NOTES/199603/960330
~/NOTES/199604
~/NOTES/199604/960401
</pre></div>
<p>The top level, ‘<tt>~/NOTES</tt>’, is the notes directory.
It keeps all notes in one place.
(The name of this directory is configurable, See section <a href="#Notes_002dmode-configuration">Notes-mode configuration</a>.)
</p>
<p>Inside the notes directory are two files and a number of directories.
The files are ‘<tt>index</tt>’,
the index of all entries (see section <a href="#The-notes-index">The notes index</a>),
and ‘<tt>rawindex</tt>’,
used internally.
<a name="index-Root-directory"></a>
</p>
<p>The notes directory also contains a number of subdirectories,
sometimes called <em>intermediate directories</em>.
These directories group the actual notes files into manageable chunks,
keeping any directory from getting too large.
Intermediate directories are named
by the four-digit year and the two-digit month
of the entries they contain.
(The format of intermediate directories
is configurable, See section <a href="#Notes_002dmode-configuration">Notes-mode configuration</a>.)
<a name="index-Intermediate-directories"></a>
</p>
<p>Finally,
each intermediate directory are the notes files themselves,
named according to the two-digit year, month, and day-of-month.
<a name="index-Notes-files-1"></a>
</p>
<p>For the most part,
notes-mode will automatically maintain this organization of files,
once you create the top-level directory.
Notes-mode will also automatically insure
that all files in the notes directory are unreadable by
anyone other than their owner.
Notes are personal things.
(This behavior is not currently configurable,
but it probably should be.)
<a name="index-Notes-file-permissions"></a>
</p>
<hr>
<a name="Advanced-Features"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Basics" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#The-notes-directories" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[ Up ]</td>
<td valign="middle" align="left">[<a href="#Notes-files" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#History" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Advanced-Features-1"></a>
<h1 class="chapter">3 Advanced Features</h1>
<p>Notes-mode, the minutiae, and some other good stuff.
</p>
<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#Notes-files">3.1 Notes files</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Notes-indices">3.2 Notes indices</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Notes_002dmode-configuration">3.3 Notes-mode configuration</a></td><td> </td><td align="left" valign="top">
</td></tr>
</table>
<hr>
<a name="Notes-files"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Advanced-Features" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#Advanced-Features" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#Advanced-Features" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Getting-around" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#History" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Notes-files-1"></a>
<h2 class="section">3.1 Notes files</h2>
<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#Getting-around">3.1.1 Getting around</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Subject-summary">3.1.2 Subject summary</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Encryption">3.1.3 Encryption</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Useful-conventions">3.1.4 Useful conventions</a></td><td> </td><td align="left" valign="top">
</td></tr>
</table>
<hr>
<a name="Getting-around"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Advanced-Features" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#Notes-files" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#Notes-files" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Subject-summary" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#History" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Getting-around-1"></a>
<h3 class="subsection">3.1.1 Getting around</h3>
<p>Moving between notes entries and around the hierarchy is fairly common,
so there are some accelerators.
</p>
<dl compact="compact">
<dt><kbd>C-c C-i</kbd></dt>
<dd><p>Jump to the index entry for the current entry’s subject
(<code>notes-goto-index-entry</code>).
<a name="index-C_002dc-C_002di"></a>
</p>
</dd>
<dt><kbd>C-c C-n</kbd></dt>
<dt><kbd>C-c C-p</kbd></dt>
<dd><p>Move to the next or prior note with the same subject
(<code>notes-follow-next-link</code> and <code>notes-follow-prev-link</code>).
These functions follow the links in the note,
if they’re defined.
If not,
they look through the index file.
This approach usually works,
but will fail if there are multiple new entries created
with the given subject
between when the index is recomputed.
<a name="index-C_002dc-C_002dn"></a>
<a name="index-C_002dc-C_002dp"></a>
</p>
</dd>
<dt><kbd>C-c<RTN></kbd></dt>
<dd><p>Follow the link under the point
(<code>notes-w3-follow-link</code>),
a keyboard equivalent of <S-mouse-2>.
<a name="index-C_002dcRTN"></a>
</p>
</dd>
<dt><kbd>M-C-a</kbd></dt>
<dt><kbd>M-C-e</kbd></dt>
<dd><p>Jump to the beginning or end of the current note entry
(<code>notes-beginning-of-defun</code> and <code>notes-end-of-defun</code>).
<a name="index-M_002dC_002da"></a>
<a name="index-M_002dC_002de"></a>
</p>
</dd>
<dt><kbd>C-c C-k</kbd></dt>
<dd><p>Copies the pseudo-URL for the current note into the kill-ring
(<code>current-url-as-kill</code>).
To link two entries, go to the target,
grab its URL with <kbd>C-c C-k</kbd>,
go to where you want to make the link,
and yank the URL with <kbd>C-y</kbd>.
<a name="index-C_002dc-C_002dk"></a>
</p>
</dd>
</dl>
<p>Notes mode supports imenu,
if you have it bound to something
(I use <code>(global-set-key [down-mouse-3] 'imenu)</code>).
<a name="index-imenu"></a>
</p>
<hr>
<a name="Subject-summary"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Advanced-Features" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#Getting-around" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#Notes-files" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Encryption" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#History" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Subject-summary-1"></a>
<h3 class="subsection">3.1.2 Subject summary</h3>
<p>It’s often helpful to look at all
entries for a given subject
<kbd>C-c C-s</kbd>
collects all entries with the subject of the current
entry in a new buffer
(<code>notes-summarize-subject</code>).
<a name="index-C_002dc-C_002ds"></a>
<a name="index-Subject-summary"></a>
</p>
<hr>
<a name="Encryption"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Advanced-Features" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#Subject-summary" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#Notes-files" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Useful-conventions" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#History" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Encryption-1"></a>
<h3 class="subsection">3.1.3 Encryption</h3>
<a name="index-Encryption"></a>
<a name="index-Decryption"></a>
<p>Notes occasionally contain private material.
While Unix has strong services for file protection
(compared to other, say, more wide-selling operating systems),
in many systems root passwords are shared,
while other systems are vulnerable to physical compromise.
In such systems,
properly used encryption is the best approach to security.
</p>
<p>Notes-mode encryption is based
Phill Zimmerman’s PGP (Pretty Good Privacy)
(see ‘<tt>http://www.mantis.co.uk/pgp/pgp.html</tt>’)
and requires either
EasyPG
(installed with emacs-24)
or
or LoPresti and Choi’s mailcrypt
(from ‘<tt>http://cag-www.lcs.mit.edu/mailcrypt/</tt>’).
<a name="index-PGP"></a>
<a name="index-Pretty-good-privacy"></a>
<a name="index-PAM"></a>
<a name="index-PGP-Augmented-Messaging"></a>
<a name="index-mailcrypt"></a>
</p>
<dl compact="compact">
<dt><kbd>C-c C-e</kbd></dt>
<dd><p>Encrypt the current note
(<code>notes-encrypt-note</code>).
By default this function encrypts the whole entry.
With a prefix argument,
only the part from the point to the end of the entry is encrypted.
<a name="index-C_002dc-C_002de"></a>
</p>
</dd>
<dt><kbd>C-c C-d</kbd></dt>
<dd><p>Decrypt the current note
(<code>notes-decrypt-note</code>).
</p></dd>
</dl>
<a name="index-C_002dc-C_002dd"></a>
<p>By default notes-mode determines your public key by
asking you.
You can override this default by setting
<code>notes-encryption-key-id</code>
to the desired key-id (usually 8 hex digits).
<a name="index-key_002did"></a>
</p>
<hr>
<a name="Useful-conventions"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Advanced-Features" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#Encryption" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#Notes-files" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Notes-indices" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#History" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Useful-conventions-1"></a>
<h3 class="subsection">3.1.4 Useful conventions</h3>
<a name="index-conventions"></a>
<a name="index-mknew"></a>
<p>There are a number of conventions which can make notes-mode
easier to use.
These conventions are a matter of personal taste,
of course.
Do what works for you.
</p>
<p>First,
I find it helpful to keep the date of each notes-file at the top
of the file.
This makes the file self-identifying
if the filename is lost.
</p>
<p>Second,
I find it useful to have the first entry of each file
have the same subject (perhaps “Today”).
This entry then links all notes together,
making it easy to go to yesterday and tomorrow.
I keep a to-do list on this entry,
bringing the list forward each day.
<a name="index-Today"></a>
</p>
<p>A third useful convention is to keep an
entry with the name based on the day of the week
in each file.
Analogous to “Today”, this entry links together
weeks.
</p>
<p>Notes-mode supports these conventions.
When you make a new notes-file in emacs,
notes-mode searches for the preceding file.
If it follows any of these conventions,
the new file is initialized appropriately.
Currently
the approach to do this process
(in the program ‘<tt>mknew</tt>’)
is fairly sensitive,
so it may not work in all cases.
In particular,
the date convention works only on
for English-language dates.
(If you use notes-mode with a non-English language,
let me know and I’ll work with you to fix this limitation.)
</p>
<p>If you find other helpful conventions,
please let me know.
Modifications to ‘<tt>mknew</tt>’ to implement
new conventions are also invited.
</p>
<p>If you don’t want to use these conventions,
or if you want to use different ones,
set the emacs variable notes-mode-initialization-program
to nil or the name of your initialization program.
<a name="index-notes_002dmode_002dinitialization_002dprogram"></a>
</p>
<hr>
<a name="Notes-indices"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Advanced-Features" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#Useful-conventions" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#Advanced-Features" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Notes_002dmode-configuration" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#History" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Notes-indices-1"></a>
<h2 class="section">3.2 Notes indices</h2>
<p>Only two features of notes index mode haven’t yet been described.
First,
you can open any notes-file based on date
with <code>notes-index-link</code>,
normally bound to <o>.
<a name="index-o"></a>
</p>
<p>Second,
you can get a subject-summary
with <C-c C-s>
(see section <a href="#Subject-summary">Subject summary</a>).
The subject defaults to that of the current index line.
<a name="index-C_002dc-C_002ds-1"></a>
</p>
<hr>
<a name="Notes_002dmode-configuration"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Advanced-Features" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#Notes-indices" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#Advanced-Features" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#History" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#History" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Notes_002dmode-configuration-1"></a>
<h2 class="section">3.3 Notes-mode configuration</h2>
<a name="index-configuration"></a>
<a name="index-_002enotesrc"></a>
<p>Several aspects of notes mode are particularly visible
to the user.
Because I’m not a fascist,
a user can change most of these.
</p>
<p>Preferences are specified in ‘<tt>~/.notesrc</tt>’.
This file lists things to change:
</p>
<div class="example">
<pre class="example"># lines beginning with a hash are comments
dir: ~/NOTES
int_form: %Y%m
</pre></div>
<p>Currently, two things can be changed:
</p>
<dl compact="compact">
<dt><code>dir</code></dt>
<dd><p>Specifies the root of the notes directory hierarchy
(see section <a href="#The-notes-directories">The notes directories</a>).
</p>
</dd>
<dt><code>int_form</code></dt>
<dd><p>Specifies the form of the intermediate directory.
A limited subset of <code>strftime(3)</code>
formatting is allowed.
</p></dd>
</dl>
<p>The subset of <code>strftime(3)</code> supported in <code>int_form</code> is:
</p><dl compact="compact">
<dt><code>%Y</code></dt>
<dd><p>The four-digit year.
</p>
</dd>
<dt><code>%y</code></dt>
<dd><p>The two-digit year.
</p>
</dd>
<dt><code>%m</code></dt>
<dd><p>A two-digit numeric month.
</p>
</dd>
<dt><code>%d</code></dt>
<dd><p>A two-digit day.
</p></dd>
</dl>
<p>In addition to ‘<tt>.notesrc</tt>’,
there are a number of emacs-specific variables.
These variables are documented in the file
‘<tt>notes-variables.el</tt>’.
</p>
<hr>
<a name="History"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Advanced-Features" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#Notes_002dmode-configuration" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[ Up ]</td>
<td valign="middle" align="left">[<a href="#Notes_002dmode-history" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#Installation" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="History-1"></a>
<h1 class="chapter">4 History</h1>
<p>More about notes-mode than you wanted to know,
and some thanks.
</p>
<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#Notes_002dmode-history">4.1 Notes-mode history</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Credits">4.2 Credits</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Changes">4.3 Changes</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#Suggested-features">4.4 Suggested features</a></td><td> </td><td align="left" valign="top">
</td></tr>
</table>
<hr>
<a name="Notes_002dmode-history"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#History" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#History" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#History" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Credits" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#Installation" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Notes_002dmode-history-1"></a>
<h2 class="section">4.1 Notes-mode history</h2>
<p>Briefly,
I started keeping notes on-line shortly after I got a portable computer
in January, 1994.
After a month-and-a-half of notes, I realized that
one does not live by grep alone,
so I started adding indexing facilities.
</p>
<p>In June of 1995
some other Ficus-project members started
keeping and indexing on-line notes
using other home-grown systems.
After some discussion,
we generalized my notes-mode work and
they started using it.
</p>
<p>Over the next 18 months notes-mode grew.
Finally, in April, 1996 I wrote documentation,
guaranteeing that innovation on notes-mode will now cease
or the documentation will become out of date.
</p>
<hr>
<a name="Credits"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#History" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#Notes_002dmode-history" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#History" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Changes" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#Installation" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Credits-1"></a>
<h2 class="section">4.2 Credits</h2>
<p>I (John Heidemann, <johnh@isi.edu>)
started, documented, and currently maintain notes-mode.
I take ultimate responsibility for the code,
especially for the ugly parts that I won’t let others change.
</p>
<p>Ashvin Goel
<ashvin@ficus.cs.ucla.edu>
has been a very enthusiastic notes-mode user and contributor.
He is responsible for at least
the ideas behind <code>notes-summarize-subject</code>
and the ideas and initial implementations of
some of the original generalization and modularity improvements,
<code>notes-follow-next-link</code> and <code>notes-follow-prev-link</code>,
<code>notes-goto-index-entry</code>,
programmed subject completion,
and
context-sensitive mouse-2 handling.
In addition,
he is an invaluable second opinion about
what and how things should be done
(even if I don’t always agree with him).
</p>
<p>Geoff Kuenning
<geoff@ficus.cs.ucla.edu>
has been another enthusiastic notes-mode user and victim.
He is responsible for
finding several bugs,
motivation for mouse-less operation,
comments about the documentation,
the day-of-week convention,
and an initial implementation and the idea of
multiple entries with the same subjects in a single notes-file.
</p>
<p>Ramesh Govindan <govindan@isi.edu> did the xemacs port.
</p>
<p>Since it’s release on Usenet in April 1996 several
other folks have contributed.
Thanks to
David Weisman <weisman@app1.osf.org>,
Martin L. Smith <martin@ner.com>,
Jason Bastek <jason@aai.com>,
Ulrich Herbst <Ulrich.Herbst@t-systems.com>.
See the next section (See section <a href="#Changes">Changes</a>.) for details of their exploits.
</p>
<p>Thanks to Larry Ayers <layers@marktwain.net>
for popularizing notes-mode with reviews in
the Linux Gazette
(at <http://www.linuxgazette.com/issue22/notes-mode.html> and
<http://www.linuxgazette.com/issue35/ayers.html>).
</p>
<hr>
<a name="Changes"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#History" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#Credits" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#History" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Suggested-features" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#Installation" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Changes-1"></a>
<h2 class="section">4.3 Changes</h2>
<p>For the bored:
</p>
<p>First semi-public release. 12-Jul-95: version 0.1
Shared a version with Ashvin and Geoff.
</p>
<p>Changed 6-Dec-95: version 0.3
Ashvin’s changes for note traversal added (C-c C-p and C-c C-n now
move to the prev/next note in note-mode).
URL parsing changed so that "localhost" is optional.
</p>
<p>Changed 19-Dec-95: version 0.4
More robust prev/next code added, both to handle going back and
forward in the middle of chains through the index file, and to handle
back/forward in a single file.
URL parsing changed so that notes-goto-index-entry correctly handles
lookups on notes names such as "252A".
</p>
<p>Changed 20-Dec-95: version 0.5.
Fixed a missing variable in notes-url.el.
Added a work-around to a bug in emacs-19.30’s define-derived-mode.
</p>
<p>Changed 24-Dec-95: version 0.6.
Prev/next code re-re-written to be more robust.
</p>
<p>Changed 26-Dec-96: version 0.7.
Bug fix release.
</p>
<p>Changed 23-Jan-96: version 0.8.
Initialization code added to set up a new note.
New variable: notes-bin-dir.
</p>
<p> I’m skipping version 0.9 because I erroneously release version 0.1
as version 0.9 (only on the web, not on Usenet).
</p>
<p> I’m bumping from version "0" to version "1" since the code is has been
in production use for more than a year by several people. Minor
numbers are the same.
</p>
<p>Changed 26-Mar-96: version 1.10.
Setup code completely re-written.
Several incompatible changes have been made:
- the lisp and Perl code must be installed via make install,
not by copying.
- some data is specified in a .notesrc file; copy and modify sample.notesrc.
- several internal elisp changes.
- catsubject added (bound to C-cC-s): collect all notes about the
current subject.
- new notes-files are initialized with fields based on the prior
day’s notes; see mknew for details.
- daily_work is gone; mkall is rewritten to use .notesrc.
</p>
<p>Changed 29-Apr-96: version 1.11.
Real documentation.
Mknew caching added.
</p>
<p>Changed 9-Aug-96: version 1.12.
Added notesinit to do all setup for new users.
</p>
<p>Changed 24-Aug-96: version 1.13.
Minor documentation fixes.
</p>
<p>Changed 20-Dec-97: version 1.14.
Autoconf support.
</p>
<p>Fontification of the index buffer is now pre-computed in perl
other than done when the file is needed (in elisp with slow regular
expressions). 2000-line index files are now 1-2 seconds rather than
15-30 on a 100MHz Pentium. If necessary (the
pre-computed version isn’t up-to-date) we fall back on the slower
code.
</p>
<p>Related work improved (suggestion by David Weisman <weisman@app1.osf.org>).
</p>
<p>Documentation improvement (problem found by Martin L. Smith
<martin@ner.com>).
</p>
<p>Installation improved (code by Jason Bastek <jason@aai.com>).
</p>
<p>Bug in notes-index mode with subjects containing colons fixed (johnh).
</p>
<p>Encryption now supports mailcrypt.el.
</p>
<p>Support for emacs 20 (a small font-lock change).
</p>
<p>Changed 5-Jan-98: version 1.15.
Bug in decryption for non-PAM users fixed
(suggestion by Kevin Davidson <tkld@quadstone.com>).
</p>
<p>Y2K statement added
(suggestion by Kevin Davidson <tkld@quadstone.com>).
</p>
<p>Pointer to mailcrypt added (as a supported encryption package).
Problem pointed out by K. Ueda <kueda@jupiter.qse.tohoku.ac.jp>.
</p>
<p>Changed 4-Nov-98: version 1.16.
Bug in kill-ring handling of notes-old-underline-line
fixed by Tim Potter <timp@jna.com.au>.
Bug in whitespace handling after PGP encryption fixed by Tim Potter.
Bugs in handling of entries with hash signs in their name fixed
(found by Tim Potter).
Fontification of index buffer further improved
(mapcar is your friend).
Xemacs support added based on code contributed by Ramesh Govindan.
</p>
<p>Changed 28-Feb-99: version 1.17:
Improvement: notes-electric-return now fixes up the prev/next links
of new entries (only). Code contributed by
Takashi Nishimoto.
</p>
<p>Bug fix: reversed options -batch and -q in configure.in to placate
XEmacs 20.0; changed notesinit to not downcase the pathname
(bugs found by Thierry Bezecourt).
</p>
<p>Clarification: Autofilling of new notes more clear in the manual (hopefully,
suggested by Solofo Ramangalahy).
</p>
<p>Bug fix: a y2k bug in was found and fixed in mkindex. Sigh.
</p>
<p>New: Two mailing lists for notes-mode have been created:
‘<tt>notes-mode-announce@heidemann.la.ca.us</tt>’ and
‘<tt>notes-mode-talk@heidemann.la.ca.us</tt>’.
Send the line “subscribe notes-mode-announce”
(or “subscribe notes-mode-talk”)
to ‘<tt>majordomo@heidemann.la.ca.us</tt>’
to join them.
[<em>These instructions are now superceeded; to subscribe, go to
‘<tt>http://www.heidemann.la.ca.us/mailman/listinfo/notes-mode-talk</tt>’
and
‘<tt>http://www.heidemann.la.ca.us/mailman/listinfo/notes-mode-announce</tt>’.</em>]
</p>
<p>Changed 6-Oct-99: version 1.18:
Bug fix: handling of electric-prevnext is better when there are
existing prev/next links.
</p>
<p>Clarification: I added some pointers in the code to the installation
instructions. (Apparently people can’t RTF README.)
</p>
<p>Extension: mailcrypt-3.5.x suported including pgp, pgp5 and gpg.
</p>
<p>Changed (date 23-Dec-00): version 1.19:
Bug fix (cosmetic): suppress comments in encrypted nodes.
</p>
<p>Install fixes from Kannan Varadhan: elisp directories changed on install.
</p>
<p>Added C-j as a synonym for RET in notes-mode to parallel C++ or perl mode.
(Suggested by Fred Jaggi ‘<tt>jaggi@rsn.hp.com</tt>’.)
</p>
<p>Outline-minor-mode support added and documented.
(Suggested by Tim Carroll ‘<tt>tim@boomboom.com</tt>’.)
</p>
<p>Bug/typo fixes in gpg support
(Contributed by William A. Perkins ‘<tt>wa_perkins@pnl.gov</tt>’,
with separate patches from Knut Anders Hatlen ‘<tt>kahatlen@online.no</tt>’.)
</p>
<p>Installation improvements suggested by Christophe Troestler
‘<tt>Ch.Troestler@linkline.be</tt>’:
use install-info to update the info dir,
warn users of –prefix that lisp files go elsewhere.
</p>
<p>Changed (date 1-Feb-01): version 1.20:
Bug fix: missing file notes-first.el added to the distribution.
(Bug found by Michael Totschnig ‘<tt>michaelt@supernet.ca</tt>’.)
</p>
<p>Changed ( 5-Dec-01): version 1.21:
(backed-out—didn’t work with spaced URLs)
URL lookup now uses thing-at-point.
</p>
<p>Fix to make notes-mode work with emacs-21.1
(Fix from Klaus Zeitler ‘<tt>kzeitler@lucent.com</tt>’.)
</p>
<p>Changed ( 3-Jan-02): version 1.22:
Several bugs in ‘<tt>notesinit</tt>’ for stricter Perl implementations
(bug found by Paul Craven" ‘<tt>pcraven@yorku.ca</tt>’,
and Kasper van Wijk ‘<tt>kasper@acoustics.mines.edu</tt>’)
and to make it run cleanly more often.
</p>
<p>Notes-first now autoinitializes notes mode from emacs.
(As instisted by rms, unfortunately about two years later than requested.)
</p>
<p>Changed (20-Feb-05): version 1.23:
Outline mode is now forcebly turned on to avoid interactions
with user’s text-mode hooks
(bug and fix from Nils Ackermann ‘<tt>nils@nieback.de</tt>’).
</p>
<p>Install bug involving ordering of scripts and byte-compilation
fixed (bug and fix from Mark Allman ‘<tt>mallman@grc.nasa.gov</tt>’).
</p>
<p>Fix obscure bug in configure, reported by Klaus Zeitler ‘<tt>kzeitler@lucent.com</tt>’.
</p>
<p>Fix for notes-summarize-subject when no subject is specified (bug and fix
from Geoff Kuenning).
</p>
<p>Changed (14-Jan-06): version 1.24:
</p>
<p>install-info bug documented with the Debian install-info
(bug reported by Aaron Falk ‘<tt>falk@isi.edu</tt>’).
</p>
<p>Automatic date completion in new days is now done in the current
locale, so it should now work for non-English languages. Bug reported
by Torsten Bronger ‘<tt>bronger@physik.rwth-aachen.de</tt>’.
</p>
<p>Fixed a bug in mkindexcache, triggered by subjects with percent signs
in them. Bug reported by Philip Austin ‘<tt>paustin@eos.ubc.ca</tt>’.
</p>
<p>We’re a bit more robust about subjects, I hope. Warnings should
appear about embedded number signs, and leading spaces should be
filtered. Bug reported by Philip Austin ‘<tt>paustin@eos.ubc.ca</tt>’.
</p>
<p>Notes-mode now dervies from indented-text-mode rather than
paragraph-indent-text mode. Unfortunatley this is not customizable
because of limitations of define-derived-mode. Change suggested by
Aaron Falk ‘<tt>falk@isi.edu</tt>’.
</p>
<p>Provide better hints about how to get started after installation or
running notes-mode in emacs for the first time.
</p>
<p>In notes init, the default path for dir was the full path, not the tilde
version of the path. Now it defaults to using tidle for home
directory. Bug reported by Mark Allman ‘<tt>allman@icir.org</tt>’.
</p>
<p>Changed (26-May-06): version 1.25:
</p>
<p>fixed a bug in the release tar.gz file that had a additional copies
copy nested.
</p>
<p>Changed (30-Jun-08): version 1.26:
</p>
<p>Force unicode I/O in ‘<tt>mkindexcache</tt>’ to fix highlighting mis-alignment
when using emacs-21 with unicode subject lines.
</p>
<p>Changed mkprevnext and mkrawindex to optionally take the list of notes files
to index from stdin rather than from the command line. Yes, I finally
have 4093 notes files, overflowing the Unix command line buffer.
</p>
<p>Changes notes-mode.el to put path in quotes, allowing spaces to appear in home directory names (bug fix from Ulrich Herbst).
</p>
<p>Added a suggested features section.
</p>
<p>Changed ( 8-Aug-08): version 1.27:
</p>
<p>Change I/O in ‘<tt>mkindexcache</tt>’ to use locale (the sadly correct thing)
rather than forcing utf-8 (the Righteous Path).
Bug report from Geoff Kuenning, a man with an older Unix environment than I.
</p>
<p>Changed (20-Jun-10): version 1.28:
</p>
<p>Changed a regular expression in ‘<tt>notes-index-mode.el</tt>’ that was
causing emacs-v23 (a pre-release version)
to regular expression infinite recursion.
</p>
<p>Changed (2012-04-04): version 1.29
</p>
<p>(2011-08-23) Changed <code>run-hooks</code> to <code>run-mode-hooks</code>.
Bug report from Geoff Kuenning.
</p>
<p>Changed some handling of PGP encryption to account for
some apparent API changes.
</p>
<p>(2012-04-04) Fixed encyrption to handle encrypting empty notes at the end
of buffers without going into an infinite loop.
Clearly wrong code, but you have to ask this guy for why he tried:
Bug report from Geoff Kuenning.
</p>
<p>Changed (2014-12-19): version 1.30
</p>
<p>Added support for EasyPG.
Support for mailcrypt remains, but that library has seen no progress since 2002.
Support for npgp is gone.
</p>
<p>Changed (2018-06-06): version 1.31—not yet released
</p>
<p>Added support for ISO dates in the daily notes file’s heading (2015-02-25).
</p>
<p>Updated to work with emacs-26.1 (2018-06-06).
</p>
<hr>
<a name="Suggested-features"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#History" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#Changes" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#History" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Installation" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#Installation" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Suggested-features-1"></a>
<h2 class="section">4.4 Suggested features</h2>
<p>Features suggested by users but not yet implemented:
</p>
<p>21-Feb-08: (from Xavier Maillard): should support “disconnected” notes that
are indexed but not date-based.
</p>
<p>21-Feb-08: (from John Heidemann): should switch all notes files to have an extension (maybe ‘<tt>.notes</tt>’).
</p>
<hr>
<a name="Installation"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#History" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#Suggested-features" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[ Up ]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Installation-1"></a>
<h1 class="chapter">5 Installation</h1>
<p>To install notes-mode,
</p>
<ol>
<li>
Unpack and extract the distribution
(gunzip notes-mode-xxx.tar.gz; tar xvf notes-mode-xxx.tar; cd notes-mode-xxx).
</li><li>
Run configure (./configure).
</li><li>
Type “make install”.
</li></ol>
<p>(To control what’s installed where, use –prefix=/where, or
–with-lisp-dir=/where, –datadir=/where (for scripts),
and –infodir=/where.)
</p>
<p>For each user:
</p><ol>
<li>
Run notesinit
</li></ol>
<p>If you have problems with paths being incorrect, please be aware that
you <em>cannot</em> run notes directly out of where you untar it. The
installation process customizes the programs for where things are on
your system.
Make sure you move out of the directory where you untarred it
before running it.
</p>
<p>The most recent distribution of notes-mode
is always available via
‘<tt>http://www.isi.edu/~johnh/SOFTWARE/NOTES_MODE/</tt>’.
</p>
<hr>
<a name="Keystroke-index"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Installation" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#Installation" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[ Up ]</td>
<td valign="middle" align="left">[<a href="#Concept-index" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left">[<a href="#Concept-index" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Keystroke-index-1"></a>
<h1 class="unnumbered">Keystroke index</h1>
<p>This index lists notes-mode keystrokes.
</p>
<table><tr><th valign="top">Jump to: </th><td><a class="summary-letter" href="#Keystroke-index-1_ky_letter-C"><b>C</b></a>
<a class="summary-letter" href="#Keystroke-index-1_ky_letter-M"><b>M</b></a>
<a class="summary-letter" href="#Keystroke-index-1_ky_letter-O"><b>O</b></a>
<a class="summary-letter" href="#Keystroke-index-1_ky_letter-R"><b>R</b></a>
<a class="summary-letter" href="#Keystroke-index-1_ky_letter-S"><b>S</b></a>
<a class="summary-letter" href="#Keystroke-index-1_ky_letter-T"><b>T</b></a>
</td></tr></table>
<table class="index-ky" border="0">
<tr><td></td><th align="left">Index Entry</th><td> </td><th align="left"> Section</th></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keystroke-index-1_ky_letter-C">C</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dc-C_002dd"><code>C-c C-d</code></a></td><td> </td><td valign="top"><a href="#Encryption">3.1.3 Encryption</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dc-C_002de"><code>C-c C-e</code></a></td><td> </td><td valign="top"><a href="#Encryption">3.1.3 Encryption</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dc-C_002di"><code>C-c C-i</code></a></td><td> </td><td valign="top"><a href="#Getting-around">3.1.1 Getting around</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dc-C_002dk"><code>C-c C-k</code></a></td><td> </td><td valign="top"><a href="#Getting-around">3.1.1 Getting around</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dc-C_002dn"><code>C-c C-n</code></a></td><td> </td><td valign="top"><a href="#Getting-around">3.1.1 Getting around</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dc-C_002dp"><code>C-c C-p</code></a></td><td> </td><td valign="top"><a href="#Getting-around">3.1.1 Getting around</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dc-C_002ds"><code>C-c C-s</code></a></td><td> </td><td valign="top"><a href="#Subject-summary">3.1.2 Subject summary</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dc-C_002ds-1"><code>C-c C-s</code></a></td><td> </td><td valign="top"><a href="#Notes-indices">3.2 Notes indices</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dcRTN"><code>C-c<RTN></code></a></td><td> </td><td valign="top"><a href="#Getting-around">3.1.1 Getting around</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keystroke-index-1_ky_letter-M">M</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002dC_002da"><code>M-C-a</code></a></td><td> </td><td valign="top"><a href="#Getting-around">3.1.1 Getting around</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002dC_002de"><code>M-C-e</code></a></td><td> </td><td valign="top"><a href="#Getting-around">3.1.1 Getting around</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-mouse_002d2"><code>mouse-2</code></a></td><td> </td><td valign="top"><a href="#The-notes-index">2.3 The notes index</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keystroke-index-1_ky_letter-O">O</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-o"><code>o</code></a></td><td> </td><td valign="top"><a href="#Notes-indices">3.2 Notes indices</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keystroke-index-1_ky_letter-R">R</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-RTN"><code>RTN</code></a></td><td> </td><td valign="top"><a href="#A-notes-file">2.2 A notes file</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-RTN-1"><code>RTN</code></a></td><td> </td><td valign="top"><a href="#The-notes-index">2.3 The notes index</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keystroke-index-1_ky_letter-S">S</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-S_002dmouse_002d2"><code>S-mouse-2</code></a></td><td> </td><td valign="top"><a href="#A-notes-file">2.2 A notes file</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keystroke-index-1_ky_letter-T">T</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-TAB"><code>TAB</code></a></td><td> </td><td valign="top"><a href="#A-notes-file">2.2 A notes file</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
</table>
<table><tr><th valign="top">Jump to: </th><td><a class="summary-letter" href="#Keystroke-index-1_ky_letter-C"><b>C</b></a>
<a class="summary-letter" href="#Keystroke-index-1_ky_letter-M"><b>M</b></a>
<a class="summary-letter" href="#Keystroke-index-1_ky_letter-O"><b>O</b></a>
<a class="summary-letter" href="#Keystroke-index-1_ky_letter-R"><b>R</b></a>
<a class="summary-letter" href="#Keystroke-index-1_ky_letter-S"><b>S</b></a>
<a class="summary-letter" href="#Keystroke-index-1_ky_letter-T"><b>T</b></a>
</td></tr></table>
<hr>
<a name="Concept-index"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Keystroke-index" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[ Up ]</td>
<td valign="middle" align="left">[ > ]</td>
<td valign="middle" align="left">[ >> ]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Concept-index-1"></a>
<h1 class="unnumbered">Concept index</h1>
<p>This index lists notes-mode concepts.
</p>
<table><tr><th valign="top">Jump to: </th><td><a class="summary-letter" href="#Concept-index-1_cp_symbol-1"><b>.</b></a>
<br>
<a class="summary-letter" href="#Concept-index-1_cp_letter-C"><b>C</b></a>
<a class="summary-letter" href="#Concept-index-1_cp_letter-D"><b>D</b></a>
<a class="summary-letter" href="#Concept-index-1_cp_letter-E"><b>E</b></a>
<a class="summary-letter" href="#Concept-index-1_cp_letter-F"><b>F</b></a>
<a class="summary-letter" href="#Concept-index-1_cp_letter-I"><b>I</b></a>
<a class="summary-letter" href="#Concept-index-1_cp_letter-K"><b>K</b></a>
<a class="summary-letter" href="#Concept-index-1_cp_letter-M"><b>M</b></a>
<a class="summary-letter" href="#Concept-index-1_cp_letter-N"><b>N</b></a>
<a class="summary-letter" href="#Concept-index-1_cp_letter-P"><b>P</b></a>
<a class="summary-letter" href="#Concept-index-1_cp_letter-R"><b>R</b></a>
<a class="summary-letter" href="#Concept-index-1_cp_letter-S"><b>S</b></a>
<a class="summary-letter" href="#Concept-index-1_cp_letter-T"><b>T</b></a>
<a class="summary-letter" href="#Concept-index-1_cp_letter-U"><b>U</b></a>
</td></tr></table>
<table class="index-cp" border="0">
<tr><td></td><th align="left">Index Entry</th><td> </td><th align="left"> Section</th></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-index-1_cp_symbol-1">.</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-_002enotesrc">.notesrc</a></td><td> </td><td valign="top"><a href="#Notes_002dmode-configuration">3.3 Notes-mode configuration</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-index-1_cp_letter-C">C</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-configuration">configuration</a></td><td> </td><td valign="top"><a href="#Notes_002dmode-configuration">3.3 Notes-mode configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-conventions">conventions</a></td><td> </td><td valign="top"><a href="#Useful-conventions">3.1.4 Useful conventions</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-Crontab">Crontab</a></td><td> </td><td valign="top"><a href="#The-notes-index">2.3 The notes index</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-index-1_cp_letter-D">D</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-Decryption">Decryption</a></td><td> </td><td valign="top"><a href="#Encryption">3.1.3 Encryption</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-Directory-hierarchy">Directory hierarchy</a></td><td> </td><td valign="top"><a href="#The-notes-directories">2.4 The notes directories</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-index-1_cp_letter-E">E</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-Encryption">Encryption</a></td><td> </td><td valign="top"><a href="#Encryption">3.1.3 Encryption</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-index-1_cp_letter-F">F</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-Font-matter">Font matter</a></td><td> </td><td valign="top"><a href="#A-notes-file">2.2 A notes file</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-index-1_cp_letter-I">I</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-imenu">imenu</a></td><td> </td><td valign="top"><a href="#Getting-around">3.1.1 Getting around</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-Intermediate-directories">Intermediate directories</a></td><td> </td><td valign="top"><a href="#The-notes-directories">2.4 The notes directories</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-index-1_cp_letter-K">K</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-key_002did">key-id</a></td><td> </td><td valign="top"><a href="#Encryption">3.1.3 Encryption</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-index-1_cp_letter-M">M</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-mailcrypt">mailcrypt</a></td><td> </td><td valign="top"><a href="#Encryption">3.1.3 Encryption</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-mkall">mkall</a></td><td> </td><td valign="top"><a href="#The-notes-index">2.3 The notes index</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-mknew">mknew</a></td><td> </td><td valign="top"><a href="#Useful-conventions">3.1.4 Useful conventions</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-index-1_cp_letter-N">N</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-Notes-directories">Notes directories</a></td><td> </td><td valign="top"><a href="#The-notes-directories">2.4 The notes directories</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-Notes-entries">Notes entries</a></td><td> </td><td valign="top"><a href="#A-notes-file">2.2 A notes file</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-Notes-file-permissions">Notes file permissions</a></td><td> </td><td valign="top"><a href="#The-notes-directories">2.4 The notes directories</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-Notes-files">Notes files</a></td><td> </td><td valign="top"><a href="#A-notes-file">2.2 A notes file</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-Notes-files-1">Notes files</a></td><td> </td><td valign="top"><a href="#The-notes-directories">2.4 The notes directories</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-Notes-files_002c-font-matter">Notes files, font matter</a></td><td> </td><td valign="top"><a href="#A-notes-file">2.2 A notes file</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-Notes-index">Notes index</a></td><td> </td><td valign="top"><a href="#The-notes-index">2.3 The notes index</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-Notes-links">Notes links</a></td><td> </td><td valign="top"><a href="#A-notes-file">2.2 A notes file</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-Notes-subjects">Notes subjects</a></td><td> </td><td valign="top"><a href="#A-notes-file">2.2 A notes file</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-notes_002dmode_002dinitialization_002dprogram">notes-mode-initialization-program</a></td><td> </td><td valign="top"><a href="#Useful-conventions">3.1.4 Useful conventions</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-notesinit">notesinit</a></td><td> </td><td valign="top"><a href="#Getting-started">2.1 Getting started</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-index-1_cp_letter-P">P</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-PAM">PAM</a></td><td> </td><td valign="top"><a href="#Encryption">3.1.3 Encryption</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-PGP">PGP</a></td><td> </td><td valign="top"><a href="#Encryption">3.1.3 Encryption</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-PGP-Augmented-Messaging">PGP Augmented Messaging</a></td><td> </td><td valign="top"><a href="#Encryption">3.1.3 Encryption</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-Pretty-good-privacy">Pretty good privacy</a></td><td> </td><td valign="top"><a href="#Encryption">3.1.3 Encryption</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-Pseudo_002dURLs">Pseudo-URLs</a></td><td> </td><td valign="top"><a href="#A-notes-file">2.2 A notes file</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-index-1_cp_letter-R">R</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-re_002dindexing">re-indexing</a></td><td> </td><td valign="top"><a href="#The-notes-index">2.3 The notes index</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-Root-directory">Root directory</a></td><td> </td><td valign="top"><a href="#The-notes-directories">2.4 The notes directories</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-index-1_cp_letter-S">S</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-setup">setup</a></td><td> </td><td valign="top"><a href="#Getting-started">2.1 Getting started</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-Subject-summary">Subject summary</a></td><td> </td><td valign="top"><a href="#Subject-summary">3.1.2 Subject summary</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-index-1_cp_letter-T">T</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-Today">Today</a></td><td> </td><td valign="top"><a href="#Useful-conventions">3.1.4 Useful conventions</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-index-1_cp_letter-U">U</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-URLs">URLs</a></td><td> </td><td valign="top"><a href="#A-notes-file">2.2 A notes file</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
</table>
<table><tr><th valign="top">Jump to: </th><td><a class="summary-letter" href="#Concept-index-1_cp_symbol-1"><b>.</b></a>
<br>
<a class="summary-letter" href="#Concept-index-1_cp_letter-C"><b>C</b></a>
<a class="summary-letter" href="#Concept-index-1_cp_letter-D"><b>D</b></a>
<a class="summary-letter" href="#Concept-index-1_cp_letter-E"><b>E</b></a>
<a class="summary-letter" href="#Concept-index-1_cp_letter-F"><b>F</b></a>
<a class="summary-letter" href="#Concept-index-1_cp_letter-I"><b>I</b></a>
<a class="summary-letter" href="#Concept-index-1_cp_letter-K"><b>K</b></a>
<a class="summary-letter" href="#Concept-index-1_cp_letter-M"><b>M</b></a>
<a class="summary-letter" href="#Concept-index-1_cp_letter-N"><b>N</b></a>
<a class="summary-letter" href="#Concept-index-1_cp_letter-P"><b>P</b></a>
<a class="summary-letter" href="#Concept-index-1_cp_letter-R"><b>R</b></a>
<a class="summary-letter" href="#Concept-index-1_cp_letter-S"><b>S</b></a>
<a class="summary-letter" href="#Concept-index-1_cp_letter-T"><b>T</b></a>
<a class="summary-letter" href="#Concept-index-1_cp_letter-U"><b>U</b></a>
</td></tr></table>
<hr size="6">
<a name="SEC_Foot"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<h1>Footnotes</h1>
<h3><a name="FOOT1" href="#DOCF1">(1)</a></h3>
<p>Trademarked, in Great Britain, Sunone tells me.
</p><h3><a name="FOOT2" href="#DOCF2">(2)</a></h3>
<p>I consider myself pretty anal about this subject,
often typing notes in from paper after-the-fact,
and <em>I</em> certainly don’t manage to back-enter
my notes all time time.
</p><h3><a name="FOOT3" href="#DOCF3">(3)</a></h3>
<p>On the other hand, some folks at MIT are working
on this problem from both the hardware and the social side of
things (‘<tt>http://wearables.www.media.mit.edu/projects/wearables/</tt>’)
(Perhaps they have wild parties with computers, too.)
</p><h3><a name="FOOT4" href="#DOCF4">(4)</a></h3>
<p>My hat is off to Rosa Parks
and the many other normal people who triggered landmark cases.
</p><h3><a name="FOOT5" href="#DOCF5">(5)</a></h3>
<p>If you think I’m missing an alternative, please let me know.
</p><hr>
<a name="SEC_Contents"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<h1>Table of Contents</h1>
<div class="contents">
<ul class="no-bullet">
<li><a name="toc-Introduction-1" href="#Introduction">1 Introduction</a>
<ul class="no-bullet">
<li><a name="toc-What-is-it_003f-1" href="#What-is-it_003f">1.1 What is it?</a></li>
<li><a name="toc-Why-keep-notes-at-all_003f-1" href="#Why-keep-notes-at-all_003f">1.2 Why keep notes at all?</a></li>
<li><a name="toc-Why-keep-notes-on_002dline_003f-1" href="#Why-keep-notes-on_002dline_003f">1.3 Why keep notes on-line?</a></li>
<li><a name="toc-Why-use-notes_002dmode_003f-1" href="#Why-use-notes_002dmode_003f">1.4 Why use notes-mode?</a></li>
<li><a name="toc-Y2K-Statement-1" href="#Y2K-Statement">1.5 Y2K Statement</a></li>
<li><a name="toc-Related-work-1" href="#Related-work">1.6 Related work</a></li>
<li><a name="toc-Staying-on-top-1" href="#Staying-on-top">1.7 Staying on top</a></li>
</ul></li>
<li><a name="toc-Basics-1" href="#Basics">2 Basics</a>
<ul class="no-bullet">
<li><a name="toc-Getting-started-1" href="#Getting-started">2.1 Getting started</a></li>
<li><a name="toc-A-notes-file-1" href="#A-notes-file">2.2 A notes file</a></li>
<li><a name="toc-The-notes-index-1" href="#The-notes-index">2.3 The notes index</a></li>
<li><a name="toc-The-notes-directories-1" href="#The-notes-directories">2.4 The notes directories</a></li>
</ul></li>
<li><a name="toc-Advanced-Features-1" href="#Advanced-Features">3 Advanced Features</a>
<ul class="no-bullet">
<li><a name="toc-Notes-files-1" href="#Notes-files">3.1 Notes files</a>
<ul class="no-bullet">
<li><a name="toc-Getting-around-1" href="#Getting-around">3.1.1 Getting around</a></li>
<li><a name="toc-Subject-summary-1" href="#Subject-summary">3.1.2 Subject summary</a></li>
<li><a name="toc-Encryption-1" href="#Encryption">3.1.3 Encryption</a></li>
<li><a name="toc-Useful-conventions-1" href="#Useful-conventions">3.1.4 Useful conventions</a></li>
</ul></li>
<li><a name="toc-Notes-indices-1" href="#Notes-indices">3.2 Notes indices</a></li>
<li><a name="toc-Notes_002dmode-configuration-1" href="#Notes_002dmode-configuration">3.3 Notes-mode configuration</a></li>
</ul></li>
<li><a name="toc-History-1" href="#History">4 History</a>
<ul class="no-bullet">
<li><a name="toc-Notes_002dmode-history-1" href="#Notes_002dmode-history">4.1 Notes-mode history</a></li>
<li><a name="toc-Credits-1" href="#Credits">4.2 Credits</a></li>
<li><a name="toc-Changes-1" href="#Changes">4.3 Changes</a></li>
<li><a name="toc-Suggested-features-1" href="#Suggested-features">4.4 Suggested features</a></li>
</ul></li>
<li><a name="toc-Installation-1" href="#Installation">5 Installation</a></li>
<li><a name="toc-Keystroke-index-1" href="#Keystroke-index">Keystroke index</a></li>
<li><a name="toc-Concept-index-1" href="#Concept-index">Concept index</a></li>
</ul>
</div>
<hr>
<a name="SEC_About"></a>
<table class="header" cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Introduction" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Keystroke-index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<h1>About This Document</h1>
<p>
This document was generated on <i>June 6, 2018</i> using <a href="http://www.nongnu.org/texi2html/"><i>texi2html 5.0</i></a>.
</p>
<p>
The buttons in the navigation panels have the following meaning:
</p>
<table border="1">
<tr>
<th> Button </th>
<th> Name </th>
<th> Go to </th>
<th> From 1.2.3 go to</th>
</tr>
<tr>
<td align="center"> [ << ] </td>
<td align="center">FastBack</td>
<td>Beginning of this chapter or previous chapter</td>
<td>1</td>
</tr>
<tr>
<td align="center"> [ < ] </td>
<td align="center">Back</td>
<td>Previous section in reading order</td>
<td>1.2.2</td>
</tr>
<tr>
<td align="center"> [ Up ] </td>
<td align="center">Up</td>
<td>Up section</td>
<td>1.2</td>
</tr>
<tr>
<td align="center"> [ > ] </td>
<td align="center">Forward</td>
<td>Next section in reading order</td>
<td>1.2.4</td>
</tr>
<tr>
<td align="center"> [ >> ] </td>
<td align="center">FastForward</td>
<td>Next chapter</td>
<td>2</td>
</tr>
<tr>
<td align="center"> [Top] </td>
<td align="center">Top</td>
<td>Cover (top) of document</td>
<td> </td>
</tr>
<tr>
<td align="center"> [Contents] </td>
<td align="center">Contents</td>
<td>Table of contents</td>
<td> </td>
</tr>
<tr>
<td align="center"> [Index] </td>
<td align="center">Index</td>
<td>Index</td>
<td> </td>
</tr>
<tr>
<td align="center"> [ ? ] </td>
<td align="center">About</td>
<td>About (help)</td>
<td> </td>
</tr>
</table>
<p>
where the <strong> Example </strong> assumes that the current position is at <strong> Subsubsection One-Two-Three </strong> of a document of the following structure:
</p>
<ul>
<li> 1. Section One
<ul>
<li>1.1 Subsection One-One
<ul>
<li>...</li>
</ul>
</li>
<li>1.2 Subsection One-Two
<ul>
<li>1.2.1 Subsubsection One-Two-One</li>
<li>1.2.2 Subsubsection One-Two-Two</li>
<li>1.2.3 Subsubsection One-Two-Three
<strong><== Current Position </strong></li>
<li>1.2.4 Subsubsection One-Two-Four</li>
</ul>
</li>
<li>1.3 Subsection One-Three
<ul>
<li>...</li>
</ul>
</li>
<li>1.4 Subsection One-Four</li>
</ul>
</li>
</ul>
<hr>
<p>
<font size="-1">
This document was generated on <i>June 6, 2018</i> using <a href="http://www.nongnu.org/texi2html/"><i>texi2html 5.0</i></a>.
</font>
<br>
</p>
</body>
</html>
|