Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 1.67 KB

README.md

File metadata and controls

40 lines (30 loc) · 1.67 KB

Anki

Helper files for working with Anki

Multi Cloze (Incremental)

Usage

Import this Anki package to receive the "Cloze Multi (Incremental)" note type

Example

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}}. 

Configuration

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 = "[...]";

Video Demo

incremental-multi-cloze.mov

Footnotes

  1. 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.