Fields being used on the back template as part of the answer are generally a basic note type thing. Here’s the Anki manual section for templates: Card Templates - Anki Manual
While you’re first learning templates for cloze note types, your back template should be the same as the front template except for any extra info. For example, here’s a simplified back template of my typed cloze note type:
{{cloze:Text}}
{{type:cloze:Text}}
<br>{{Back Extra}}
The front template has the first two lines but not the last.
On cloze notes, the same field is effectively both the front and the back for any cards generated. The other fields would only be used for extra things like hints on the front, notes on the back (like {{Back Extra}}
shown above), references on the back, and so on.
In your case, the back template would probably be
{{cloze:Katalanisch}}
{{type:cloze:Katalanisch}}
<br>{{Deutsch}}
where {{Deutsch}}
is simply a field you put notes into. If you rename that field to notes
, it’d then be {{notes}}
instead of {{Deutsch}}
.
Here are a couple cloze deletion sections in the Anki manual:
An example from the first link is provided as follows:
Canberra was founded in {{c1::1913}}.
{{c1::1913}}
is hidden until the back side is shown. It’s effectively the back side of card 1 because of the wrapper {{c1::}}
. If it were {{c2::}}
instead, it’d be for card 2. You can have many {{cN::}}
wrappers to generate many cards. You can even use the same wrapper multiple times for the same card.
Tip:
While editing cloze cards, it’s possible to create “empty” cards. When you’ve finished editing, make sure to use Tools -> Empty Cards...
from the main window. Relevant section of the Anki manual: Card Generation - Anki Manual