Helper files for working with Anki
Import this Anki package to receive the "Cloze Multi (Incremental)" note type
Creates a single card to memorize A, B, C, D
Memorize {{c1::A}}, {{c1::B}}, {{c1::C}}, and {{c1::D}}.
Creates one card to memorize X, Y, Z and one card to memorize A, B, C
Remember {{c1::X}}, {{c1::Y}}, and {{c1::Z}}. But also {{c2::A}}, {{c2::B}}, and {{c2::C}}.
To configure this note type, open the front template and customize the following portion of the script1
// **************************************************
// Configuration: User Settings
// **************************************************
// What key is used to advance? Cannot already be used by Anki (e.g. return, space bar, etc)
let keyToPress = 'n';
// Is click based navigation enabled? Either "true" or "false".
let clickBasedNavigationIsEnabled = true;
// What text should be shown for a hidden cloze? Anything you want :)
let textForHiddenCloze = "[...]";
incremental-multi-cloze.mov
Footnotes
-
Multi Cloze (Incremental) is based on itraveller's script. Multi Cloze (Incremental) adds a few improvements including keyboard-based navigation, click-based navigation, and fixed-length hidden clozes. The script provided by itraveller makes hidden clozes the same length as their answers. This can result in memorizing based on cloze length rather than true memorization. ↩