I just re-read this page in the documentation: Card Generation - Anki Manual. And, I wanted to make sure my understanding on some things was correct before I rely on it.
I have been messing around with this idea of making some card’s empty on purpose. The idea is that for each definition I learn of a word, I will add the definition to the note for that specific word and then the previous cards generated will become empty. I know this kind of goes against the “test one thing” principle, but I feel like it doesn’t go too against it.
For example, if I have a note like this:
word: pronounce
audio of word : (audio of someone saying the word pronounce)
number of definitions: 1
definition 1: make the sound of (a word or part of a word) in the correct or a particular way.
definition 2:
definition 3:
with these card templates :
Only definition 1
{{^definition 3}}
{{^definition 2}}
{{#definition 1}}
<u>Give all definitions to the following word.</u>
</br></br>
<span style="color:blue; font-size: 25px;">({{number of definitions}})</span>
</br></br>
{{word}}
{{audio of word}}
</br>
{{/definition 1}}
{{/definition 2}}
{{/definition 3}}
definition 1 and 2
{{^definition 3}}
{{#definition 2}}
{{#definition 1}}
<u>Give all definitions to the following word.</u>
</br></br>
<span style="color:blue; font-size: 25px;">({{number of definitions}})</span>
</br></br>
{{word}}
{{audio of word}}
</br>
{{/definition 1}}
{{/definition 2}}
{{/definition 3}}
definition 1, 2, and 3
{{#definition 3}}
{{#definition 2}}
{{#definition 1}}
<u>Give all definitions to the following word.</u>
</br></br>
<span style="color:blue; font-size: 25px;">({{number of definitions}})</span>
</br></br>
{{word}}
{{audio of word}}
</br>
{{/definition 1}}
{{/definition 2}}
{{/definition 3}}
I would want only card 1 to be created and cards 2, and 3 to not be which I am confident will happen. The thing I don’t really understand is if I edit the note to this:
word: pronounce
audio of word : (audio of someone saying the word pronounce)
number of definitions: 2
definition 1: make the sound of (a word or part of a word) in the correct or a particular way.
definition 2: declare or announce, typically formally or solemnly.
definition 3:
What will happen to card 1? Will it still exist and come up for review? What will happen to its review history? Does Anki “regenerate” cards each time the note is edited? (I remember I ran into a situation where I think I created a new card type or something and Anki didn’t create new cards for it. I don’t really remember what I did, but I did realize it had to do with card creation so I ended up deleting a card type and recreating it or something.) If I do Tools -> Empty Card
, will this function delete the note or will it delete the empty card?
Basically my idea with this is that I will always get a fresh new card automatically each time I add a definition without having to remember to reset the card. I would generally be memorizing one definition of the word at a time, but I am ok with having to group many new/unfamiliar definitions together as “one” question. I can add more fields to accommodate words with more definitions. Does anyone see any other issues with this approach that I might not be?