-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfreemind_manual.mm
1268 lines (1268 loc) · 56.9 KB
/
freemind_manual.mm
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
<?xml version="1.0" encoding="UTF-8"?>
<map version="0.8.0">
<!-- This .mm file is CVS/SVN friendly, also has better Chinese character support. Contribute by http://www.WorldHello.net, orignal FreeMind can be found at http://freemind.sourceforge.net -->
<node COLOR="#993300" ID="Freemind_Link_630323803"
TEXT="<html>
 <head>
 
 </head>
 <body width="">
 <p align="center">
 FreeMind<br><small>- free mind mapping software -</small> 
 </p>
 </body>
</html>
">
<font BOLD="true" NAME="Dialog" SIZE="18"/>
<node LINK="http://freemind.sourceforge.net" POSITION="left"
TEXT="Home page of FreeMind">
<font NAME="SansSerif" SIZE="12"/>
</node>
<node COLOR="#006699" FOLDED="true" ID="_Freemind_Link_1091417446" POSITION="left"
TEXT="Table of key mappings">
<node
TEXT="File commands:
New map - Ctrl+N
Open map - Ctrl+O
Save map - Ctrl+S
Save as - Ctrl+A
Print - Ctrl+P
Close - Ctrl+W
Quit - Ctrl+Q
Previous map - Ctrl+LEFT
Next Map - Ctrl+RIGHT
Export file to HTML - Ctrl+E
Export branch to HTML - Ctrl+H
Export branch to new MM file - Alt+A
Open first file in history - Ctrl+Shift+W

Edit commands:
Find - Ctrl+F
Find next - Ctrl+G
Cut - Ctrl+X
Copy - Ctrl+C
Copy single - Ctrl+Y
Paste - Ctrl+V

Mode commands:
MindMap mode - Alt+1
Browse mode - Alt+2 
File mode - Alt+3

Node formatting commands:
Italicize - Ctrl+I
Bold - Ctrl+B
Cloud - Ctrl+Shift+B
Change node color - Alt+C
Blend node color - Alt+B
Change node edge color - Alt+E
Increase node font size - Ctrl+L
decrease node font size - Ctrl+M
Increase branch font size - Ctrl+Shift+L
Decrease branch font size - Ctrl+Shift+M

Node navigation commands:
Go to root - ESCAPE
Move up - UP
Move down - DOWN
Move left - LEFT
Move right - RIGHT
Follow link - Ctrl+ENTER
Zoom out - Alt+UP
Zoom in - Alt+DOWN

New node commands:
Add sibling node - ENTER
Add child node - INSERT
Add sibling before - Shift+ENTER

