Card design
Anki Card Fields for Language Learning: A Clean Setup
Build reusable Anki note fields for sentence, focus, meaning, translation, audio, image, source, and notes without locking content into one layout.
Anki fields are containers for information; card templates decide which containers appear during review. Separating those jobs is the difference between a note type you can reuse for years and a Front field full of content that is painful to reorganize.

Why separate fields matter
Suppose one Front field contains a sentence, translation, image, and audio. It works until you want an audio-first listening card. You must then split existing content manually or accept that the transcript reveals the answer.
Separate fields let you:
- move audio from the back to the front without editing every note;
- create a listening card only for notes that have audio;
- show a translation only after recall;
- search and sort by a clean sentence or source;
- restyle every card in the note type at once; and
- identify which media reference is missing.
The official Anki editing guide recommends separate fields once a note contains more than one piece of information. Fields do not force you to generate more cards; they preserve options.
A practical language-learning field set
Use the smallest set that matches your workflow. This baseline handles sentence mining, listening, and video-derived context:
| Field | Store | Avoid |
|---|---|---|
Sentence | Natural target-language sentence | Translation or styling markup |
Focus | One word, phrase, form, or contrast | A second lesson |
Meaning | Concise contextual meaning | A dictionary dump |
Translation | A natural full-sentence translation when useful | Treating one translation as the only possible wording |
Audio | The actual Anki sound reference | A streaming URL that may disappear |
Image | One contextual image when it helps | A revealing label on the front |
Source | Title plus timestamp or permitted local reference | Tracking parameters and unstable session links |
Notes | Brief grammar, register, or correction note | Long research copied into every review |
You may add Reading for scripts that need pronunciation support, Literal when a literal gloss clarifies structure, or Tags for organization. Do not create fields merely because a template online contains them.
The guide to whether Anki cards should have translations explains when that field should hold a short contextual gloss, when an image or target-language definition is clearer, and how to hide the translation later without deleting it.
Fields store note content; they are not the collection hierarchy. Use the Anki tags vs decks guide to decide which cards should share a study home and which labels should describe language, source, level, or grammar.
Choose a useful sort field—often Sentence or Expression—so the Anki browser remains readable. For Arabic, Hebrew, and other right-to-left languages, set the editing direction on the field and also apply the correct direction in the card template.
Field names are contracts
Template replacements are case-sensitive. {{Sentence}} and {{sentence}} do not refer to the same field. The Anki field-replacement guide documents normal replacements, conditional fields, hints, text-to-speech, and special values such as {{Tags}} and {{Deck}}.
Prefer semantic names over layout names:
- use
Sentence, notTopText; - use
Meaning, notBack; - use
Source, notSmallGrayLine.
Your layout will change. The meaning of the stored information should not.
Map fields to focused card sides
One note can support different retrieval tasks.
Reading-recognition card
Front
<div class="sentence">{{Sentence}}</div>
Back
{{FrontSide}}
<hr>
<div class="meaning">{{Meaning}}</div>
{{#Translation}}<div class="translation">{{Translation}}</div>{{/Translation}}
{{#Audio}}<div class="audio">{{Audio}}</div>{{/Audio}}
{{#Source}}<div class="source">{{Source}}</div>{{/Source}}
Audio-first listening card
Front: {{Audio}}
Back: transcript, contextual meaning, image, and source. Generate this card only when Audio is present. The listening-card setup gives a full conditional template.
Production card
Use a dedicated Prompt field or a precise Meaning field on the front. Do not reverse an open sentence translation automatically; several target-language answers may be correct.
Keep styling in the shared CSS panel, not in each field. That makes changes to fonts, spacing, night mode, and mobile media apply consistently. Start with the responsive Anki CSS baseline.
Change fields safely
- Back up or sync first. A structural change can affect many notes.
- Clone the note type. Test a new version without changing every existing card.
- Create the new fields. Use stable semantic names.
- Map a small sample. Move content on ten representative notes before a bulk edit.
- Update front and back templates. Confirm every
{{Field}}reference exists. - Preview real cards. Test empty optional fields, long text, audio, images, and night mode.
- Count generated cards. A new template can create a second scheduled card for every qualifying note.
- Run Tools → Check Media. The Anki media guide explains missing and unused media checks.
Avoid deleting an old field until the content has been migrated and the new cards have been reviewed. A blank preview often means a template still references the old name or a conditional is wrapped around the wrong field.
The free language-learning template includes editable fields and plain-text templates you can inspect before import.
Anki fields FAQ
Which fields should a language-learning note have?
A practical baseline is Sentence, Focus, Meaning, Translation, Audio, Image, Source, and Notes. Remove fields you will not use and add script-specific fields only when they solve a real retrieval or display need.
Should audio and images be separate fields?
Yes. Separate media fields make listening cards, front/back changes, conditional display, and missing-media checks much easier.
Can I rename fields later?
Yes, but templates must reference the new exact names. Clone the note type and test a representative sample before changing a large collection.
Related guides
Anki Card Templates for Language Learning: 4 Copyable Layouts
Compare four copyable Anki card templates for language learning, choose by retrieval goal, install safely, and test HTML, CSS, media, and mobile layouts.
Read article →Anki Card CSS for Language Learning: Mobile-Friendly Style
Copy a responsive Anki card CSS baseline for readable language cards, night mode, mobile media, right-to-left text, furigana, and typed answers.
Read article →Anki Basic and Reversed Cards for Language Learning
Choose forward, reversed, or optional reversed Anki cards by retrieval goal, avoid vague translation prompts, and control duplicate review load.
Read article →