@syllst/ja 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +80 -0
- package/dist/index.js +23 -0
- package/dist/shared.js +26 -0
- package/dist/syllabi/hiragana/index.d.ts +7 -0
- package/dist/syllabi/hiragana/index.js +47 -0
- package/dist/syllabi/hiragana/lessons/lesson-01.mdx.js +171 -0
- package/dist/syllabi/hiragana/lessons/lesson-02.mdx.js +160 -0
- package/dist/syllabi/hiragana/lessons/lesson-03.mdx.js +151 -0
- package/dist/syllabi/hiragana/lessons/lesson-04.mdx.js +158 -0
- package/dist/syllabi/hiragana/lessons/lesson-05.mdx.js +169 -0
- package/dist/syllabi/hiragana/lessons/lesson-06.mdx.js +174 -0
- package/dist/syllabi/hiragana/lessons/lesson-07.mdx.js +173 -0
- package/dist/syllabi/hiragana/lessons/lesson-08.mdx.js +159 -0
- package/dist/syllabi/hiragana/lessons/lesson-09.mdx.js +176 -0
- package/dist/syllabi/hiragana/lessons/lesson-10.mdx.js +199 -0
- package/dist/syllabi/katakana/index.js +37 -0
- package/dist/syllabi/katakana/lessons/lesson-01.mdx.js +196 -0
- package/dist/syllabi/katakana/lessons/lesson-02.mdx.js +210 -0
- package/dist/syllabi/katakana/lessons/lesson-03.mdx.js +214 -0
- package/dist/syllabi/katakana/lessons/lesson-04.mdx.js +216 -0
- package/dist/syllabi/katakana/lessons/lesson-05.mdx.js +259 -0
- package/package.json +64 -0
- package/src/syllabi/hiragana/lessons/lesson-01.mdx +167 -0
- package/src/syllabi/hiragana/lessons/lesson-02.mdx +156 -0
- package/src/syllabi/hiragana/lessons/lesson-03.mdx +147 -0
- package/src/syllabi/hiragana/lessons/lesson-04.mdx +154 -0
- package/src/syllabi/hiragana/lessons/lesson-05.mdx +165 -0
- package/src/syllabi/hiragana/lessons/lesson-06.mdx +170 -0
- package/src/syllabi/hiragana/lessons/lesson-07.mdx +169 -0
- package/src/syllabi/hiragana/lessons/lesson-08.mdx +155 -0
- package/src/syllabi/hiragana/lessons/lesson-09.mdx +172 -0
- package/src/syllabi/hiragana/lessons/lesson-10.mdx +195 -0
- package/src/syllabi/katakana/lessons/lesson-01.mdx +192 -0
- package/src/syllabi/katakana/lessons/lesson-02.mdx +206 -0
- package/src/syllabi/katakana/lessons/lesson-03.mdx +210 -0
- package/src/syllabi/katakana/lessons/lesson-04.mdx +212 -0
- package/src/syllabi/katakana/lessons/lesson-05.mdx +255 -0
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
const a = `---
|
|
2
|
+
type: lesson
|
|
3
|
+
id: japanese-katakana-lesson-01
|
|
4
|
+
title: "Lesson 1 — Katakana Vowels (アイウエオ)"
|
|
5
|
+
description: "Learn the 5 Japanese vowels in Katakana script"
|
|
6
|
+
order: 1
|
|
7
|
+
parentId: japanese-katakana
|
|
8
|
+
difficulty: beginner
|
|
9
|
+
cefrLevel: A1
|
|
10
|
+
categories:
|
|
11
|
+
- vowels
|
|
12
|
+
- basic-characters
|
|
13
|
+
metadata:
|
|
14
|
+
estimatedTime: 20
|
|
15
|
+
prerequisites: [japanese-hiragana-lesson-01]
|
|
16
|
+
learningObjectives:
|
|
17
|
+
- id: obj-recognize-katakana-vowels
|
|
18
|
+
description: "Recognize the five katakana vowels"
|
|
19
|
+
skill: character-recognition
|
|
20
|
+
references: [katakana-a, katakana-i, katakana-u, katakana-e, katakana-o]
|
|
21
|
+
- id: obj-katakana-vs-hiragana
|
|
22
|
+
description: "Understand the difference in use between katakana and hiragana"
|
|
23
|
+
skill: character-recognition
|
|
24
|
+
references: [katakana-a, katakana-i, katakana-u, katakana-e, katakana-o]
|
|
25
|
+
- id: obj-sounds-katakana-vowels
|
|
26
|
+
description: "Map each katakana vowel to its sound"
|
|
27
|
+
skill: character-sound-mapping
|
|
28
|
+
references: [katakana-a, katakana-i, katakana-u, katakana-e, katakana-o]
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
# Lesson 1 — Katakana Vowels (アイウエオ)
|
|
32
|
+
|
|
33
|
+
## Introduction
|
|
34
|
+
|
|
35
|
+
Welcome to Katakana — the second of Japan's two phonetic syllabaries. Like hiragana, katakana represents syllable sounds, and the two scripts share **identical sounds**. What differs is their shape and their use.
|
|
36
|
+
|
|
37
|
+
The five katakana vowels represent the same sounds as あいうえお in hiragana:
|
|
38
|
+
|
|
39
|
+
- **ア** = あ = /a/
|
|
40
|
+
- **イ** = い = /i/
|
|
41
|
+
- **ウ** = う = /ɯ/
|
|
42
|
+
- **エ** = え = /e/
|
|
43
|
+
- **オ** = お = /o/
|
|
44
|
+
|
|
45
|
+
## When to Use Katakana
|
|
46
|
+
|
|
47
|
+
Katakana is used for:
|
|
48
|
+
|
|
49
|
+
1. **Foreign loanwords** (外来語, gairaigo): テレビ (terebi, "TV"), コーヒー (kōhī, "coffee")
|
|
50
|
+
2. **Foreign names**: アメリカ (Amerika, "America"), フランス (Furansu, "France")
|
|
51
|
+
3. **Scientific names**: biological taxonomy, technical terms
|
|
52
|
+
4. **Onomatopoeia and sound effects**: in manga and informal writing
|
|
53
|
+
5. **Emphasis**: similar to italics in English
|
|
54
|
+
|
|
55
|
+
Knowing katakana unlocks an enormous amount of Japanese vocabulary because so many modern words are borrowed from English and other languages.
|
|
56
|
+
|
|
57
|
+
## Characters
|
|
58
|
+
|
|
59
|
+
:::character-set{id="katakana-vowels" title="Katakana Vowels (ア行)"}
|
|
60
|
+
|
|
61
|
+
::character{id="katakana-a" canonicalRef="katakana-a" char="ア" name="ア (a)" charType="katakana" data:romaji="a" data:row="a" data:hiragana="あ"}
|
|
62
|
+
|
|
63
|
+
::character{id="katakana-i" canonicalRef="katakana-i" char="イ" name="イ (i)" charType="katakana" data:romaji="i" data:row="a" data:hiragana="い"}
|
|
64
|
+
|
|
65
|
+
::character{id="katakana-u" canonicalRef="katakana-u" char="ウ" name="ウ (u)" charType="katakana" data:romaji="u" data:row="a" data:hiragana="う"}
|
|
66
|
+
|
|
67
|
+
::character{id="katakana-e" canonicalRef="katakana-e" char="エ" name="エ (e)" charType="katakana" data:romaji="e" data:row="a" data:hiragana="え"}
|
|
68
|
+
|
|
69
|
+
::character{id="katakana-o" canonicalRef="katakana-o" char="オ" name="オ (o)" charType="katakana" data:romaji="o" data:row="a" data:hiragana="お"}
|
|
70
|
+
|
|
71
|
+
:::
|
|
72
|
+
|
|
73
|
+
## Katakana vs Hiragana Shapes
|
|
74
|
+
|
|
75
|
+
Katakana characters are generally **more angular and simpler** than hiragana. Hiragana evolved from cursive forms of Chinese characters, while katakana evolved from parts of Chinese characters. This gives katakana a sharper, more mechanical appearance.
|
|
76
|
+
|
|
77
|
+
| Hiragana | Katakana | Sound |
|
|
78
|
+
|----------|----------|-------|
|
|
79
|
+
| あ | ア | a |
|
|
80
|
+
| い | イ | i |
|
|
81
|
+
| う | ウ | u |
|
|
82
|
+
| え | エ | e |
|
|
83
|
+
| お | オ | o |
|
|
84
|
+
|
|
85
|
+
## Pronunciation Guide
|
|
86
|
+
|
|
87
|
+
The vowel sounds are **identical** to hiragana:
|
|
88
|
+
|
|
89
|
+
| Character | Romaji | Sound | English Approximation |
|
|
90
|
+
|-----------|--------|-------|----------------------|
|
|
91
|
+
| ア | a | /a/ | "a" in "father" |
|
|
92
|
+
| イ | i | /i/ | "ee" in "see" |
|
|
93
|
+
| ウ | u | /ɯ/ | "oo" in "zoo" (unrounded) |
|
|
94
|
+
| エ | e | /e/ | "e" in "bed" |
|
|
95
|
+
| オ | o | /o/ | "o" in "go" |
|
|
96
|
+
|
|
97
|
+
## Writing Tips
|
|
98
|
+
|
|
99
|
+
Katakana strokes are generally straighter and more angular than hiragana:
|
|
100
|
+
|
|
101
|
+
- **ア**: Two strokes — a diagonal stroke and an angled crossbar. More angular than あ.
|
|
102
|
+
- **イ**: Two strokes — a short diagonal and a longer vertical. Simpler than い.
|
|
103
|
+
- **ウ**: Two strokes — a top dash and a curved body below.
|
|
104
|
+
- **エ**: Three horizontal strokes connected by a vertical — resembles the letter "I" with serifs.
|
|
105
|
+
- **オ**: Three strokes — two horizontals and a vertical drop with a hook. Angular compared to お.
|
|
106
|
+
|
|
107
|
+
## Loanword Examples Using Vowels
|
|
108
|
+
|
|
109
|
+
| Katakana | Romaji | Source Word | Meaning |
|
|
110
|
+
|----------|--------|-------------|---------|
|
|
111
|
+
| アイスクリーム | aisu kurīmu | ice cream | ice cream |
|
|
112
|
+
| エアコン | eakon | air conditioner | air conditioner |
|
|
113
|
+
| オレンジ | orenji | orange | orange (fruit/color) |
|
|
114
|
+
|
|
115
|
+
## Key Points
|
|
116
|
+
|
|
117
|
+
1. **Same sounds as hiragana**: Every katakana vowel has an identical hiragana counterpart.
|
|
118
|
+
2. **Used for foreign words**: Katakana signals that a word is borrowed or foreign.
|
|
119
|
+
3. **More angular shapes**: Katakana is generally sharper and more geometric than hiragana.
|
|
120
|
+
4. **Same order**: The traditional a-i-u-e-o order (ア行) is identical to hiragana.
|
|
121
|
+
|
|
122
|
+
## Practice Recognition
|
|
123
|
+
|
|
124
|
+
:::exercise{id="ja-katakana-01-recognition" type="matching" title="Match Katakana Vowels to Sounds" skill="character-recognition" tests="katakana-a,katakana-i,katakana-u,katakana-e,katakana-o" objectiveId="obj-recognize-katakana-vowels"}
|
|
125
|
+
|
|
126
|
+
**Question:** Match each katakana vowel to its romaji sound
|
|
127
|
+
|
|
128
|
+
- ア
|
|
129
|
+
- イ
|
|
130
|
+
- ウ
|
|
131
|
+
- エ
|
|
132
|
+
- オ
|
|
133
|
+
|
|
134
|
+
**Answer:**
|
|
135
|
+
|
|
136
|
+
- ア = a
|
|
137
|
+
- イ = i
|
|
138
|
+
- ウ = u
|
|
139
|
+
- エ = e
|
|
140
|
+
- オ = o
|
|
141
|
+
|
|
142
|
+
**Explanation:** The five katakana vowels represent the same sounds as the hiragana vowels あいうえお. The sounds are identical — only the shapes differ.
|
|
143
|
+
|
|
144
|
+
:::
|
|
145
|
+
|
|
146
|
+
:::exercise{id="ja-katakana-01-vs-hiragana" type="matching" title="Katakana vs Hiragana Pairs" skill="character-recognition" tests="katakana-a,katakana-i,katakana-u,katakana-e,katakana-o" objectiveId="obj-katakana-vs-hiragana"}
|
|
147
|
+
|
|
148
|
+
**Question:** Match each katakana character to its hiragana equivalent
|
|
149
|
+
|
|
150
|
+
- ア
|
|
151
|
+
- イ
|
|
152
|
+
- ウ
|
|
153
|
+
- エ
|
|
154
|
+
- オ
|
|
155
|
+
|
|
156
|
+
**Answer:**
|
|
157
|
+
|
|
158
|
+
- ア = あ
|
|
159
|
+
- イ = い
|
|
160
|
+
- ウ = う
|
|
161
|
+
- エ = え
|
|
162
|
+
- オ = お
|
|
163
|
+
|
|
164
|
+
**Explanation:** Katakana and hiragana are parallel syllabaries — each katakana has a corresponding hiragana with the same sound. Recognizing these pairs is essential for reading fluency.
|
|
165
|
+
|
|
166
|
+
:::
|
|
167
|
+
|
|
168
|
+
:::exercise{id="ja-katakana-01-sounds" type="fill-in-blank" title="Sound Mapping" skill="character-sound-mapping" tests="katakana-a,katakana-i,katakana-u,katakana-e,katakana-o" objectiveId="obj-sounds-katakana-vowels"}
|
|
169
|
+
|
|
170
|
+
**Question:** What sound does each katakana vowel make?
|
|
171
|
+
|
|
172
|
+
- ア sounds like ___
|
|
173
|
+
- イ sounds like ___
|
|
174
|
+
- ウ sounds like ___
|
|
175
|
+
- エ sounds like ___
|
|
176
|
+
- オ sounds like ___
|
|
177
|
+
|
|
178
|
+
**Answer:**
|
|
179
|
+
|
|
180
|
+
- ア = /a/ as in "father"
|
|
181
|
+
- イ = /i/ as in "see"
|
|
182
|
+
- ウ = /ɯ/ as in "zoo" (unrounded)
|
|
183
|
+
- エ = /e/ as in "bed"
|
|
184
|
+
- オ = /o/ as in "go"
|
|
185
|
+
|
|
186
|
+
**Explanation:** The sounds are identical to hiragana vowels. If you already know hiragana, you already know the sounds — now you just need to learn the new shapes.
|
|
187
|
+
|
|
188
|
+
:::
|
|
189
|
+
|
|
190
|
+
## What's Next
|
|
191
|
+
|
|
192
|
+
In Lesson 2, you will learn the カ-row (ka, ki, ku, ke, ko) and the サ-row (sa, shi, su, se, so). Because katakana represents the same sounds as hiragana, we can move more quickly through the chart.
|
|
193
|
+
`;
|
|
194
|
+
export {
|
|
195
|
+
a as default
|
|
196
|
+
};
|
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
const a = `---
|
|
2
|
+
type: lesson
|
|
3
|
+
id: japanese-katakana-lesson-02
|
|
4
|
+
title: "Lesson 2 — Ka-row and Sa-row (カキクケコ・サシスセソ)"
|
|
5
|
+
description: "Learn the カ-row and サ-row katakana characters"
|
|
6
|
+
order: 2
|
|
7
|
+
parentId: japanese-katakana
|
|
8
|
+
difficulty: beginner
|
|
9
|
+
cefrLevel: A1
|
|
10
|
+
categories:
|
|
11
|
+
- consonants
|
|
12
|
+
- basic-characters
|
|
13
|
+
metadata:
|
|
14
|
+
estimatedTime: 25
|
|
15
|
+
prerequisites: [japanese-katakana-lesson-01]
|
|
16
|
+
learningObjectives:
|
|
17
|
+
- id: obj-recognize-ka-sa-rows
|
|
18
|
+
description: "Recognize the ka-row and sa-row katakana characters"
|
|
19
|
+
skill: character-recognition
|
|
20
|
+
references: [katakana-ka, katakana-ki, katakana-ku, katakana-ke, katakana-ko, katakana-sa, katakana-shi, katakana-su, katakana-se, katakana-so]
|
|
21
|
+
- id: obj-sounds-ka-sa-rows
|
|
22
|
+
description: "Map ka-row and sa-row katakana to their sounds"
|
|
23
|
+
skill: character-sound-mapping
|
|
24
|
+
references: [katakana-ka, katakana-ki, katakana-ku, katakana-ke, katakana-ko, katakana-sa, katakana-shi, katakana-su, katakana-se, katakana-so]
|
|
25
|
+
- id: obj-loanwords-ka-sa
|
|
26
|
+
description: "Read common loanwords using ka-row and sa-row katakana"
|
|
27
|
+
skill: word-recognition
|
|
28
|
+
references: [katakana-ka, katakana-sa, katakana-su, katakana-ko]
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
# Lesson 2 — Ka-row and Sa-row (カキクケコ・サシスセソ)
|
|
32
|
+
|
|
33
|
+
## Introduction
|
|
34
|
+
|
|
35
|
+
In this lesson, you will learn two rows of katakana at once: the **カ-row** (ka, ki, ku, ke, ko) and the **サ-row** (sa, shi, su, se, so). Since you already know these sounds from hiragana, the focus here is on learning the new shapes.
|
|
36
|
+
|
|
37
|
+
## Ka-row Characters
|
|
38
|
+
|
|
39
|
+
:::character-set{id="katakana-ka-row" title="Katakana Ka-row (カ行)"}
|
|
40
|
+
|
|
41
|
+
::character{id="katakana-ka" canonicalRef="katakana-ka" char="カ" name="カ (ka)" charType="katakana" data:romaji="ka" data:row="ka" data:hiragana="か"}
|
|
42
|
+
|
|
43
|
+
::character{id="katakana-ki" canonicalRef="katakana-ki" char="キ" name="キ (ki)" charType="katakana" data:romaji="ki" data:row="ka" data:hiragana="き"}
|
|
44
|
+
|
|
45
|
+
::character{id="katakana-ku" canonicalRef="katakana-ku" char="ク" name="ク (ku)" charType="katakana" data:romaji="ku" data:row="ka" data:hiragana="く"}
|
|
46
|
+
|
|
47
|
+
::character{id="katakana-ke" canonicalRef="katakana-ke" char="ケ" name="ケ (ke)" charType="katakana" data:romaji="ke" data:row="ka" data:hiragana="け"}
|
|
48
|
+
|
|
49
|
+
::character{id="katakana-ko" canonicalRef="katakana-ko" char="コ" name="コ (ko)" charType="katakana" data:romaji="ko" data:row="ka" data:hiragana="こ"}
|
|
50
|
+
|
|
51
|
+
:::
|
|
52
|
+
|
|
53
|
+
## Sa-row Characters
|
|
54
|
+
|
|
55
|
+
:::character-set{id="katakana-sa-row" title="Katakana Sa-row (サ行)"}
|
|
56
|
+
|
|
57
|
+
::character{id="katakana-sa" canonicalRef="katakana-sa" char="サ" name="サ (sa)" charType="katakana" data:romaji="sa" data:row="sa" data:hiragana="さ"}
|
|
58
|
+
|
|
59
|
+
::character{id="katakana-shi" canonicalRef="katakana-shi" char="シ" name="シ (shi)" charType="katakana" data:romaji="shi" data:row="sa" data:hiragana="し"}
|
|
60
|
+
|
|
61
|
+
::character{id="katakana-su" canonicalRef="katakana-su" char="ス" name="ス (su)" charType="katakana" data:romaji="su" data:row="sa" data:hiragana="す"}
|
|
62
|
+
|
|
63
|
+
::character{id="katakana-se" canonicalRef="katakana-se" char="セ" name="セ (se)" charType="katakana" data:romaji="se" data:row="sa" data:hiragana="せ"}
|
|
64
|
+
|
|
65
|
+
::character{id="katakana-so" canonicalRef="katakana-so" char="ソ" name="ソ (so)" charType="katakana" data:romaji="so" data:row="sa" data:hiragana="そ"}
|
|
66
|
+
|
|
67
|
+
:::
|
|
68
|
+
|
|
69
|
+
## Pronunciation Guide
|
|
70
|
+
|
|
71
|
+
### Ka-row
|
|
72
|
+
|
|
73
|
+
| Character | Romaji | Sound | Hiragana |
|
|
74
|
+
|-----------|--------|-------|----------|
|
|
75
|
+
| カ | ka | /ka/ | か |
|
|
76
|
+
| キ | ki | /ki/ | き |
|
|
77
|
+
| ク | ku | /kɯ/ | く |
|
|
78
|
+
| ケ | ke | /ke/ | け |
|
|
79
|
+
| コ | ko | /ko/ | こ |
|
|
80
|
+
|
|
81
|
+
### Sa-row
|
|
82
|
+
|
|
83
|
+
| Character | Romaji | Sound | Hiragana |
|
|
84
|
+
|-----------|--------|-------|----------|
|
|
85
|
+
| サ | sa | /sa/ | さ |
|
|
86
|
+
| シ | shi | /ɕi/ | し |
|
|
87
|
+
| ス | su | /sɯ/ | す |
|
|
88
|
+
| セ | se | /se/ | せ |
|
|
89
|
+
| ソ | so | /so/ | そ |
|
|
90
|
+
|
|
91
|
+
Note that シ (shi) is irregular, as in hiragana — "si" does not exist in Japanese.
|
|
92
|
+
|
|
93
|
+
## Writing Tips — Ka-row
|
|
94
|
+
|
|
95
|
+
- **カ**: Two strokes — a diagonal stroke and a crossbar with a downward hook. Compare to か, which has three strokes.
|
|
96
|
+
- **キ**: Three strokes — two short horizontals and a vertical crossing them, plus a final short stroke.
|
|
97
|
+
- **ク**: Two strokes — starts with a small angled stroke then a larger hooked curve. Much simpler than く.
|
|
98
|
+
- **ケ**: Three strokes — a vertical, a crossbar, and a diagonal stroke going down-right.
|
|
99
|
+
- **コ**: Two strokes — a top horizontal and a right angle stroke below, forming a backwards "C."
|
|
100
|
+
|
|
101
|
+
## Writing Tips — Sa-row
|
|
102
|
+
|
|
103
|
+
- **サ**: Three strokes — two short diagonals and a vertical. Compact and angular.
|
|
104
|
+
- **シ**: Three strokes — two short strokes on the left and a longer curved stroke on the right. Note: シ and ツ are commonly confused — シ has horizontal-leaning strokes.
|
|
105
|
+
- **ス**: Two strokes — a curved arc and a bottom hook. Resembles a music note.
|
|
106
|
+
- **セ**: Two strokes — a top horizontal and a bottom stroke that hooks left. Resembles "セ" visually.
|
|
107
|
+
- **ソ**: Two strokes — a short diagonal and a longer diagonal sweep. Note: ソ and ン are also commonly confused.
|
|
108
|
+
|
|
109
|
+
## Confusable Pairs
|
|
110
|
+
|
|
111
|
+
**シ vs ツ** and **ソ vs ン** are the most notorious confusable pairs in all of katakana:
|
|
112
|
+
|
|
113
|
+
| Pair | Difference |
|
|
114
|
+
|------|------------|
|
|
115
|
+
| シ (shi) vs ツ (tsu) | シ strokes lean more horizontally; ツ strokes lean more vertically |
|
|
116
|
+
| ソ (so) vs ン (n) | ソ has a longer diagonal sweep; ン curves inward and down |
|
|
117
|
+
|
|
118
|
+
A helpful mnemonic: **シ** looks like a smiley face (ニコ) — the two dots are the eyes and the curve is the mouth. **ツ** looks like a grimace — the two dots are vertical.
|
|
119
|
+
|
|
120
|
+
## Loanword Practice
|
|
121
|
+
|
|
122
|
+
One of the best ways to learn katakana is through loanwords you already know:
|
|
123
|
+
|
|
124
|
+
| Katakana | Romaji | Source | Meaning |
|
|
125
|
+
|----------|--------|--------|---------|
|
|
126
|
+
| スキー | sukī | ski | skiing |
|
|
127
|
+
| カフェ | kafe | café | coffee shop |
|
|
128
|
+
| スケート | sukēto | skate | skating |
|
|
129
|
+
| コース | kōsu | course | course |
|
|
130
|
+
| サイズ | saizu | size | size |
|
|
131
|
+
|
|
132
|
+
## Key Points
|
|
133
|
+
|
|
134
|
+
1. **Sounds are identical to hiragana**: カ = か = /ka/, etc.
|
|
135
|
+
2. **Shapes are more angular**: Katakana is sharper and simpler.
|
|
136
|
+
3. **シ vs ツ**: The most important confusable pair — pay attention to stroke direction.
|
|
137
|
+
4. **ソ vs ン**: Another common confusion — study the shapes carefully.
|
|
138
|
+
5. **Loanwords**: Knowing these rows unlocks many English-derived words in Japanese.
|
|
139
|
+
|
|
140
|
+
## Practice Recognition
|
|
141
|
+
|
|
142
|
+
:::exercise{id="ja-katakana-02-recognition-ka" type="matching" title="Match Ka-row Characters" skill="character-recognition" tests="katakana-ka,katakana-ki,katakana-ku,katakana-ke,katakana-ko" objectiveId="obj-recognize-ka-sa-rows"}
|
|
143
|
+
|
|
144
|
+
**Question:** Match each ka-row katakana to its romaji
|
|
145
|
+
|
|
146
|
+
- カ
|
|
147
|
+
- キ
|
|
148
|
+
- ク
|
|
149
|
+
- ケ
|
|
150
|
+
- コ
|
|
151
|
+
|
|
152
|
+
**Answer:**
|
|
153
|
+
|
|
154
|
+
- カ = ka
|
|
155
|
+
- キ = ki
|
|
156
|
+
- ク = ku
|
|
157
|
+
- ケ = ke
|
|
158
|
+
- コ = ko
|
|
159
|
+
|
|
160
|
+
**Explanation:** The ka-row katakana represents the same /k/ + vowel sounds as the hiragana か-row. The shapes are more angular and simplified.
|
|
161
|
+
|
|
162
|
+
:::
|
|
163
|
+
|
|
164
|
+
:::exercise{id="ja-katakana-02-recognition-sa" type="matching" title="Match Sa-row Characters" skill="character-recognition" tests="katakana-sa,katakana-shi,katakana-su,katakana-se,katakana-so" objectiveId="obj-recognize-ka-sa-rows"}
|
|
165
|
+
|
|
166
|
+
**Question:** Match each sa-row katakana to its romaji
|
|
167
|
+
|
|
168
|
+
- サ
|
|
169
|
+
- シ
|
|
170
|
+
- ス
|
|
171
|
+
- セ
|
|
172
|
+
- ソ
|
|
173
|
+
|
|
174
|
+
**Answer:**
|
|
175
|
+
|
|
176
|
+
- サ = sa
|
|
177
|
+
- シ = shi
|
|
178
|
+
- ス = su
|
|
179
|
+
- セ = se
|
|
180
|
+
- ソ = so
|
|
181
|
+
|
|
182
|
+
**Explanation:** Note シ (shi) is the irregular sound — as in hiragana, "si" does not exist in Japanese. シ is the most commonly confused character in katakana (with ツ), so study the stroke orientation carefully.
|
|
183
|
+
|
|
184
|
+
:::
|
|
185
|
+
|
|
186
|
+
:::exercise{id="ja-katakana-02-loanwords" type="fill-in-blank" title="Read Loanwords" skill="word-recognition" tests="katakana-ka,katakana-sa,katakana-su,katakana-ko" objectiveId="obj-loanwords-ka-sa"}
|
|
187
|
+
|
|
188
|
+
**Question:** Read these common loanwords
|
|
189
|
+
|
|
190
|
+
- スキー = ___
|
|
191
|
+
- カフェ = ___
|
|
192
|
+
- コース = ___
|
|
193
|
+
|
|
194
|
+
**Answer:**
|
|
195
|
+
|
|
196
|
+
- スキー = "sukī" (ski / skiing)
|
|
197
|
+
- カフェ = "kafe" (café)
|
|
198
|
+
- コース = "kōsu" (course)
|
|
199
|
+
|
|
200
|
+
**Explanation:** The long vowel mark ー (called chōonpu) extends the preceding vowel. It appears frequently in katakana loanwords and is unique to katakana — hiragana has different ways to write long vowels.
|
|
201
|
+
|
|
202
|
+
:::
|
|
203
|
+
|
|
204
|
+
## What's Next
|
|
205
|
+
|
|
206
|
+
In Lesson 3, you will learn the **タ-row** (ta, chi, tsu, te, to) and the **ナ-row** (na, ni, nu, ne, no). You will also encounter ツ (tsu), which will help you solidify the difference between シ and ツ.
|
|
207
|
+
`;
|
|
208
|
+
export {
|
|
209
|
+
a as default
|
|
210
|
+
};
|
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
const a = `---
|
|
2
|
+
type: lesson
|
|
3
|
+
id: japanese-katakana-lesson-03
|
|
4
|
+
title: "Lesson 3 — Ta-row and Na-row (タチツテト・ナニヌネノ)"
|
|
5
|
+
description: "Learn the タ-row and ナ-row katakana — including the crucial ツ (tsu)"
|
|
6
|
+
order: 3
|
|
7
|
+
parentId: japanese-katakana
|
|
8
|
+
difficulty: beginner
|
|
9
|
+
cefrLevel: A1
|
|
10
|
+
categories:
|
|
11
|
+
- consonants
|
|
12
|
+
- basic-characters
|
|
13
|
+
metadata:
|
|
14
|
+
estimatedTime: 25
|
|
15
|
+
prerequisites: [japanese-katakana-lesson-02]
|
|
16
|
+
learningObjectives:
|
|
17
|
+
- id: obj-recognize-ta-na-rows
|
|
18
|
+
description: "Recognize the ta-row and na-row katakana characters"
|
|
19
|
+
skill: character-recognition
|
|
20
|
+
references: [katakana-ta, katakana-chi, katakana-tsu, katakana-te, katakana-to, katakana-na, katakana-ni, katakana-nu, katakana-ne, katakana-no]
|
|
21
|
+
- id: obj-sounds-ta-na-rows
|
|
22
|
+
description: "Map ta-row and na-row katakana to their sounds"
|
|
23
|
+
skill: character-sound-mapping
|
|
24
|
+
references: [katakana-ta, katakana-chi, katakana-tsu, katakana-te, katakana-to, katakana-na, katakana-ni, katakana-nu, katakana-ne, katakana-no]
|
|
25
|
+
- id: obj-tsu-vs-shi
|
|
26
|
+
description: "Distinguish ツ (tsu) from シ (shi)"
|
|
27
|
+
skill: character-recognition
|
|
28
|
+
references: [katakana-tsu, katakana-shi]
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
# Lesson 3 — Ta-row and Na-row (タチツテト・ナニヌネノ)
|
|
32
|
+
|
|
33
|
+
## Introduction
|
|
34
|
+
|
|
35
|
+
In this lesson, you will learn the **タ-row** (ta, chi, tsu, te, to) and the **ナ-row** (na, ni, nu, ne, no). The ta-row contains two irregular sounds — chi and tsu — that you already know from hiragana. This lesson also gives you the opportunity to practice distinguishing **ツ** from **シ**, the most commonly confused katakana pair.
|
|
36
|
+
|
|
37
|
+
## Ta-row Characters
|
|
38
|
+
|
|
39
|
+
:::character-set{id="katakana-ta-row" title="Katakana Ta-row (タ行)"}
|
|
40
|
+
|
|
41
|
+
::character{id="katakana-ta" canonicalRef="katakana-ta" char="タ" name="タ (ta)" charType="katakana" data:romaji="ta" data:row="ta" data:hiragana="た"}
|
|
42
|
+
|
|
43
|
+
::character{id="katakana-chi" canonicalRef="katakana-chi" char="チ" name="チ (chi)" charType="katakana" data:romaji="chi" data:row="ta" data:hiragana="ち"}
|
|
44
|
+
|
|
45
|
+
::character{id="katakana-tsu" canonicalRef="katakana-tsu" char="ツ" name="ツ (tsu)" charType="katakana" data:romaji="tsu" data:row="ta" data:hiragana="つ"}
|
|
46
|
+
|
|
47
|
+
::character{id="katakana-te" canonicalRef="katakana-te" char="テ" name="テ (te)" charType="katakana" data:romaji="te" data:row="ta" data:hiragana="て"}
|
|
48
|
+
|
|
49
|
+
::character{id="katakana-to" canonicalRef="katakana-to" char="ト" name="ト (to)" charType="katakana" data:romaji="to" data:row="ta" data:hiragana="と"}
|
|
50
|
+
|
|
51
|
+
:::
|
|
52
|
+
|
|
53
|
+
## Na-row Characters
|
|
54
|
+
|
|
55
|
+
:::character-set{id="katakana-na-row" title="Katakana Na-row (ナ行)"}
|
|
56
|
+
|
|
57
|
+
::character{id="katakana-na" canonicalRef="katakana-na" char="ナ" name="ナ (na)" charType="katakana" data:romaji="na" data:row="na" data:hiragana="な"}
|
|
58
|
+
|
|
59
|
+
::character{id="katakana-ni" canonicalRef="katakana-ni" char="ニ" name="ニ (ni)" charType="katakana" data:romaji="ni" data:row="na" data:hiragana="に"}
|
|
60
|
+
|
|
61
|
+
::character{id="katakana-nu" canonicalRef="katakana-nu" char="ヌ" name="ヌ (nu)" charType="katakana" data:romaji="nu" data:row="na" data:hiragana="ぬ"}
|
|
62
|
+
|
|
63
|
+
::character{id="katakana-ne" canonicalRef="katakana-ne" char="ネ" name="ネ (ne)" charType="katakana" data:romaji="ne" data:row="na" data:hiragana="ね"}
|
|
64
|
+
|
|
65
|
+
::character{id="katakana-no" canonicalRef="katakana-no" char="ノ" name="ノ (no)" charType="katakana" data:romaji="no" data:row="na" data:hiragana="の"}
|
|
66
|
+
|
|
67
|
+
:::
|
|
68
|
+
|
|
69
|
+
## Pronunciation Guide
|
|
70
|
+
|
|
71
|
+
### Ta-row
|
|
72
|
+
|
|
73
|
+
| Character | Romaji | Sound | Notes |
|
|
74
|
+
|-----------|--------|-------|-------|
|
|
75
|
+
| タ | ta | /ta/ | Regular |
|
|
76
|
+
| チ | chi | /tɕi/ | Irregular — "ti" does not exist |
|
|
77
|
+
| ツ | tsu | /tsɯ/ | Irregular — "tu" does not exist |
|
|
78
|
+
| テ | te | /te/ | Regular |
|
|
79
|
+
| ト | to | /to/ | Regular |
|
|
80
|
+
|
|
81
|
+
### Na-row
|
|
82
|
+
|
|
83
|
+
| Character | Romaji | Sound | Notes |
|
|
84
|
+
|-----------|--------|-------|-------|
|
|
85
|
+
| ナ | na | /na/ | Regular |
|
|
86
|
+
| ニ | ni | /ni/ | Regular |
|
|
87
|
+
| ヌ | nu | /nɯ/ | Regular |
|
|
88
|
+
| ネ | ne | /ne/ | Regular |
|
|
89
|
+
| ノ | no | /no/ | Regular |
|
|
90
|
+
|
|
91
|
+
## ツ vs シ — The Critical Distinction
|
|
92
|
+
|
|
93
|
+
This is the most important thing to practice in all of katakana:
|
|
94
|
+
|
|
95
|
+
| Character | Sound | Stroke Direction |
|
|
96
|
+
|-----------|-------|-----------------|
|
|
97
|
+
| シ (shi) | /ɕi/ | The two short strokes lean **horizontally** (like eyes looking sideways) |
|
|
98
|
+
| ツ (tsu) | /tsɯ/ | The two short strokes lean **vertically** (like two drips falling down) |
|
|
99
|
+
|
|
100
|
+
Memory tricks:
|
|
101
|
+
- **シ** looks like a face with horizontal "squinting eyes" — think of **sh**eep squinting in sunlight
|
|
102
|
+
- **ツ** looks like water dripping downward — think of a **ts**unami (which starts with "tsu"!)
|
|
103
|
+
|
|
104
|
+
The same distinction applies to ソ vs ン (which you will learn later).
|
|
105
|
+
|
|
106
|
+
## Writing Tips — Ta-row
|
|
107
|
+
|
|
108
|
+
- **タ**: Three strokes — two short horizontals then a diagonal sweep down and right.
|
|
109
|
+
- **チ**: Three strokes — two horizontals at the top, then a curved vertical stroke.
|
|
110
|
+
- **ツ**: Three strokes — two short vertical-leaning strokes, then a large curved sweep. The two short strokes are more vertical than シ.
|
|
111
|
+
- **テ**: Three strokes — a top horizontal, a crossing vertical, and a curved bottom. Resembles the letter "T."
|
|
112
|
+
- **ト**: Two strokes — a vertical line and a short horizontal rightward hook at the bottom. Very simple.
|
|
113
|
+
|
|
114
|
+
## Writing Tips — Na-row
|
|
115
|
+
|
|
116
|
+
- **ナ**: Two strokes — a short horizontal then a vertical with a rightward hook. Resembles the kanji 十 (ten).
|
|
117
|
+
- **ニ**: Two horizontal strokes — extremely simple, like the Chinese numeral 二 (two).
|
|
118
|
+
- **ヌ**: Two strokes — a diagonal and a curved stroke with a small hook.
|
|
119
|
+
- **ネ**: Four strokes — the most complex character in the na-row. Resembles the kanji 示.
|
|
120
|
+
- **ノ**: One diagonal stroke — among the simplest katakana to write.
|
|
121
|
+
|
|
122
|
+
## Loanword Practice
|
|
123
|
+
|
|
124
|
+
| Katakana | Romaji | Source | Meaning |
|
|
125
|
+
|----------|--------|--------|---------|
|
|
126
|
+
| テスト | tesuto | test | test / exam |
|
|
127
|
+
| ナイフ | naifu | knife | knife |
|
|
128
|
+
| ノート | nōto | note | notebook |
|
|
129
|
+
| トースト | tōsuto | toast | toast |
|
|
130
|
+
| チケット | chiketto | ticket | ticket |
|
|
131
|
+
|
|
132
|
+
## Key Points
|
|
133
|
+
|
|
134
|
+
1. **チ (chi) and ツ (tsu) are irregular**: Just as in hiragana, "ti" and "tu" do not exist.
|
|
135
|
+
2. **ツ vs シ**: The defining challenge of katakana — practice stroke direction.
|
|
136
|
+
3. **ノ is one stroke**: One of the simplest katakana characters.
|
|
137
|
+
4. **ト is simple**: Just a vertical with a small rightward hook.
|
|
138
|
+
5. **ニ is just two lines**: The easiest character in the na-row.
|
|
139
|
+
|
|
140
|
+
## Practice Recognition
|
|
141
|
+
|
|
142
|
+
:::exercise{id="ja-katakana-03-tsu-vs-shi" type="matching" title="Distinguish ツ from シ" skill="character-recognition" tests="katakana-tsu,katakana-shi" objectiveId="obj-tsu-vs-shi"}
|
|
143
|
+
|
|
144
|
+
**Question:** Match each character to its correct romaji — the most important distinction in katakana!
|
|
145
|
+
|
|
146
|
+
- シ
|
|
147
|
+
- ツ
|
|
148
|
+
|
|
149
|
+
**Answer:**
|
|
150
|
+
|
|
151
|
+
- シ = shi (strokes lean horizontally)
|
|
152
|
+
- ツ = tsu (strokes lean vertically)
|
|
153
|
+
|
|
154
|
+
**Explanation:** シ and ツ look very similar but represent completely different sounds. The key difference is the direction of the two short strokes: horizontal for シ (shi), vertical for ツ (tsu). Practice this pair until it becomes automatic.
|
|
155
|
+
|
|
156
|
+
:::
|
|
157
|
+
|
|
158
|
+
:::exercise{id="ja-katakana-03-recognition" type="matching" title="Match Ta-row and Na-row" skill="character-recognition" tests="katakana-ta,katakana-chi,katakana-tsu,katakana-te,katakana-to,katakana-na,katakana-ni,katakana-nu,katakana-ne,katakana-no" objectiveId="obj-recognize-ta-na-rows"}
|
|
159
|
+
|
|
160
|
+
**Question:** Match each character to its romaji
|
|
161
|
+
|
|
162
|
+
- タ
|
|
163
|
+
- チ
|
|
164
|
+
- ツ
|
|
165
|
+
- テ
|
|
166
|
+
- ト
|
|
167
|
+
- ナ
|
|
168
|
+
- ニ
|
|
169
|
+
- ヌ
|
|
170
|
+
- ネ
|
|
171
|
+
- ノ
|
|
172
|
+
|
|
173
|
+
**Answer:**
|
|
174
|
+
|
|
175
|
+
- タ = ta
|
|
176
|
+
- チ = chi
|
|
177
|
+
- ツ = tsu
|
|
178
|
+
- テ = te
|
|
179
|
+
- ト = to
|
|
180
|
+
- ナ = na
|
|
181
|
+
- ニ = ni
|
|
182
|
+
- ヌ = nu
|
|
183
|
+
- ネ = ne
|
|
184
|
+
- ノ = no
|
|
185
|
+
|
|
186
|
+
**Explanation:** The ta-row has two irregular sounds (chi and tsu) while the na-row is completely regular. These irregularities are the same as in hiragana.
|
|
187
|
+
|
|
188
|
+
:::
|
|
189
|
+
|
|
190
|
+
:::exercise{id="ja-katakana-03-loanwords" type="fill-in-blank" title="Read Ta/Na-row Loanwords" skill="word-recognition" tests="katakana-te,katakana-na,katakana-no,katakana-to" objectiveId="obj-sounds-ta-na-rows"}
|
|
191
|
+
|
|
192
|
+
**Question:** Read these loanwords
|
|
193
|
+
|
|
194
|
+
- テスト = ___
|
|
195
|
+
- ノート = ___
|
|
196
|
+
- チケット = ___
|
|
197
|
+
|
|
198
|
+
**Answer:**
|
|
199
|
+
|
|
200
|
+
- テスト = "tesuto" (test / exam)
|
|
201
|
+
- ノート = "nōto" (notebook)
|
|
202
|
+
- チケット = "chiketto" (ticket)
|
|
203
|
+
|
|
204
|
+
**Explanation:** The small ッ (small tsu) in チケット represents a double consonant — the "k" is held for one extra mora. This small ッ is the katakana equivalent of small っ in hiragana.
|
|
205
|
+
|
|
206
|
+
:::
|
|
207
|
+
|
|
208
|
+
## What's Next
|
|
209
|
+
|
|
210
|
+
In Lesson 4, you will learn the **ハ-row** (ha, hi, fu, he, ho) and the **マ-row** (ma, mi, mu, me, mo).
|
|
211
|
+
`;
|
|
212
|
+
export {
|
|
213
|
+
a as default
|
|
214
|
+
};
|