Node editing commands:
Edit selected node - F2
Edit long node - Alt+ENTER
Join nodes - Ctrl+J
Toggle folded - SPACE
Toggle children folded - Ctrl+SPACE
Set link by filechooser - Ctrl+Shift+K
Set link by text entry - Ctrl+K
Set image by filechooser - Alt+K
Move node up - Ctrl+UP
Move node down - Ctrl+DOWN
">
<font NAME="Courier New" SIZE="12"/>
</node>
</node>
<node COLOR="#006633" FOLDED="true" ID="_Freemind_Link_904501221" POSITION="left"
TEXT="Installation">
<node COLOR="#006699" FOLDED="true" ID="_Freemind_Link_1911559485"
TEXT="Links">
<node LINK="http://java.sun.com/j2se"
TEXT="Download the Java Runtime Environment (at least J2RE1.4)">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
</node>
<node ID="_Freemind_Link_1612101865" LINK="http://sourceforge.net/project/showfiles.php?project_id=7118"
TEXT="Download the Application">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
</node>
</node>
<node ID="_Freemind_Link_139664576"
TEXT="To install FreeMind on Microsoft Windows, install Java from Sun and install FreeMind using FreeMind installer."/>
<node ID="_Freemind_Link_1380352758"
TEXT="To install FreeMind on Linux, download Java Runtime Environment and FreeMind application itself. First install Java, then unpack FreeMind. To run FreeMind, execute freemind.sh."/>
<node ID="_Freemind_Link_1808511462"
TEXT="On Microsoft Windows and Mac OS X, you can also simply double click the file freemind.jar located at the folder lib to run FreeMind."/>
</node>
<node COLOR="#407000" FOLDED="true" ID="_Freemind_Link_353522063" POSITION="left"
TEXT="Browsing the files on your computer">
<node
TEXT="To browse files on your computer, switch to file mode in pull-down menu using Modes > File."/>
<node
TEXT="You browse the file tree as if it was a mind map."/>
<node
TEXT="To make a folder the central node of the map, in node context menu use Center."/>
<node
TEXT="To view, edit or execute a file, follow the link of its node."/>
<node ID="_Freemind_Link_279880616"
TEXT="The file mode is currently not very useful. It is a demonstration that it's not too difficult to feed data into the tree from other source than mind map. There is no evidence that people would actually use this mode."/>
</node>
<node COLOR="#407000" FOLDED="true" ID="_Freemind_Link_1530607683" POSITION="left"
TEXT="Browsing mind maps">
<node
TEXT="To browse mind maps rather than to edit them, switch to browse mode in pull-down menu using Modes > Browse. Unless used in FreeMind applet, this function is useless."/>
<node
TEXT="The reasons for having a separate browsing mode are technical. Browsing is the only thing you can do in FreeMind applet which can be put to your website. Normally, you would not use browse mode in FreeMind."/>
</node>
<node COLOR="#407000" FOLDED="true" ID="_Freemind_Link_1136088046" POSITION="left"
TEXT="About modes">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
<node ID="_Freemind_Link_1713057526"
TEXT="Although Freemind is primarily a tool for editing mind maps, it is designed to be able to view data coming from various data sources. To make a specific data source available for viewing in FreeMind, a programmer has to write a so called mode for that data source. File mode is an example. We do not know of any other modes implemented. It is not clear if anyone would really want to make use of this architecture; it's here to be exploited if someone wants to.">
<font NAME="SansSerif" SIZE="12"/>
</node>
<node ID="_Freemind_Link_700085988"
TEXT="There is code almost ready for scheme mode which enables you to edit scheme programs. Again, the usefulness is far from clear. Unlike mind map mode, other modes are more of a demonstration of what is possible rather than something actually in use.">
<font NAME="SansSerif" SIZE="12"/>
</node>
</node>
<node COLOR="#407000" FOLDED="true" ID="_Freemind_Link_1525986009" POSITION="left"
TEXT="Installing FreeMind applet at your web site">
<node COLOR="#000000"
TEXT="You can install the applet at your website so that other users can browse your mind maps.">
<font NAME="Dialog" SIZE="12"/>
</node>
<node LINK="http://sourceforge.net/project/showfiles.php?group_id=7118"
TEXT="Download the applet, that is freemind-browser."/>
<node
TEXT="The downloaded archive contains freemindbrowser.jar and freemindbrowser.html. Create a link from your page to freemindbrowser.html. In freemindbrowser.html change the path inside so that it points to your mind map."/>
<node
TEXT="Applet's jar file must be located at the same server as the map itself, for java security reasons. You have to upload the FreeMind applet jar file and your mind map file to your web site."/>
</node>
<node COLOR="#407000" FOLDED="true" ID="_Freemind_Link_1083756111" POSITION="left"
TEXT="Using the FreeMind applet">
<font NAME="SansSerif" SIZE="12"/>
<node ID="_Freemind_Link_514864900"
TEXT="In FreeMind applet, you can only use the browse mode; you cannot edit remote maps. Click a node to toggle folding or to follow a link. Drag the background to move the map. To search the map, use node context menu.">
<font NAME="SansSerif" SIZE="12"/>
</node>
</node>
<node COLOR="#407000" FOLDED="true" ID="_Freemind_Link_1976458022" POSITION="left"
TEXT="Changes in user interface in version 0.6.5">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
<node ID="_Freemind_Link_717349033"
TEXT="Some of the keyboard settings have been redefined so that they align themselves with what we consider shared standard or intuitive use. Some of the new keyboard settings are modelled on Microsoft tools. New key settings include enter for creating of new siblings below the node, insert for creating new children, F2 for editing nodes - here the Microsoft influence is apparent while there is no intuitive reason to have F2 for node editing. But once you get used to it in all the applications you use, you want to have that one in FreeMind too.">
<font NAME="SansSerif" SIZE="12"/>
</node>
<node ID="_Freemind_Link_1179893656"
TEXT="The keyboard settings can be changed in pull-down menu Tools > Preferences.">
<font NAME="SansSerif" SIZE="12"/>
</node>
</node>
<node COLOR="#006699" FOLDED="true" ID="_Freemind_Link_784043927" POSITION="left"
TEXT="Credits">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
<node COLOR="#006699" FOLDED="true" ID="Freemind_Link_415458128"
TEXT="Authors">
<node COLOR="#996600" FOLDED="true" ID="_Freemind_Link_1896457660"
TEXT="Joerg Mueller">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
<node COLOR="#558000" LINK="mailto:[email protected]"
TEXT="[email protected]">
<font NAME="Dialog" SIZE="10"/>
</node>
<node COLOR="#999999"
TEXT="University of Freiburg, Germany">
<font NAME="Dialog" SIZE="10"/>
</node>
</node>
<node COLOR="#996600" ID="_Freemind_Link_984984595" LINK="http://mujweb.cz/www/danielpolansky"
TEXT="Daniel Polansky">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
</node>
<node COLOR="#996600" ID="_Freemind_Link_459203293"
TEXT="Petr Novak">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
</node>
<node COLOR="#996600" FOLDED="true" ID="_Freemind_Link_875814410"
TEXT="Christian Foltin">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
<node COLOR="#558000" LINK="mailto:[email protected]"
TEXT="[email protected]">
<font NAME="Dialog" SIZE="10"/>
</node>
</node>
<node COLOR="#996600" ID="_Freemind_Link_1415293905"
TEXT="Dimitri Polivaev">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
</node>
</node>
<node COLOR="#006699" FOLDED="true" ID="Freemind_Link_816166020"
TEXT="Smaller contributions">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
<node COLOR="#996600" FOLDED="true"
TEXT="Andrew Iggleden">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
<node COLOR="#999999"
TEXT="Installer Windows">
<edge WIDTH="thin"/>
<font NAME="Dialog" SIZE="10"/>
</node>
</node>
<node COLOR="#996600" FOLDED="true" ID="Freemind_Link_1096673251"
TEXT="Bob Alexander">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
<node COLOR="#999999"
TEXT="Eclipse howto">
<edge WIDTH="thin"/>
<font NAME="Dialog" SIZE="10"/>
</node>
</node>
<node COLOR="#996600" FOLDED="true" ID="Freemind_Link_1024053399"
TEXT="David Butt">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
<node COLOR="#999999"
TEXT="Tutorial flash">
<edge WIDTH="thin"/>
<font NAME="Dialog" SIZE="10"/>
</node>
</node>
<node COLOR="#996600" FOLDED="true"
TEXT="David Low">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
<node COLOR="#999999"
TEXT="Helpful">
<edge WIDTH="thin"/>
<font NAME="Dialog" SIZE="10"/>
</node>
</node>
</node>
<node COLOR="#006699" FOLDED="true" ID="Freemind_Link_360501151"
TEXT="Translations">
<node COLOR="#996600" FOLDED="true" ID="Freemind_Link_807977431"
TEXT="Bob Alexander">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
<node COLOR="#999999"
TEXT="Italian translation">
<edge WIDTH="thin"/>
<font NAME="Dialog" SIZE="10"/>
</node>
</node>
<node COLOR="#996600" FOLDED="true" ID="Freemind_Link_1853214917"
TEXT="Knud Riishøjgård">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
<node COLOR="#999999"
TEXT="Danish translation">
<edge WIDTH="thin"/>
<font NAME="Dialog" SIZE="10"/>
</node>
</node>
<node COLOR="#996600" FOLDED="true" ID="Freemind_Link_1676529317"
TEXT="Takeshi Kakeda">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
<node COLOR="#999999"
TEXT="Japanese translation">
<edge WIDTH="thin"/>
<font NAME="Dialog" SIZE="10"/>
</node>
</node>
<node COLOR="#996600" FOLDED="true" ID="Freemind_Link_1172193026"
TEXT="Kohichi Aoki">
<node COLOR="#999999"
TEXT="Japanese translation">
<edge WIDTH="thin"/>
<font NAME="Dialog" SIZE="10"/>
</node>
</node>
<node COLOR="#996600" FOLDED="true"
TEXT="Alex Dukal">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
<node COLOR="#999999"
TEXT="Spanish translation">
<edge WIDTH="thin"/>
<font NAME="Dialog" SIZE="10"/>
</node>
</node>
<node COLOR="#996600" FOLDED="true" ID="Freemind_Link_757563697"
TEXT="Hugo Gayosso">
<node COLOR="#999999" ID="Freemind_Link_1783275246"
TEXT="Spanish translation">
<edge WIDTH="thin"/>
<font NAME="Dialog" SIZE="10"/>
</node>
</node>
<node COLOR="#996600" FOLDED="true" ID="Freemind_Link_929540960"
TEXT="Sylvain Gamel">
<node COLOR="#999999"
TEXT="French translation">
<font NAME="Dialog" SIZE="10"/>
</node>
</node>
<node COLOR="#996600" FOLDED="true" ID="Freemind_Link_946171164"
TEXT="Koen Roggemans">
<node COLOR="#999999" ID="Freemind_Link_1819881845"
TEXT="Dutch translation">
<font NAME="SansSerif" SIZE="10"/>
</node>
</node>
<node COLOR="#996600" FOLDED="true" ID="Freemind_Link_235962981"
TEXT="Rafal Kraik">
<node COLOR="#999999" ID="Freemind_Link_459079511"
TEXT="Polish translation">
<font NAME="SansSerif" SIZE="10"/>
</node>
</node>
<node COLOR="#996600" FOLDED="true" ID="Freemind_Link_653284985"
TEXT="Goliath">
<node COLOR="#999999" ID="Freemind_Link_1387213811"
TEXT="Korean translation">
<font NAME="SansSerif" SIZE="10"/>
</node>
</node>
<node COLOR="#996600" FOLDED="true" ID="Freemind_Link_35211963"
TEXT="Miles a.k.a. filmsi">
<node COLOR="#999999" ID="Freemind_Link_835144271"
TEXT="Slovenian translation">
<font NAME="SansSerif" SIZE="10"/>
</node>
</node>
<node COLOR="#996600" FOLDED="true" ID="Freemind_Link_1008886206"
TEXT="William Chen">
<node COLOR="#999999" ID="Freemind_Link_1960552629"
TEXT="Chinese translation">
<font NAME="SansSerif" SIZE="10"/>
</node>
</node>
<node COLOR="#996600" FOLDED="true" ID="Freemind_Link_1650138043"
TEXT="Radek Švarc">
<node COLOR="#999999" ID="Freemind_Link_768227373"
TEXT="Czech translation">
<font NAME="SansSerif" SIZE="10"/>
</node>
</node>
<node COLOR="#996600" FOLDED="true" ID="Freemind_Link_901975324"
TEXT="Balázs Márton">
<node COLOR="#999999" ID="Freemind_Link_557911120"
TEXT="Hungarian translation">
<font NAME="SansSerif" SIZE="10"/>
</node>
</node>
<node COLOR="#996600" FOLDED="true" ID="Freemind_Link_290351026"
TEXT="Luis Ferreira ">
<node COLOR="#999999" ID="Freemind_Link_6081004"
TEXT="Portuguese translation">
<font NAME="SansSerif" SIZE="10"/>
</node>
</node>
<node COLOR="#999999" ID="Freemind_Link_23652566"
TEXT="The credits for translations are probably incomplete. If we have forggoten you, let us know. All people who we know to contribute a least an incomplete translation are listed.">
<font NAME="SansSerif" SIZE="10"/>
</node>
</node>
</node>
<node ID="Freemind_Link_1562105759" LINK="http://www.worldhello.net" POSITION="right"
TEXT="获取 WHODO 账号,参与本文翻译……">
<cloud COLOR="#ffff66"/>
<font ITALIC="true" NAME="SansSerif" SIZE="12"/>
</node>
<node COLOR="#0033ff" ID="Freemind_Link_637386019" POSITION="right"
TEXT="按 Ctrl + F 查找。按 Ctrl + G 继续查找。为了在全局范围查找,在查找之前按 Esc 键(即转到根节点)。"/>
<node COLOR="#0033ff" ID="Freemind_Link_445153775" POSITION="right"
TEXT="按下右箭头以展开一个节点。"/>
<node COLOR="#407000" FOLDED="true" ID="_Freemind_Link_1596161299" POSITION="right"
TEXT="简介">
<node
TEXT="FreeMind makes it possible to create so called mind maps. Still, many people use it as an alternative to a tabbed notebook or a personal information manager."/>
<node
TEXT="Information is stored in text boxes, called nodes. Nodes are connected together using curved lines called edges."/>
<node
TEXT="This is a documentation for FreeMind 0.8.0. Keyboard mappings and positions of functions in menus can change from version to version."/>
</node>
<node COLOR="#996600" FOLDED="true" ID="_Freemind_Link_706084071" POSITION="right"
TEXT="Demonstration of some features">
<font NAME="SansSerif" SIZE="12"/>
<node COLOR="#669900" FOLDED="true" ID="_Freemind_Link_735193624"
TEXT="Appearance">
<font NAME="SansSerif" SIZE="12"/>
<node FOLDED="true"
TEXT="Nodes can have different colors.">
<font NAME="SansSerif" SIZE="12"/>
<node COLOR="#ff0000"
TEXT="Red">
<font NAME="SansSerif" SIZE="12"/>
</node>
<node COLOR="#009900"
TEXT="Green">
<font NAME="SansSerif" SIZE="12"/>
</node>
<node COLOR="#0000cc"
TEXT="Blue">
<font NAME="SansSerif" SIZE="12"/>
</node>
</node>
<node FOLDED="true" ID="_"
TEXT="Node can have various background colors">
<node ID="_Freemind_Link_1358611533"
TEXT="This"/>
<node ID="_Freemind_Link_1317973766"
TEXT="That"/>
</node>
<node FOLDED="true"
TEXT="Nodes can have different font style">
<font NAME="SansSerif" SIZE="12"/>
<node
TEXT="Bold">
<font BOLD="true" NAME="Dialog" SIZE="12"/>
</node>
<node
TEXT="Italics">
<font ITALIC="true" NAME="Dialog" SIZE="12"/>
</node>
<node
TEXT="Bold and italics">
<font BOLD="true" ITALIC="true" NAME="Dialog" SIZE="12"/>
</node>
</node>
<node FOLDED="true"
TEXT="Font of nodes can have different size">
<font NAME="SansSerif" SIZE="12"/>
<node
TEXT="small">
<font NAME="SansSerif" SIZE="11"/>
</node>
<node
TEXT="normal">
<font NAME="SansSerif" SIZE="13"/>
</node>
<node
TEXT="bigger">
<font NAME="SansSerif" SIZE="15"/>
</node>
<node FOLDED="true"
TEXT="Large">
<font NAME="SansSerif" SIZE="20"/>
<node
TEXT="OOh">
<font NAME="SansSerif" SIZE="123"/>
</node>
</node>
</node>
<node FOLDED="true"
TEXT="Different font families may be used">
<font NAME="SansSerif" SIZE="12"/>
<node
TEXT="This">
<font NAME="Times New Roman" SIZE="16"/>
</node>
<node ID="_Freemind_Link_1568731425"
TEXT="Or that">
<font NAME="Verdana" SIZE="12"/>
</node>
<node
TEXT="Or that one">
<font NAME="Dialog" SIZE="21"/>
</node>
</node>
<node FOLDED="true" ID="_Freemind_Link_1193071041"
TEXT="Different node styles can be used">
<node FOLDED="true" ID="_Freemind_Link_1979277285"
TEXT="Fork">
<node ID="_Freemind_Link_89124429"
TEXT="Fork"/>
<node ID="_Freemind_Link_173850525"
TEXT="Fork"/>
</node>
<node FOLDED="true" ID="_Freemind_Link_1001811541" STYLE="bubble"
TEXT="Bubbled">
<node ID="_Freemind_Link_1677737286" STYLE="bubble"
TEXT="Bubbled"/>
<node ID="_Freemind_Link_978246353" STYLE="bubble"
TEXT="Bubbled"/>
</node>
</node>
</node>
<node COLOR="#669900" FOLDED="true"
TEXT="Nodes can be folded">
<font NAME="SansSerif" SIZE="12"/>
<node FOLDED="true" ID="_Freemind_Link_307016912"
TEXT="Fold">
<font NAME="SansSerif" SIZE="12"/>
<node
TEXT="Hidden">
<font NAME="SansSerif" SIZE="12"/>
</node>
</node>
<node FOLDED="true" ID="_Freemind_Link_1488567837"
TEXT="Tree">
<font NAME="SansSerif" SIZE="12"/>
<node
TEXT="Oak">
<font NAME="SansSerif" SIZE="12"/>
</node>
<node
TEXT="Beech">
<font NAME="SansSerif" SIZE="12"/>
</node>
<node
TEXT="Elm">
<font NAME="SansSerif" SIZE="12"/>
</node>
</node>
</node>
<node COLOR="#669900" FOLDED="true"
TEXT="Nodes can contain followable links to ... ">
<font NAME="SansSerif" SIZE="12"/>
<node COLOR="#006699" FOLDED="true"
TEXT="Web pages">
<font NAME="SansSerif" SIZE="12"/>
<node LINK="http://www.google.com/"
TEXT="http://www.google.com/">
<font NAME="SansSerif" SIZE="12"/>
</node>
<node FOLDED="true" LINK="www.google.com"
TEXT="www.google.com">
<font NAME="SansSerif" SIZE="12"/>
<node COLOR="#999999"
TEXT="Freemind thinks this is executable :)">
<font NAME="Dialog" SIZE="10"/>
</node>
</node>
</node>
<node COLOR="#006699" FOLDED="true"
TEXT="Local folders">
<font NAME="SansSerif" SIZE="12"/>
<node LINK="C:/Program Files/"
TEXT="C:/Program Files/">
<font NAME="SansSerif" SIZE="12"/>
</node>
<node LINK="/home/"
TEXT="/home/">
<font NAME="SansSerif" SIZE="12"/>
</node>
</node>
<node COLOR="#006699" FOLDED="true"
TEXT="Executables">
<font NAME="SansSerif" SIZE="12"/>
<node FOLDED="true" LINK="C:\WINNT\regedit.exe"
TEXT="C:\WINNT\regedit.exe">
<font NAME="SansSerif" SIZE="12"/>
<node COLOR="#006600"
TEXT="You see that the node is executable by icon.">
<font NAME="SansSerif" SIZE="12"/>
</node>
</node>
</node>
<node
TEXT="Any document on your local computer or your company network">
<font NAME="SansSerif" SIZE="12"/>
</node>
</node>
<node COLOR="#669900" FOLDED="true" ID="_Freemind_Link_839677176"
TEXT="Multiline nodes">
<font NAME="SansSerif" SIZE="12"/>
<node ID="_Freemind_Link_1423568963"
TEXT="You can see multiline nodes as a paragraph or as several paragraphs. If you're going to build knowledge base using FreeMind, there is no way for you to avoid using them. Instead of having a plain test file to keep your set of notes, you can have one short node with many multiline nodes as its children."/>
<node ID="_Freemind_Link_1686184172"
TEXT=""Science is facts; just as houses are made of stones, so is science made of facts; but a pile of stones is not a house and a collection of facts is not necessarily science." --Henri Poincaré"/>
</node>
<node COLOR="#669900" FOLDED="true"
TEXT="Short multiline nodes with newlines">
<node ID="_Freemind_Link_1957797574"
TEXT="Line,
and second,

