forked from ankitects/anki-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanual.txt
More file actions
4219 lines (3246 loc) · 170 KB
/
Copy pathmanual.txt
File metadata and controls
4219 lines (3246 loc) · 170 KB
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
++++++++++++++++++++++++++++++
<h1>Anki 2.0 User Manual</h1>
<script>
document.getElementById("navmanual").className += " active";
</script>
++++++++++++++++++++++++++++++
Intro Videos
============
* http://www.youtube.com/watch?v=QS2G-k2hQyg&feature=plcp[Shared decks and review basics]
* http://www.youtube.com/watch?v=DnbKwHEQ1mA[Switching Card Order]
* http://www.youtube.com/watch?v=F1j1Zx0mXME[Styling Cards]
* http://www.youtube.com/watch?v=5tYObQ3ocrw[Typing in the Answer]
Translations
============
This page translated into other languages:
* http://192.167.9.6/Anki_ITA/Manual_ITA.htm[Italiano]
* http://wikiwiki.jp/rage2050/?FrontPage[日本語]
Introduction
============
:website: http://ankisrs.net/[Anki website]
:ankiweb: https://ankiweb.net/
Anki is a program which makes remembering things easy. Because it is a lot
more efficient than traditional study methods, you can either greatly decrease
your time spent studying, or greatly increase the amount you learn.
Anyone who needs to remember things in their daily life can benefit from Anki.
Since it is content-agnostic and supports images, audio, videos and scientific
markup (via LaTeX), the possibilities are endless. For example:
- learning a language
- studying for medical and law exams
- memorizing people's names and faces
- brushing up on geography
- mastering long poems
- even practicing guitar chords!
There are two simple concepts behind Anki: 'active recall testing' and 'spaced
repetition'. They are not known to most learners, despite having been written
about in the scientific literature for many years. Understanding how they work
will make you a more effective learner.
[[active-recall]]
Active Recall Testing
---------------------
'Active recall testing' means being asked a question and trying to remember
the answer. This is in contrast to 'passive study', where we read, watch or
listen to something without pausing to consider if we know the answer.
Research has shown that active recall testing is far more effective at
building strong memories than passive study. There are two reasons for this:
- The act of recalling something 'strengthens' the memory, increasing the
chances we'll be able to remember it again
- When we're unable to answer a question, it tells us we need to return to
the material to review or relearn it
You have probably encountered active recall testing in your school years
without even realizing it. When good teachers give you a series of questions
to answer after reading an article, or make you take weekly progress-check
tests, they are not doing it simply to see if you understood the material or
not. By testing you, they are increasing the chances you will be able to
remember the material in the future.
A good way to integrate active recall testing into your own studies is to use
'flashcards'. With traditional paper flashcards, you write a question on one
side of a card, and the answer on the other side. By not turning the card over
until you've thought about the answer, you can learn things more
effectively than passive observation allows.
Use It or Lose It
------------------
Our brains are efficient machines, and they rapidly discard information that
doesn't seem useful. Chances are that you don't remember what you had for
dinner on Monday two weeks ago, because this information is not usually
useful. If you went to a fantastic restaurant that day and spent the last two
weeks telling people about how great it was, however, you're likely to still
remember in vivid detail.
The brain's "use it or lose it" policy applies to everything we learn. If you
spend an afternoon memorizing some science terms, and then don't think about
that material for two weeks, you'll probably have forgotten most of it. In
fact, studies show we forget about 75% of material learnt within a 48 hour
period. This can seem pretty depressing when you need to learn a lot of
information.
The solution is simple, however: 'review'. By reviewing newly-learnt
information, we can greatly reduce forgetting.
The only problem is that traditionally review was not very practical. If you
are using paper flashcards, it's easy to flick through all of them if you only
have 30 of them to review, but as the number grows to 300 or 3000, it quickly
becomes unwieldy.
[[spaced-repetition]]
Spaced Repetition
-----------------
The 'spacing effect' was reported by a German psychologist in 1885. He
observed that we tend to remember things more effectively if we spread reviews
out over time, instead of studying multiple times in one session. Since the
1930s there have been a number of proposals for utilizing the spacing effect
to improve learning, in what has come to be called 'spaced repetition'.
One example is in 1972, when a German scientist called Sebastian Leitner
popularized a method of spaced repetition with paper flashcards. By separating
the paper cards up into a series of boxes, and moving the cards to a different
box on each successful or unsuccessful review, it was possible to see at a
glance a rough estimate of how well a card was known and when it should be
reviewed again. This was a great improvement over a single box of cards, and
it has been widely adopted by computerized flashcard software. It is a rather
rough approach however, as it can't give you an exact date on which you should
review something again, and it doesn't cope very well with material of varying
difficulty.
The biggest developments in the last 30 years have come from the authors of
SuperMemo, a commercial flashcard program that implements spaced repetition.
SuperMemo pioneered the concept of a system that keeps track of the ideal time
to review material and optimizes itself based on the performance of
the user.
In SuperMemo's spaced repetition system, every time you answer a question, you
tell the program how well you were able to remember it - whether you forgot
completely, made a small mistake, remembered with trouble, remembered easily,
etc. The program uses this feedback to decide the optimal time to show you the
question again. Since a memory gets stronger each time you successfully recall
it, the time between reviews gets bigger and bigger - so you may see a
question for the first time, then 3 days later, 15 days later, 45 days later,
and so on.
This was a revolution in learning, as it meant material could be learnt and
retained with the absolute minimum amount of effort necessary. SuperMemo's
slogan sums it up: with spaced repetition, you can 'forget about forgetting'.
Why Anki?
---------
While there is no denying the huge impact SuperMemo has had on the field, it
is not without its problems. The program is often criticized for being buggy
and difficult to navigate. It only runs on Windows computers. It's proprietary
software, meaning end-users can't extend it or access the raw data. And while
very old versions are made available for free, they are quite limited for
modern use.
Anki addresses these issues. There are free clients for Anki available on many
platforms, so struggling students and teachers with budgetary constraints are
not left out. It's open source, with an already flourishing library of add-ons
contributed by end-users. It's multi-platform, running on Windows, Mac OSX,
Linux/FreeBSD, and some mobile devices. And it's considerably easier to use
than SuperMemo.
Internally, Anki's spaced repetition system is based on an older version of
the SuperMemo algorithm called SM2. Subsequent versions have managed to
squeeze out a little more learning efficiency, but they come at the cost of
greatly increased complexity, and they are more susceptible to scheduling
errors in real-world use. For a more in-depth discussion of this and the
differences in scheduling algorithms, see the bottom of the page.
[[basics]]
The Basics
==========
Cards
-----
A question and answer pair is called a 'card'. This is based on a paper
flashcard with a question on one side an the answer on the back. In Anki a
card doesn't actually look like a physical card, and when you show the answer
the question remains visible by default. For example, if you're studying basic
chemistry, you might see a question like:
-----
Q: Chemical symbol for oxygen?
-----
After thinking about it, and deciding the answer is O, you click the show
answer button, and Anki shows you:
-----
Q: Chemical symbol for oxygen?
A: O
-----
After checking you are correct, you can tell Anki how well you remembered, and
Anki will choose a next time to show you again.
Decks
-----
A 'deck' is a group of cards. You can place cards in different decks to study
parts of your card collection instead of studying everything at once. Each
deck can have different settings, such as how many new cards to show each day,
or how long to wait until cards are shown again.
Decks can contain other decks, which allows you to organize decks into a tree.
Anki uses "::" to show different levels. A deck called "Chinese::Hanzi" refers
to a "Hanzi" deck, which is part of a "Chinese" deck. If you select "Hanzi"
then only the Hanzi cards will be shown; if you select "Chinese" then all
Chinese cards, including Hanzi cards, will be shown.
To place decks into a tree, you can either name them with "::" between each level,
or drag and drop them from the deck list.
Anki starts with a deck called "default"; any cards which have somehow become
separated from other decks will go here. Anki will hide the default deck if it
contains no cards and you have added other decks. Alternatively, you may rename
this deck and use it for other cards.
Decks are best used to hold broad categories of cards, rather than specific
topics such as "food verbs" or "lesson 1". For more info on this, please see
the <<manydecks,using decks appropriately>> section.
For information on how decks affect the order cards are displayed in, please
see <<displayorder,display order>> section.
Notes & Fields
---------------
When making flashcards, it's often desirable to make more than one card that
relates to some information. For example, if you're learning French, and you
learn that the word "bonjour" means "hello", you may wish to create one card
that shows you "bonjour" and asks you to remember "hello", and another card
that shows you "hello" and asks you to remember "bonjour". One card is testing
your ability to recognize the foreign word, and the other card is testing your
ability to produce it.
When using paper flashcards, your only option in this case is to write out the
information twice, once for each card. Some computer flashcard programs make
life easier by providing a feature to flip the front and back sides. This is
an improvement over the paper situation, but there are two major downsides:
* Because such programs don't track your performance of recognition and
production separately, cards will tend not to be shown to you at the optimum
time, meaning you forget more than you'd like, or you study more than is
necessary.
* Reversing the question and answer only works when you want exactly the same
content on each side. This means it's not possible to display extra info on the
back of each card for example.
Anki solves these problems by allowing you to split the content of your cards
up into separate pieces of information. You can then tell Anki which pieces of
information you want on each card, and Anki will take care of creating the
cards for you, and updating them if you make any edits in the future.
Imagine we want to study French vocabulary, and we want to include the page
number on the back of each cards. We want our cards to look like this:
like this:
-----
Q: Bonjour
A: Hello
Page #12
-----
And:
-----
Q: Hello
A: Bonjour
Page #12
-----
In this example, we have three pieces of related information: a French word,
an English meaning, and a page number. If we put them together, they'd look
like this:
-----
French: Bonjour
English: Hello
Page: 12
-----
In Anki, this related information is called a 'note', and each piece of
information is called a 'field'. So we can say that this type of note has
three fields: French, English and Page.
Card Templates
--------------
In order for Anki to create cards based on our notes, we need to give it a
blueprint that says which fields should be displayed on the front or back of
each card. This blueprint is called a 'card template'. Different types of
notes can have different templates.
In the above French example, we wanted the recognition card to look like this:
-----
Q: Bonjour
A: Hello
Page #12
-----
To do this, we can set the template question and answer to:
-----
Q: {{French}}
A: {{English}}<br>
Page #{{Page}}
-----
By surrounding a field name in curly brackets, we tell Anki to replace that
section with the actual information in the field. The information not
surrounded by curly brackets remains the same on each card.
The <br> is a special code that tells Anki to move to the next line. More
information is available in the Cards & Templates section.
Notice how we don't have to type "Page #" when adding material - it's added
automatically to every card.
The production card template is created in a similar way:
-----
Q: {{English}}
A: {{French}}<br>
Page #{{Page}}
-----
Once a card template has been created, every time you add a new note, a card
will be created based on that template. Templates make it easy to keep the
formatting of your cards consistent, and can greatly reduce the amount of
effort involved in adding information. They also mean Anki can ensure related
cards don't appear too close to each other, and mean you can fix a typing
mistake once and have all the related cards updated at once.
To add and edit card templates, click the "Cards..." button while adding or
editing notes.
Note Types
----------
Anki allows you to create different types of notes for different material.
Each type of note has its own set of fields and card templates. It's a good
idea to create a separate note type for each broad topic you're studying. In
the above French example, we might create a note type called "French" for
that. If we wanted to learn capitals cities, we could create a separate note
type for that as well, with fields such as "Country" and "Capital City".
When Anki checks for duplicates, it only compares other notes of the same
type. Thus if you add a capital city called "Orange" using the capital city
note type, you won't see a duplicate message when it comes time to learn how
to say "orange" in French.
When you create a new collection, Anki automatically adds some standard note
types to it. These note types are provided to make Anki easier for new users,
but in the long run it's recommended you define your own note types for the
content you are learning. The standard note types are as follows:
Basic :: Has Front and Back fields, and will create one card. Text you
entered in Front will appear on the front of the card, and text you entered
in Back will appear on the back of the card.
Basic (and reversed card) :: Creates two cards for the text you enter: one
from front->back and one from back->front.
Basic (optional reversed card) :: This a front->back card, and optionally a
back->front card. To do this, it has a third field called "Add Reverse". If
you enter any text into that field, a reverse card will be created. More
information about this is available in the Cards & Templates section.
Cloze :: A note type which makes it easy to select text and turn it into a
cloze deletion (eg "Man landed on the moon in [...]" -> "Man landed on the
moon in [1969]"). More information is available in later sections.
To add your own note types and modify existing ones, you can use Tools>Manage
Note Types.
Collection
-----------
Your collection is all the material stored in Anki - your cards, notes, decks,
templates, and so on.
Adding Material
================
Downloading Shared Decks
-------------------------
The easiest way to get started with Anki is to download a deck of cards
someone has shared.
1. Open Anki, and click the "Get Shared" button at the bottom of the deck list.
2. When you've found a deck you're interested in, click the "Download" button
to download a deck package.
3. Double-click on the downloaded package to load it into Anki, or
File>Import it.
Please note that it's not currently possible to add shared decks directly to
your AnkiWeb account. You need to import them with the desktop program, then
synchronize to upload them to AnkiWeb.
Please see <<sharingdecks,sharing decks>> for info on sharing your decks with
others.
.Self-made versus pre-made
**********************************************************************
Creating your own deck is the most effective way to learn a complex subject.
Subjects like languages and the sciences can't be understood simply by
memorizing facts - they require explanation and context to learn effectively.
Furthermore, inputting the information yourself forces you to decide what the
key points are, and leads to a better understanding.
If you are a language learner you may be tempted to download a long list of
words and their translations, but this won't teach you a language any more
than memorizing scientific equations will teach you astrophysics. To learn
properly, you need textbooks, teachers, or exposure to real-world sentences.
Do not learn if you do not understand.
-- SuperMemo
Most shared decks are created by people who are learning material outside of
Anki - from textbooks, classes, TV, etc. They select the interesting points
from what they learn and put them into Anki. They make no effort to add
background information or explanations to the cards, because they already
understand the material. So when someone else downloads their deck and tries
to use it, they'll find it very difficult as the background information and
explanations are missing.
That is not to say shared decks are useless - simply that for complex
subjects, they should be used as a 'supplement' to external material, not as a
'replacement' for it. If you're studying textbook ABC and someone has shared a
deck of ideas from ABC, that's a great way to save some time. And for simple
subjects that are basically a list of facts, such as capital city names or pub
quiz trivia, you probably don't need external material. But if you attempt to
study complex subjects without external material, you will probably meet with
disappointing results.
**********************************************************************
[[addingnotes]]
Adding Cards and Notes
-----------------------
Recall from the <<basics,basics>> that in Anki we add notes rather than cards,
and Anki creates cards for us. Click 'Add' in the main window, and the Add
Notes window will appear.
The top left of the window shows us the current note type. If it does
not say "Basic", then you may have added some note types when you downloaded a
shared deck. The text below assumes that "Basic" is selected.
The top right of the window shows us the deck cards will be added to. If you'd
like to add cards to a new deck, you can click on the deck name button and
then click "Add".
Below the note type, you'll see some buttons, and an area labeled "Front" and
"Back". Front and Back are called 'fields', and you can add, remove and
rename them by clicking the "Fields..." button above.
Below the fields is another area labelled "Tags". Tags are labels that you can
attach to your notes, to make organizing and finding notes easier. You can
leave the tags blank if you wish, or add one or more of them. Tags are
separated by a space. If the tags area says
vocab check_with_tutor
...then the note you add would have two tags.
When you've entered text into the front and back, you can click the "Add"
button or press Ctrl+Enter (Command+Enter on a Mac) to add the note to your
collection. When you do so, a card will be created as well, and placed into the
deck you chose. If you'd like to edit a card you added, you can click the
history button to search for a recently added card in the browser. (The browser
is a separate window that allows you to look at, search for, and modify cards
in your collection.)
Anki checks the first field for uniqueness, so it will warn you if you enter
two cards with a Front field of "apple" (for example). The uniqueness check is
limited to the current note type, so if you're studying multiple languages, two
cards with the same Front would not be listed as duplicates as long as you had
a different note type for each language.
Anki doesn't check for duplicates in other fields automatically for efficiency
reasons, but the browser has a "Find Duplicates" function which you can run
periodically.
For more information on the buttons between the note type and the fields,
please see the <<editor,editor>> section.
.Best Practices
**********************************************************************
Different people like to review in different ways, but there are some general
concepts to keep in mind. An excellent introduction is
http://www.supermemo.com/articles/20rules.htm[this article] on the
SuperMemo site. In particular:
* *Keep it simple* The shorter your cards, the easier they are to review. You
may be tempted to include lots of information 'just in case', but reviews
will quickly become painful.
* *Don't memorize without understanding* If you're studying a language, try
to avoid large lists of words. The best way to learn languages is in
context, which means seeing those words used in a sentence. Likewise,
imagine you're studying a computer course. If you attempt to memorize the
mountain of acronyms, you'll find it very difficult to make progress. But
if you take the time to understand the concepts behind the acronyms,
learning the acronyms will become a lot easier.
**********************************************************************
[[notetypes]]
Adding a Note Type
-------------------
While basic notes are sufficient for simple cards with only a word or phrase
on each side, as soon as you find yourself wanting to include more than one
piece of information on the front or back, it's better to split that
information up into more fields.
You may find yourself thinking "but I only want one card, so why can't I just
include the audio, a picture, a hint and the translation in the Front field?"
If you'd prefer to do that, that's fine. But the disadvantage of that approach
is that all the information is stuck together. If you wanted to sort your
cards by the hint, you wouldn't be able to do that as it's mixed in with the
other content. You also wouldn't be able to do things like move the audio from
the front to the back, except by laboriously copying and pasting it for every
note. By keeping content in separate fields, it makes it much easier to adjust
the layout of your cards in the future.
To create a new type of note, in the Add window, click on the button next to
"type", and then on the "Manage" button. Then click "Add" to add a new type of
note. You'll now see another screen that gives you a choice of note types to
base the new type on. "Add" means to base the newly created type on one that
comes with Anki. "Clone" means to base the newly created type on one that is
in your collection. If you'd created a French vocab type already for example,
you might use that when creating a German vocab type.
After choosing "OK", you'll be asked to name the new type. The subject
material you're studying is a good choice here - things like "Japanese",
"Trivia", and so on. Once you've chosen a name, close the Note Types window,
and you'll return to the adding window.
[[fields]]
Customizing Fields
-------------------
To customize fields, click the "Fields..." button when adding or editing a
note.
You can add, remove, or rename fields by clicking the appropriate buttons. To
switch the order in which the fields appear in this dialog and the add notes
dialog, you can use the reposition button, which asks for the numerical
position you want the field to have. So if you want to move a field to be the
new first field, enter "1".
The options at the bottom of the screen allow you to edit various properties of
the fields to be used when adding and editing the cards. This is not where you
customize what appears on your cards when reviewing; for this, please see
<<templates,templates>>.
*Editing Font* allows you to customize the font and size used when editing
notes. This is useful if you want to make unimportant information smaller, or
increase the size of foreign characters which are hard to read. The changes
you make here do not affect how cards appear when reviewing: to do that,
please see the <<templates,templates>> section. If you have enabled the "type
in the answer" function however, the text you type will use the font size
defined here.
*Sort by this field...* tells Anki to show this field in the Sort Field column
of the browser, and you can use this to sort cards by that field. Only one
field can be the sort field at once.
When *Remember last input...* is checked, Anki will not clear out the field
content after a note is added. If you find yourself entering the same content
into multiple notes, you may find this useful.
*Reverse text direction* is useful if you are studying languages that display
text from right to left (RTL), such as Arabic or Hebrew. This setting
currently only controls editing; to make sure the text displays correctly
during review, you'll need to adjust your <<templatesrtl,template>>.
After you've added fields, you'll probably want to add them to the front or
back of your cards. For more information on that, please see the
<<templates,templates>> section.
NOTE: Do not use Tags, Type, Deck, or Card as field names, as they are
<<specialfields,special fields>> and will not work properly.
Changing Deck / Note Type
--------------------------
While adding, you can click on the top left button to change note type, and
the top right button to change deck. The window that opens up will not only
allow you to select a deck or note type, but also to add new decks or manage
your note types.
[[manydecks]]
Using Decks Appropriately
--------------------------
Decks are designed to divide your content up into broad categories
that you wish to study separately, such as English, Geography, and so on. You
may be tempted to create lots of little decks to keep your content organized,
such as "my geography book chapter 1", or "food verbs", but this is not
recommended, for the following reasons:
* Lots of little decks mean you end up reviewing cards in a recognizable order.
Whether it's because you're clicking on each deck in turn (which is slow)
or you've added a number of decks under a single parent deck, you'll end up
seeing all the "chapter 1" or "food verb" cards together. This makes it
easier to answer the cards, as you can guess them from the context, which
leads to weaker memories. When you need to recall the word or phrase outside
Anki, you won't have the luxury of being shown related content first!
* Anki was not designed to handle many decks (more than several dozen), and
it will slow down as you add more - especially if you're studying on a mobile
client. A few extra decks is not going to make a noticeable difference, but
if you have many decks the delays will start to add up.
Instead of creating lots of little decks, it's a better idea to use tags and/or
fields to classify your content. Instead of creating a "food verbs" decks for
example, you could add those cards to your main language study deck, and tag
the cards with "food" and "verb". Each card can have multiple tags, which means
you can do things like search for all verbs, or all food-related vocabulary,
or all verbs that are related to food.
For those who like to stay very organized, you can add fields to your notes
to classify your content, such as "book", "page", and so on. Anki supports
searching in specific fields, which means you can do a search for
"book:'my book' page:63" and immediately find what you're looking for.
Anki's custom study and filtered deck features (covered later in the manual)
make this especially powerful, as you can create temporary decks out of
search terms. This allows you to review your content mixed together in a
single deck most of the time (for optimum memory), but also create temporary
decks when you need to focus on particular material, such as before a test.
The general rule is that if you always want to be able to study some content
separately, it should be in a normal deck, and if you only occasionally need
to be able to study it separately (for a test, when under a backlog, etc),
tags/fields and filtered decks are better.
Studying
==========
When you have found a deck you like or entered some notes in, it's time to
start studying.
Decks
------
Study in Anki is limited to the currently selected deck, and any decks it
contains. You can change the currently selected deck by clicking on "Decks" in
the main window.
On the decks screen, your decks will be displayed in a list. There are two
number columns, 'due' and 'new'. 'Due' is the count of waiting reviews and
cards currently in learning. 'New' is the number of new cards that are waiting
to be learnt that day.
When you click on a deck, it will become the 'current deck', and Anki will
change to the study screen.
You can click the gears button to the right of a deck in order to rename or
delete decks, or customize their options.
Study Overview
--------------
After clicking on a deck to study, you'll see a screen that shows you how many
cards are due today. There are three types:
* *New* refers to cards that you have downloaded or entered in, but have
never been studied before.
* *Learning* refers to cards that were seen for the first time recently,
and are still being learnt.
* *To Review* refers to cards that were previously learnt, and now need to be
reviewed so you don't forget them.
To start a study session, click the *Study Now* button. Anki will proceed to
show you cards until the cards to be shown for the day have run out.
While studying, you can return to the overview by pressing the "s" key on your
keyboard.
Questions
---------
When a card is shown, only the question is shown at first. After thinking
about the answer, either click the *Show Answer* button, or press the
spacebar. The answer will then be shown. It's ok if it takes you a little
while to recall the answer, but as a general rule if you can't answer within
about 10 seconds, it's better to give up and show the answer than keep
struggling to remember.
When the answer is shown, you should compare the answer you thought of with
the answer which is shown, and tell Anki how well you remembered. If you don't
trust yourself to compare your answer accurately, you can ask Anki to prompt
you to type in the answer rather than just showing it to you. If you'd like to
do this, please see the <<templates,templates>> section.
The number of buttons available for grading depends on whether the card is
being learnt or reviewed.
[[learning]]
Learning
---------
When learning new cards, or when relearning cards that you have forgotten,
Anki will show you the cards one or more times to help you memorize them. By
default there are two steps: 1 minute and 10 minutes. You can change the
number of steps and the delays between them by clicking the *Options* button
while looking at the study overview.
There are three rating buttons when learning:
*Again* moves the card back to the first step.
*Good* moves the card to the next step. If the card was on the final step, the
card is converted into a review card (it 'graduates'). By default, the card
will be shown again the next day, and then at increasingly long delays.
*Easy* immediately converts the card into a review card, even if there were
steps remaining. By default, the card will be shown again 4 days later, and
then at increasingly long delays. The easy button will not be shown if it would
give the same interval as "good."
When cards are seen for the first time, they start at step one. This means
answering *Good* on a card for the first time will show it one more time in 10
minutes, and the initial 1 minute step will be skipped.
You can use the 1, 2 and 3 keys on your keyboard to select a particular
button, where 1 = *Again*. Pressing the spacebar will select *Good*.
If there are no other cards to show you that day, Anki will by default show
learning cards again even if their delay has not elapsed completely. If you'd
prefer to wait the full learning delay, you can change this behaviour in the
<<preferences,preferences>>.
Reviewing
---------
When a card has been previously learnt and is ready to be reviewed again,
there are four buttons to rate your answer:
*Again* marks your answer as incorrect, and asks Anki to show the card more
frequently in the future. Please see the <<lapses,lapses>> section for more
information about how lapsed reviews are handled.
*Hard* shows the card at a slightly longer delay than last time, and tells
Anki to be more conservative when scheduling the card in the future.
*Good* tells Anki that the last delay was about right, and the card easiness
doesn't need to be adjusted down or up. At the default starting easiness, the
card will be shown again approximately 2 1/2 times longer than the previous
time - so if you had waited 10 days to see the card previously, the next delay
would be about 25 days.
*Easy* tells Anki you're finding the delays too short. The card will be
scheduled further into the future than 'Good', and Anki will be more
aggressive in its scheduling of the card in the future. Because 'Easy' rapidly
increases the delay, it's best left for only the easiest of cards. Usually you
should find yourself answering 'Good' instead.
Like learning cards, you can use 1-4 on the keyboard to select an answer.
Pressing the spacebar will select 'Good'.
Due Counts and Time Estimates
-------------------------------
When only the question is shown, Anki shows three numbers like 12 + 34 + 56.
They represent the new cards, cards in learning, and cards to review. If you'd
prefer not to see the numbers, you can turn them off in Anki's preferences.
NOTE: By default, when you forget a card Anki will show it after 1 minute and
then 10 minutes. Because two reviews are required, failing a card will
increase the middle (orange) count by two.
When the answer is shown, Anki shows an estimate of the next time a card will
be shown above each button. If you'd prefer not to see the estimates, you can
also disable them in Anki's preferences.
NOTE: Anki additionally adds a small amount of random variation to the next due
times, in order to prevent cards that were introduced together and always rated
the same from always staying next to each other. This variation is not shown on
the time estimates but will be applied after selecting the button.
[[editmore]]
Editing and More
------------------
You can click the *Edit* button in the bottom left to edit the current note.
When you finish editing, you'll be returned to study. The editing screen is
very similar to the <<addingnotes,add notes>> screen.
On the bottom right is a button labeled *More*. This button provides some
other operations you can do on the current card or note:
Mark Note ::
Adds a "marked" tag to the current note, so it can be easily found in the
browser. This is useful when you want to take some action on the note at a
later date, such as looking up a word when you get home. Marked cards also
show a small star in the upper-right-hand corner during reviews.
Bury Card / Note ::
Hides a card or all of the note's cards from review until you use "unbury" on
the deck overview screen or the next day rolls around. Useful if you want to
come back to the card another time. Burying can also <<siblings,happen
automatically>> for cards of the same note.
Suspend Card / Note ::
Hides a card or all of the note's cards from review until they are manually
unsuspended (by clicking the suspend button in the browser). Useful if
you want to avoid reviewing the note for some time, but don't want to delete
it. If cards were in learning when they are suspended, they are moved back
to the new card queue or review queue.
Delete Note ::
Deletes the note and all of its cards.
Card Options ::
Edit the options for the current card.
Replay Audio ::
If the card has audio on the front or back, it will be played again.
Record Own Voice ::
Record your own voice for the purposes of checking your pronunciation. (This
recording is temporary and will go away when you move to the next card. If
you want to add audio to a card permanently, you can do that in the edit
window.)
Replay Own Voice ::
Replay the previous recording of your voice.
[[displayorder]]
Display Order
--------------
Studying will show cards from the selected deck, and any decks it contains.
Thus if you select "French", "French::Vocab" and "French::My Textbook::Lesson
1" and so on will all be shown as well.
For new cards and reviews, Anki fetches cards from the decks in alphabetical
order. So in the above example, you would get cards first from "French", then
"My Textbook", and finally "Vocab". You can use this fact to control the order
cards appear in, placing high priority cards in decks that appear higher in
the list. When computers sort text alphabetically, the "-" character comes
before alphabetical characters, and "\~" comes after them. So if you called the
deck "-Vocab", your vocab cards would appear first, and you could call the
other deck "~My Textbook" to force it to appear after everything else.
New cards and reviews are fetched separately, and Anki won't wait until both
queues are empty before moving on to the next deck, so it's possible you'll be
exposed to new cards from a different deck to the reviews or vice versa. If
you don't want that, click directly on the deck you want to study instead of
one of the parent decks.
Cards in learning are fetched from all decks at once, because they are
somewhat time critical, and shown in the order they are due.
For more fine-grained ordering of new cards, you can change the order in the
<<browser,browser>>.
To control the order reviews from a given deck appear in, or change new cards
from ordered to random order, please see the <<deckoptions,deck options>>.
[[siblings]]
== Siblings and Burying ==
Recall from <<basics,the basics>> that Anki can create more than one card for
each thing you input, such as a front->back card and a back->front card, or two
different cloze deletions from the same text. These related cards are called
'siblings'. Anki tries to ensure siblings are not shown close together, as
that's usually not helpful.
When you answer a card that has siblings, Anki prevents the card's siblings
from being shown in the same session by automatically burying them. Buried
cards are hidden from review until the clock rolls over to a new day or you
manually unbury them using the "Unbury" button that's visible at the bottom of
the screen after clicking on a deck in the deck list.
Anki will only bury siblings that are new cards, or review cards. It will not
hide cards in learning, as time is of the essence for those cards, and
technical reasons also prevent this. On the other hand, when you study a
learning card, any new/review siblings will be buried.
If you want to see more than one card of a note when learning new cards, you
can stop Anki from burying cards in the <<newopts,deck options>>.
[[studyshortcuts]]
== Keyboard Shortcuts ==
Many of the common operations in Anki have keyboard shortcuts. Most of them
are discoverable in the interface: menu items list their shortcuts next to
them, and hovering the mouse cursor over a button will generally show its
shortcut in a tooltip.
When studying, either space or enter will show the answer. When the answer is
shown, you can use space or enter to select the Good button. You can use the
1-4 keys to select a specific ease button. Many people find it convenient to
answer most cards with space and keep one finger on 1 for when they forget.
[[studydeck]]
The "Study Deck" item in the Tools menu allows you to quickly
switch to a deck with the keyboard. You can trigger it with the '/' key. When
opened, it will display all of your decks, and show a filter area at the top.
As you type characters, Anki will display only decks matching the characters
you type. You can add a space to separate multiple search terms, and Anki will
show only decks that match all the terms. So "ja 1" or "on1 ja" would both
match a deck called "Japanese::Lesson1".
== Falling Behind ==
If you fall behind in your reviews, Anki will prioritize cards that have been
waiting the longest. It does this by taking the 200 cards that have been waiting
the longest, and showing them to you in a random order up until your daily
review limit. This ordering ensures that no cards will be left waiting
indefinitely, but it means that if you introduce new cards, their reviews
won't appear until you've gotten through your backlog.
If you wish to change the order of the overdue reviews, you can do so by creating
a filtered deck, as described in a later section of the manual.
When you answer cards that have been waiting for a while, Anki factors in that
delay when determining the next time a card should be shown. Please see the
frequently asked questions section at the bottom of the manual for more
information.
[[editor]]
Editing
=======
Features
---------
The editor is shown when <<addingnotes,adding notes>>, <<editmore,editing a
note>> during reviews, or <<browser,browsing>>.
On the top left are two buttons, which open the <<fields,fields>> and
<<templates,cards>> windows.
On the right are buttons that control formatting. Bold, italic and underline
work like they do in a wordprocessing program. The next two buttons allow you to
subscript or superscript text, which is useful for chemical compounds like
H~2~O and or simple math equations like x^2^.
The icon with the red cross clears any formatting in the currently selected text.
This includes colours, bold, etc.
The next button allows you to change text colour.
The paperclip allows you to attach audio, images and videos to your notes. For
more information, please see the <<media,media>> section.
The red circle button allows you to record your voice and attach it to the note.
The last button allows you to add advanced mathematical markup called
<<latex,LaTeX>> to your notes, or edit the underlying formatting.
Most of the buttons have shortcut keys. You can hover the mouse cursor over a
button to see its shortcut. For the LaTeX/HTML menu, use Ctrl+t then t, e
or m to select the three LaTeX types, and Ctrl+shift+x to edit the HTML.
[[cloze]]
Cloze Deletion
---------------
Cloze deletion is the process of hiding one or more words in a sentence. For
example, if you have the sentence:
-----
Canberra was founded in 1913.
-----
...and you create a cloze deletion on "1913", then the sentence would become:
-----
Canberra was founded in [...].
-----
For more information on why you might want to use cloze deletion, see rule
number 5 http://www.supermemo.com/articles/20rules.htm[here].
Anki provides a special cloze deletion type of note, to make creating clozes
easy. To create a cloze deletion note, select the Cloze note type, and type
some text into the "Text" field. Then drag the mouse over the text you want to
hide to select it, and click the [...] button. Anki will replace the text
with:
-----
Canberra was founded in {{c1::1913}}.
-----
The "c1" part means that you've created one cloze deletion on the sentence.
You can create more than one deletion if you'd like. For example, if you
select Canberra and click [...] again, the text will now look like:
-----
{{c2::Canberra}} was founded in {{c1::1913}}.
-----
When you add the above note, Anki will create two cards. The first card will
show:
-----
Canberra was founded in [...].
-----
...on the question, with the full sentence on the answer. The other card will