and yet another will do,
so what do you think of that?"/>
</node>
<node COLOR="#669900" FOLDED="true"
TEXT="You can emulate labelled edges">
<node FOLDED="true"
TEXT="Tree">
<font NAME="SansSerif" SIZE="12"/>
<node COLOR="#999999" FOLDED="true"
TEXT="is a">
<font NAME="Dialog" SIZE="10"/>
<node
TEXT="Oak">
<font NAME="SansSerif" SIZE="12"/>
</node>
</node>
<node COLOR="#999999" FOLDED="true"
TEXT="is a">
<font NAME="Dialog" SIZE="10"/>
<node
TEXT="Beech">
<font NAME="SansSerif" SIZE="12"/>
</node>
</node>
<node COLOR="#999999" FOLDED="true"
TEXT="is a">
<font NAME="Dialog" SIZE="10"/>
<node
TEXT="Elm">
<font NAME="SansSerif" SIZE="12"/>
</node>
</node>
</node>
<node FOLDED="true"
TEXT="Tree">
<font NAME="SansSerif" SIZE="12"/>
<node COLOR="#999999" FOLDED="true"
TEXT="<>">
<font NAME="Dialog" SIZE="10"/>
<node
TEXT="Leaf">
<font NAME="SansSerif" SIZE="12"/>
</node>
</node>
<node COLOR="#999999" FOLDED="true"
TEXT="<>">
<font NAME="Dialog" SIZE="10"/>
<node
TEXT="Trunk">
<font NAME="SansSerif" SIZE="12"/>
</node>
</node>
</node>
</node>
<node COLOR="#669900"
TEXT="You can have icons in a node">
<icon BUILTIN="knotify"/>
<icon BUILTIN="flag"/>
<icon BUILTIN="button_cancel"/>
<icon BUILTIN="button_ok"/>
<icon BUILTIN="back"/>
</node>
<node COLOR="#407000" FOLDED="true" ID="_Freemind_Link_318937820"
TEXT="You can have clouds">
<cloud/>
<node
TEXT="With custom colors">
<cloud COLOR="#f1ede6"/>
</node>
</node>
<node COLOR="#407000" FOLDED="true" ID="_Freemind_Link_1750585847"
TEXT="You can have graphical links">
<node ID="_Freemind_Link_1212380407"
TEXT="Connecting node">
<arrowlink DESTINATION="_Freemind_Link_1249400461" ENDARROW="Default" ENDINCLINATION="41;0;" STARTARROW="None" STARTINCLINATION="41;0;"/>
</node>
<node ID="_Freemind_Link_1249400461"
TEXT="To another">
<arrowlink COLOR="#6600ff" DESTINATION="_Freemind_Link_880551392" ENDARROW="Default" ENDINCLINATION="47;0;" ID="Freemind_Arrow_Link_85185909" STARTARROW="None" STARTINCLINATION="47;0;"/>
</node>
<node ID="_Freemind_Link_880551392"
TEXT="With different color">
<arrowlink DESTINATION="_Freemind_Link_1789233193" ENDARROW="Default" ENDINCLINATION="82;44;" ID="Freemind_Arrow_Link_1672464612" STARTARROW="None" STARTINCLINATION="82;44;"/>
</node>
<node ID="_Freemind_Link_1789233193"
TEXT="And different routing"/>
</node>
<node COLOR="#407000" FOLDED="true" ID="_Freemind_Link_127668276"
TEXT="Node can be positioned freely">
<node ID="_Freemind_Link_894936766"
TEXT="One"/>
<node ID="_Freemind_Link_1942481455"
TEXT="Another"/>
</node>
</node>
<node COLOR="#407000" FOLDED="true" ID="_Freemind_Link_1709752669" POSITION="right"
TEXT="Creating and deleting nodes">
<node
TEXT="To create a child node, press Insert."/>
<node
TEXT="To create a child node while editing another node, press Insert while editing."/>
<node
TEXT="To create a sibling node below, press Enter."/>
<node
TEXT="To create a sibling node above, press Shift + Enter."/>
<node
TEXT="To delete a node, press delete."/>
<node
TEXT="To delete a node while keeping for pasting, press Control + X."/>
<node
TEXT="Alternatively, use node context menu, by right-clicking a node."/>
</node>
<node COLOR="#407000" FOLDED="true" ID="Freemind_Link_1700974092" POSITION="right"
TEXT="Editing node text">
<node ID="_Freemind_Link_519923426"
TEXT="To edit a node, press F2, HOME or END key, or in node context menu use Edit. To finish editing a node, press ENTER.">
<arrowlink DESTINATION="_Freemind_Link_519923426" ENDARROW="Default" ENDINCLINATION="0;0;" ID="Freemind_Arrow_Link_1179992477" STARTARROW="None" STARTINCLINATION="0;0;"/>
</node>
<node
TEXT="To replace the text in a node with new one, start typing."/>
<node
TEXT="To force long node editor when editing a short node, press Alt + Enter."/>
<node
TEXT="To split a long node, use the button Split at the top of long node editor, or press Alt + S in the long node editor."/>
<node
TEXT="To insert a newline in long node editor, press Control + Enter. You cannot insert newline in short node editor.">
<arrowlink DESTINATION="_Freemind_Link_1445647544" ENDARROW="Default" ENDINCLINATION="118;0;" ID="Freemind_Arrow_Link_1628309717" STARTARROW="None" STARTINCLINATION="118;0;"/>
</node>
<node
TEXT="To copy a selection to the clipboard while editing long node, press right mouse button and choose copy."/>
<node
TEXT="To insert a special symbol like ©, insert it into your favorite text editor like Microsoft Word first, and then paste it into FreeMind."/>
<node ID="_Freemind_Link_1445647544"
TEXT="By default, Enter finishes editing of a long node, and Control + Enter inserts a newline. By unchecking the check box "Enter confirms" you can reverse the function of the mentioned key combinations, i.e. ENTER enters new line and CONTROL ENTER finishes editing. You can set the default value of that check box in preferencess. Moreover, the value of the box is saved during a session of FreeMind."/>
<node
TEXT="FreeMind fully supports unicode. Thus you can use the script of your choice."/>
</node>
<node COLOR="#407000" FOLDED="true" ID="Freemind_Link_1660149394" POSITION="right"
TEXT="Formatting a node">
<node
TEXT="To make a node bold, press Ctrl + B.">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
</node>
<node
TEXT="To make a node italic, press Ctrl + I.">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
</node>
<node
TEXT="To change the text color of a node, press Alt + C.">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
</node>
<node
TEXT="To change the background color of a node, in node context menu use Format > Background color."/>
<node
TEXT="To increase node font size, press Control + plus (not plus on numeric keyboard).">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
</node>
<node
TEXT="To decrease node font size, press Control + minus (not minus on numeric keyboard).">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
</node>
<node
TEXT="To change the font family, use the field in the main toolbar."/>
<node
TEXT="To copy formats of a node, press Alt + C"/>
<node
TEXT="To paste formats onto a node, press Alt + V."/>
</node>
<node COLOR="#407000" FOLDED="true" ID="Freemind_Link_526328879" POSITION="right"
TEXT="Using physical styles">
<node
TEXT="To apply a physical style, in node context menu use Physical Style > Style of Your Choice. To speedup applying physical styles, use keyboard shortcuts as shown in the node context menu."/>
<node
TEXT="To add your own physical style, given that you are a technical user, edit them in the file "patterns.xml" located at the folder ".freemind" in your home directory."/>
<node
TEXT="A remark on the file patterns.xml follows. Physical style applies to node, if there is a <node> tag. It applies to edge, if there is an <edge> tag. <node> tag can have <font> tag as a child. Study the file "patterns.xml" supplied with FreeMind."/>
</node>
<node COLOR="#407000" FOLDED="true" ID="Freemind_Link_1697687428" POSITION="right"
TEXT="Highlighting nodes with clouds">
<node
TEXT="Clouds are well suited for highlighting a region. Highlighted are the node and all its descendants."/>
<node
TEXT="To add a cloud, press Ctrl + Shift + B or in node context menu use Insert > Cloud."/>
<node
TEXT="To change the cloud color, in node context menu use Format > Cloud color."/>
<node FOLDED="true"
TEXT="Clouds can have various background colors like green ...">
<cloud COLOR="#e1f2e1"/>
<node
TEXT="... or brown.">
<cloud COLOR="#ede5d5"/>
</node>
</node>
</node>
<node COLOR="#407000" FOLDED="true" ID="Freemind_Link_203858515" POSITION="right"
TEXT="Adding hyperlink">
<node
TEXT="To add a hyperlink to a node, press Ctrl + K or in node context menu use Insert > Hyperlink."/>
<node
TEXT="To remove a hyperlink, set the hyperlink to empty after pressing Ctrl + K."/>
<node
TEXT="<html>
 <head>
 
 </head>
 <body>
 To link to a mail address, set the hyperlink as <i>mailto:[email protected]</i>.
 </body>
</html>
">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
</node>
<node
TEXT="<html>
 <head>
 
 </head>
 <body>
 To link to a mail address with giving a subject, set the hyperlink as <i>mailto:[email protected]?subject=Last 
 phone call</i>.
 </body>
</html>
"/>
<node
TEXT="Hyperlinks can link to web pages, local files, or email addresses."/>
</node>
<node COLOR="#407000" FOLDED="true" ID="Freemind_Link_1044397139" POSITION="right"
TEXT="Adding Icons">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
<node
TEXT=" A node can have several icons. "/>
<node
TEXT="To add icons to a node, select a node and click one of the icons displayed in the left toolbar. While moving the mouse cursor to the left toolbar, hold ALT or CONTROL so that you do not loose focus."/>
<node
TEXT="To remove one icon, press red cross at the top of the icon toolbar. "/>
<node
TEXT="To remove all icons, press trash can icon at the top of the icon toolbar."/>
<node
TEXT="To add a new icon to a node without using the left toolbar, press Alt + I."/>
<node
TEXT="There is no option to use your own icons; you can choose from the icons offered by FreeMind only."/>
<node
TEXT="To hide or show the icon toolbar, in the context menu at the background use Toggle Left Toolbar . The icon toolbar is called left toolbar there."/>
<node
TEXT="The icons as attached to this node are included, and more.">
<icon BUILTIN="help"/>
<icon BUILTIN="messagebox_warning"/>
<icon BUILTIN="idea"/>
<icon BUILTIN="button_ok"/>
<icon BUILTIN="button_cancel"/>
<icon BUILTIN="back"/>
<icon BUILTIN="forward"/>
<icon BUILTIN="attach"/>
<icon BUILTIN="ksmiletris"/>
<icon BUILTIN="clanbomber"/>
<icon BUILTIN="desktop_new"/>
<icon BUILTIN="flag"/>
<icon BUILTIN="gohome"/>
<icon BUILTIN="kaddressbook"/>
<icon BUILTIN="knotify"/>
<icon BUILTIN="korn"/>
<icon BUILTIN="Mail"/>
<icon BUILTIN="password"/>
<icon BUILTIN="pencil"/>
<icon BUILTIN="stop"/>
<icon BUILTIN="wizard"/>
<icon BUILTIN="xmag"/>
<icon BUILTIN="bell"/>
<icon BUILTIN="bookmark"/>
<icon BUILTIN="penguin"/>
<icon BUILTIN="licq"/>
</node>
</node>
<node COLOR="#407000" FOLDED="true" ID="_Freemind_Link_1996597932" POSITION="right"
TEXT="Adding graphical links">
<node
TEXT="To create a graphical link between two nodes, drag a node and drop it to another node holding both shift and control keys; release the mouse button before releasing shift and control keys.">
<arrowlink DESTINATION="_Freemind_Link_266716332" ENDARROW="Default" ENDINCLINATION="255;0;" ID="Freemind_Arrow_Link_1428344028" STARTARROW="None" STARTINCLINATION="255;0;"/>
</node>
<node
TEXT=" Alternatively, drag and drop using right mouse button."/>
<node ID="_Freemind_Link_208378337"
TEXT="To change the color of the link, use link context menu, by right-clicking the graphical link."/>
<node ID="_Freemind_Link_1484370636"
TEXT="To change the arrows of the link, use link context menu."/>
<node
TEXT="To delete a link, use link context menu,"/>
<node ID="_Freemind_Link_266716332"
TEXT="To navitage to one of the end nodes of the link, use link context menu."/>
<node ID="_Freemind_Link_1015289745"
TEXT="To change the routing of an arrow link, drag it and move it.">
<arrowlink DESTINATION="_Freemind_Link_266716332" ENDARROW="Default" ENDINCLINATION="256;22;" ID="Freemind_Arrow_Link_1273596772" STARTARROW="None" STARTINCLINATION="244;32;"/>
</node>
<node
TEXT="An example of graphical link follows."/>
<node COLOR="#996600" FOLDED="true"
TEXT="Example">
<node COLOR="#996600" ID="_Freemind_Link_1170112929"
TEXT="Link to another part">
<arrowlink COLOR="#9999ff" DESTINATION="_Freemind_Link_1492563156" ENDARROW="Default" ID="Freemind_Arrow_Link_33407992" STARTARROW="Default" STARTINCLINATION="30;0;"/>
</node>
<node COLOR="#996600" FOLDED="true"
TEXT="Node with folded subnode">
<node ID="_Freemind_Link_1492563156"
TEXT="Subnode"/>
</node>
<node COLOR="#996600" ID="_Freemind_Link_1370577235"
TEXT="Another link">
<arrowlink DESTINATION="_Freemind_Link_1170112929" ENDARROW="Default" ENDINCLINATION="61;0;" ID="Freemind_Arrow_Link_1872050149" STARTARROW="None" STARTINCLINATION="61;0;"/>
</node>
</node>
</node>
<node COLOR="#407000" FOLDED="true" ID="Freemind_Link_423038022" POSITION="right"
TEXT="Searching">
<font NAME="SansSerif" SIZE="12"/>
<node
TEXT="To find text in a node and all its descendant nodes, press Ctrl + F or in node context menu use Node > Find.">
<font NAME="SansSerif" SIZE="12"/>
</node>
<node
TEXT="To find next match of your previous search, press Ctrl + G or in node context menu use Node > Find Next.">
<font NAME="SansSerif" SIZE="12"/>
</node>
<node
TEXT="To search the whole map, position the node to the central node by pressing Escape before searching."/>
<node
TEXT="The search is a breadth-first search. That corresponds to the idea that the deeper a node, the greater the detail described in the node."/>
<node
TEXT="Remember that not the whole map is searched, only the node and its descendants."/>
</node>
<node COLOR="#407000" FOLDED="true" ID="Freemind_Link_653540280" POSITION="right"
TEXT="Selecting multiple nodes">
<font NAME="SansSerif" SIZE="12"/>
<node
TEXT="To select multiple nodes, hold control or shift while clicking. ">
<font NAME="SansSerif" SIZE="12"/>
</node>
<node
TEXT="To add single nodes to already selected nodes, hold control when clicking.">
<font NAME="SansSerif" SIZE="12"/>
</node>
<node
TEXT="To select a continuous range of nodes, hold shift when clicking, or hold shift while moving around with arrow keys.">
<font NAME="SansSerif" SIZE="12"/>
</node>
<node
TEXT="To select a complete subtree, hold Alt while clicking, or hold shift while moving with arrow keys from a node to its parent."/>
<node
TEXT="To cancel the selection of multiple nodes, click on the map background or onto an unselected node."/>
<node
TEXT="To select all visible nodes, in pull-down menu use Select All Visible."/>
<node
TEXT="To select all visible nodes of a branch, in pull-down menu use Select Visible Branch."/>
</node>
<node COLOR="#407000" FOLDED="true" ID="Freemind_Link_1024903226" POSITION="right"
TEXT="Dragging and dropping">
<edge WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12"/>
<node
TEXT="You can move nodes around using drag and drop.">
<font NAME="SansSerif" SIZE="12"/>
</node>
<node
TEXT="To drop a node as a child, position the cursor at the outter part of the node while dropping.">
<font NAME="SansSerif" SIZE="12"/>
</node>
<node
TEXT="To drop a node as a sibling, position the cursor at the top part of the target node while dropping.">
<font NAME="SansSerif" SIZE="12"/>
</node>
<node ID="_Freemind_Link_1994214827"
TEXT="To copy nodes rather than move, hold control while dragging, or drag with middle mouse button.">
<font NAME="SansSerif" SIZE="12"/>
</node>
<node
TEXT="To edit an existing map, drag its file and drop it on the background of FreeMind; this works at least in Microsoft Windows operating system."/>
<node
TEXT="To create a graphical link, drag and drop while holding right mouse button."/>
<node
TEXT="If you have selected multiple nodes, all are being moved or copied.">
<font NAME="SansSerif" SIZE="12"/>
</node>
<node
TEXT="You can drop data from external applications, like files on Microsoft Windows operating system, or pieces of text selected in Microsoft Internet Explorer."/>
</node>
<node COLOR="#407000" FOLDED="true" ID="Freemind_Link_958781924" POSITION="right"
TEXT="Copying and pasting">
<font NAME="SansSerif" SIZE="12"/>
<node
TEXT="You can copy and paste (multiple) nodes between mindmaps as expected. In addition, you can paste normal text or HTML from other applications.">
<font NAME="SansSerif" SIZE="12"/>
</node>
<node
TEXT="If you paste plain text, multiple lines are pasted as multiple nodes, with their depth determined by the number of leading spaces in the text. An example follows."/>
<node COLOR="#996600" FOLDED="true"
TEXT="Tree
 Oak
 Beech
 ">
<node FOLDED="true"
TEXT="is pasted as">
<font NAME="SansSerif" SIZE="12"/>
<node COLOR="#996600" FOLDED="true"
TEXT="Tree">
<font NAME="SansSerif" SIZE="12"/>
<node COLOR="#996600"
TEXT="Oak">
<font NAME="SansSerif" SIZE="12"/>
</node>
<node COLOR="#996600"
TEXT="Beech">
<font NAME="SansSerif" SIZE="12"/>
</node>
</node>
</node>
</node>
<node
TEXT="If you paste HTML, it is pasted as plain text. Additionally, the links contained in HTML are pasted as children of an additional node with text "Links". Example follows."/>
<node FOLDED="true"
TEXT="Example result after pasting:">
<font NAME="SansSerif" SIZE="12"/>
<node
TEXT="Shopping (120236)">
<font NAME="SansSerif" SIZE="12"/>
</node>
<node
TEXT="Urban Living (19)">
<font NAME="SansSerif" SIZE="12"/>
</node>
<node FOLDED="true"
TEXT="Links">
<font BOLD="true" NAME="Dialog" SIZE="12"/>
<node LINK="http://directory.google.com/Top/Shopping/"
TEXT="Shopping">
<font NAME="SansSerif" SIZE="12"/>
</node>
<node LINK="http://directory.google.com/Top/Home/Urban_Living/"
TEXT="Urban Living">
<font NAME="SansSerif" SIZE="12"/>
</node>
</node>
</node>
<node
TEXT="If you paste file list selected in Explorer in Microsoft Windows, it is pasted as a set of links to the files."/>
<node
TEXT="If in FreeMind you copy a branch and paste it into a plain text editor, the tree structure is shown by indentation. Hyperlinks are pasted in <> brackets. An example follows."/>
<node COLOR="#996600" FOLDED="true"
TEXT="Tree">
<font NAME="SansSerif" SIZE="12"/>
<node COLOR="#996600"
TEXT="Oak">
<font NAME="SansSerif" SIZE="12"/>
</node>
<node COLOR="#996600" FOLDED="true"
TEXT="Beech">
<font NAME="SansSerif" SIZE="12"/>
<node FOLDED="true"
TEXT="is pasted as">
<font NAME="SansSerif" SIZE="12"/>
<node COLOR="#996600"
TEXT="Tree
 Oak
 Beech
 Google <http://www.google.com/>
">
<font NAME="SansSerif" SIZE="12"/>
</node>
</node>
</node>
<node COLOR="#996600" LINK="http://www.google.com/"
TEXT="Google">
<font NAME="SansSerif" SIZE="12"/>
</node>
</node>
<node
TEXT="If in FreeMind you copy a branch and paste it into an editor that understands rich text format, the formatting including color and font is pasted too. Hyperlinks are pasted in <> brackets, just like with plain text. Editors that understand rich text format include Microsoft Word, Wordpad or Microsoft Outlook, or some tabbed notebooks in Linux."/>
<node
TEXT="To copy a node without its descendants, press Ctrl + Y or in node context menu use Copy Single."/>
</node>
<node COLOR="#407000" FOLDED="true" ID="_Freemind_Link_1540212684" POSITION="right"
TEXT="Moving around">
<node
TEXT="To move the cursor up, down, left or right, use arrow keys."/>
<node
TEXT="To move to the top of the current subtree, press PageUp."/>
<node
TEXT="To move to the bottom of the current subtree, press PageDown."/>
<node