-
Notifications
You must be signed in to change notification settings - Fork 0
/
fei.tex
3048 lines (2750 loc) · 116 KB
/
fei.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
% Intended LaTeX compiler: pdflatex
\documentclass[UTF8,a4paper,titlepage,10pt]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{longtable}
\usepackage{wrapfig}
\usepackage{rotating}
\usepackage[normalem]{ulem}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{capt-of}
\usepackage{hyperref}
\usepackage[left=3.2cm,right=3.2cm,top=2.5cm,bottom=2.5cm]{geometry}
\hypersetup{colorlinks=true,linkcolor=blue}
\usepackage{tipa}
\usepackage[heading]{ctex}
\usepackage{rotfloat}
\usepackage{booktabs}
\usepackage{tabu}
\usepackage{enumitem}
\usepackage{makeidx}
\makeindex
\tabulinesep=1.0mm
\setlistdepth{9}
\renewlist{itemize}{itemize}{9}
\setlist[itemize]{label=$\circ$}
\author{winsphinX}
\date{}
\title{F.E.I.\\\medskip
\large Français \& Español \& Italiano}
\hypersetup{
pdfauthor={winsphinX},
pdftitle={F.E.I.},
pdfkeywords={},
pdfsubject={},
pdfcreator={Emacs 29.1 (Org mode 9.6.6)},
pdflang={English}}
\begin{document}
\maketitle
\tableofcontents
\part{序言}
\label{sec:orgf87d894}
\chapter{简介}
\label{sec:org97329be}
\texttt{Français \& Español \& Italiano}
这三种语言同属 印欧语系-罗曼语族-西罗曼语支。
\begin{figure}[H]
\centering
\includegraphics[width=0.9\textwidth]{images/WorldMap.png}
\caption{分布图}
\end{figure}
\section{发展}
\label{sec:org3f84743}
\begin{enumerate}
\item 演化
\label{sec:org7b2c1f6}
罗曼诸语言中使用者最多的是西班牙语,其后依次是葡萄牙语、法语、意大利语和罗马尼亚语。
在现代的罗曼诸语言中,拉丁语复杂的屈折变化和语法结构已经被大大简化。意大利语、萨丁尼亚语和古典拉丁语最接近。
在罗曼诸语言发展的历史中,最先从拉丁语中分裂出来成为独立语言的是萨丁尼亚語,随之而来的是东部的罗马尼亚语也与拉丁语脱离,成为独立语言。第三个重要过程是意大利语与高卢-伊比利亚语言的分离。这个时候,法国和伊比利亚半岛诸国的语言仍然具有高度的一致性。罗曼语言的第四次重大变化是伊比利亚半岛的语言和法语脱离,逐渐形成非常相似的两种现代语言:西班牙语和葡萄牙语。而通行于西班牙东部的加泰罗尼亚语则被认为是法语和伊比利亚语言的中间产物,因为这种语言融合了法语和西、葡两种语言的很多特征。
\begin{figure}[H]
\centering
\includegraphics[width=0.9\textwidth]{images/FamilyMap.png}
\caption{演化图}
\end{figure}
\item 分支
\label{sec:org96a756a}
\begin{itemize}
\item 东罗曼语支
\begin{itemize}
\item 罗马尼亚语 (ron)
\item 伊斯特拉-罗马尼亚语(Romanian, Istro)(ruo)
\item 阿罗马尼亚语、马其顿-罗马尼亚语(Romanian, Macedo)(rup)
\item 梅戈来诺-罗马尼亚语(Romanian, Megleno)(ruq)
\end{itemize}
\item 意大利-西罗曼语支
\begin{itemize}
\item 意大利-达尔马提亚语支
\begin{itemize}
\item 达尔马提亚语(Dalmatian)(dlm)(已灭绝)
\item 伊斯特拉语(Istriot)(ist)
\item 意大利语 (ita)
\item 犹太-意大利语(Judeo-Italian)(itk)
\item 拿坡里语 (nap)
\item 西西里语 (scn)
\item 科西嘉语 Corsican(cos)(一说属于南罗曼语支)
\end{itemize}
\item 西罗曼语支
\begin{itemize}
\item 高卢-意大利语支 Gallo-Italian
\begin{itemize}
\item 艾米利亚-罗马涅语(Emiliano-Romagnolo)(eml)
\item 利古里亚语(Ligurian)(lij)
\item 伦巴底语 (lmo)
\item 皮埃蒙特语 (pms)
\item 威尼斯语 (vec)
\end{itemize}
\item 高卢-罗曼语支 Gallo-Romance
\begin{itemize}
\item 奥依语
\begin{itemize}
\item 法语
\begin{itemize}
\item 古法语 (fro)
\item 盎格鲁-诺曼语 (xno)
\item 法语 (fra)
\item 卡真法语、路易斯安那州法语(Cajun French)(frc)
\item 庇卡底语(Picard)(pcd)
\item 瓦龙语、瓦隆语、华隆语(Wallon)(wln)
\item 查法蒂语、犹太-法语(Zarphatic)(zrp)
\end{itemize}
\end{itemize}
\item 东南奥依语
\begin{itemize}
\item 法兰克-普罗旺斯语(Franco-Provençal)(frp)
\end{itemize}
\item 雷蒂亚-罗曼语(Rhaeto-Romance)
\begin{itemize}
\item 弗留利语 (fur)
\item 拉登语 (lld)
\item 罗曼什语 (roh)
\end{itemize}
\item 奥克-罗曼语(一说属于伊比利亚-罗曼语支下的东伊比利亚语支)
\begin{itemize}
\item 奥克语 (oci)
\item 古普罗旺斯语(Old Provençal)(pro)
\item 苏阿迪特语(Shuadit)(sdt)
\item 加泰罗尼亚语、瓦伦西亚语 (cat)
\end{itemize}
\end{itemize}
\item 伊比利亚-罗曼语支 Ibero-Romance
\begin{itemize}
\item 西伊比利亚语支 West Iberian
\begin{itemize}
\item Asturo-Leonese
\begin{itemize}
\item 阿斯图里亚斯语 (ast)
\item 米兰德斯语(Miranda do Douro)(mwl)
\end{itemize}
\item 卡斯提语 Castilian
\begin{itemize}
\item 埃斯特雷马杜拉语(Extremaduran)(ext)
\item 拉迪诺语、犹太-西班牙语 (lad)
\item 西班牙语 (spa)
\item 洛雷托-乌卡亚利西班牙语、森林西班牙语(Spanish, Loreto-Ucayali,在秘鲁)(spq)
\end{itemize}
\end{itemize}
\end{itemize}
\item 葡萄牙-加利西亚 Portuguese-Galician
\begin{itemize}
\item 法拉语(Fala)(fax)
\item 加利西亚语 (glg)
\item 葡萄牙语 (por)
\end{itemize}
\item 比利牛斯-莫札拉布语支 Pyrenean-Mozarabic
\begin{itemize}
\item 莫札拉布语(Mozarabic)(mxi)
\item 阿拉贡语 (arg)
\end{itemize}
\end{itemize}
\item 南罗曼语支(海岛语支)
\begin{itemize}
\item 古科西嘉语
\item 萨丁尼亚语(Sardinian)(srd)
\begin{itemize}
\item 萨萨里方言(Sardinian, Sassarese)(sdc)
\item 加卢拉方言(Sardinian, Gallurese)(sdn)
\item 劳古多罗方言(Sardinian, Logudorese)(src)
\item 坎皮达诺方言(Sardinian, Campidanese)(sro)
\end{itemize}
\end{itemize}
\end{itemize}
\end{itemize}
\end{enumerate}
\section{比较}
\label{sec:org65656b4}
\begin{enumerate}
\item 共同点
\label{sec:org98375d6}
\begin{itemize}
\item 语法上:
\begin{itemize}
\item 对动作的描述更多的依赖动词自身的变化。语法变化主要依靠动词的词形变化,而非依靠粘着成分。这也是罗曼语言构词法的重要特征。
\item 通常频繁使用两个助动词来构成时态,都是从拉丁语的不定词 esse 和 stare 改变而来的,一个用于描述本质,一个用于描述状态。
\item 动词都要依照人称及数量的不同而进行变位。第三人称通常有语法性的区别,而第一和第二人称则没有。
\item 保留着敬词的痕迹,主要体现在第二人称单数上。
\item 名词都有语法性的区别,但通常只有两种语法性,而拉丁语中名词则有三个语法性。
\item 除罗马尼亚语之外,其他语言已经没有格变化。多以冠词和介词来替代拉丁语词尾复杂的格变化。
\end{itemize}
\item 语音上:
\begin{itemize}
\item 在语音上,通常都将每个词的重音放在倒数第二个音节上(在法语中,重音是放在最后一个音节上的,因为多数法语词汇摈弃了语言词汇的最后一个元音)。
\item 通常都有一些特殊的规定以消除声门塞音、闭塞辅音等对语言整体美感的影响(例如法语中就有“联诵”的规定)。这些特征使得所有的罗曼语言都具有语速快、语调流畅的特点。
\end{itemize}
\item 书写上:
\begin{itemize}
\item 字母 W 和 K 使用得很少,通常只出现在人名和外来语中。
\item 字母 C 和 G 在前元音(如 i、e 等)之前的时候通常读音要软化,在后元音(如 a、o、u)前则要发较硬的软腭音。
\item 一些表示国籍的形容词、表示星期、月份和年份的名词通常首字母不需大写。
\end{itemize}
\end{itemize}
\item 差异点
\label{sec:orgda56a9e}
\begin{itemize}
\item 在一些罗曼语中,名词复数是由名词单数词尾加字母 s 构成的,这是从拉丁语中宾格名词的复数形式演化而来的,以这种方式构成名词复数的罗曼语言包括葡萄牙语、西班牙语、加泰罗尼亚语、普罗旺斯语和法语。也有一些语言的名词复数是由词尾的元音字母变化而构成的,这一特征则是从拉丁语中主格名词的复数形式演化而来。如意大利语和罗马尼亚语等。
\item 一些罗曼语言摈弃了语言词汇的词尾非重读元音。例如欧洲语言的词汇月亮在意大利语中仍是 luna,而在法语中则变成了 lune。仍然保留了词尾元音的语言包括葡萄牙语、西班牙语、意大利语和罗马尼亚语。而法语则摈弃了词尾元音。
\item 罗曼诸语言的比较级构成词也有两种,一种是使用 plus 一词的,一种则是使用 magis 一词的。采用前一种构成方式的语言包括法语(plus)和意大利语(più);而采用后一种构成方式的则包括葡萄牙语(mais)、西班牙语(más)、加泰罗尼亚语(més)等。
\item 在罗曼语言中,“16”这个数字在计数体系中地位非常特殊。除了罗马尼亚语以外,罗曼语言普遍用“1+10”,“2+10”……结构表示 11-15,用“10+7”,“10+8”……结构表示 17-19。而 16 作为两组之间的分界线,在各语言中表达方法不同,其中法语、加泰罗尼亚语、意大利语等用“6+10”表示;而葡萄牙语和西班牙语等则用“10+6”表示。
\item 有些罗曼语言用表达“有”这一含义的助动词来构成复合时态(比如法语中的“愈过去时”等),而有些语言则对动词做出区分,有些动词用“有”来构成,有些则要用“是”来构成。仅使用“有”构成的语言包括加泰罗尼亚语、葡萄牙语、西班牙语和罗马尼亚语等。而混合使用两个助动词的语言则包括法语、意大利语和普罗旺斯语等。在后一类罗曼语言中,用“是”来构成的复合时态的动词通常是常用的不及物动词,这类动词通常描述的是无法确定目标或标明状态的动作。例如“来”、“去”、“变为”等等。而大多数动词还是要利用“有”来构成复合时态。
\end{itemize}
\end{enumerate}
\chapter{辨识}
\label{sec:org1bc8e26}
\begin{itemize}
\item \textbf{一看}
\begin{itemize}
\item c 下面带勾的(ç)一定是法语;n 上面带波浪的(ñ),有特殊标点的(问号 ¿?、叹号 ¡!)一定是西班牙语;双辅音较多的一定是意大利语。
\item 元音上面只有左撇的(闭音符),一定是西班牙语;同时有左撇和右撇(开音符)的,是意大利语;不但有左撇和右撇,还有帽子(长音符)的,一定是法语。
\end{itemize}
\item \textbf{二听}
\begin{itemize}
\item 带小舌颤音的一定是法语;发音有很多 -s 的一定是西班牙语;腔调比较特别的是意大利语。
\end{itemize}
\end{itemize}
\part{语音}
\label{sec:orgba9e0eb}
\chapter{字母}
\label{sec:org8126501}
\section{字母表}
\label{sec:orgb432932}
\begin{enumerate}
\item Français
\label{sec:orge0a44ba}
\begin{longtabu} to 0.9\textwidth {XXX|XXX}
\caption{法语字母表}
\\[0pt]
\toprule
字母 & 名称 & 读音 & 字母 & 名称 & 读音\\[0pt]
\midrule
\endfirsthead
\multicolumn{6}{l}{Continued from previous page} \\[0pt]
\toprule
字母 & 名称 & 读音 & 字母 & 名称 & 读音 \\[0pt]
\midrule
\endhead
\midrule\multicolumn{6}{r}{Continued on next page} \\
\endfoot
\endlastfoot
A a & a & \textipa{[A]} & N n & enne & \textipa{[En]}\\[0pt]
B b & bé & \textipa{[be]} & O o & o & \textipa{[o]}\\[0pt]
C c & cé & \textipa{[se]} & P p & pé & \textipa{[pe]}\\[0pt]
D d & dé & \textipa{[de]} & Q q & qu & \textipa{[ky]}\\[0pt]
E e & e & \textipa{[@]} & R r & erre & \textipa{[E:K]}\\[0pt]
F e & eff & \textipa{[Ef]} & S s & esse & \textipa{[Es]}\\[0pt]
G g & gé & \textipa{[Ze]} & T t & té & \textipa{[te]}\\[0pt]
H h & hache & \textipa{[AS]} & U u & u & \textipa{[y]}\\[0pt]
I i & i & \textipa{[i]} & V v & vé & \textipa{[ve]}\\[0pt]
J j & ji & \textipa{[Zi]} & W w & double vé & \textipa{[dubl@ve]}\\[0pt]
K k & ka & \textipa{[kA]} & X x & ixe & \textipa{[iks]}\\[0pt]
L l & elle & \textipa{[El]} & Y y & i grec & \textipa{[igKEk]}\\[0pt]
M m & emme & \textipa{[Em]} & Z z & zède & \textipa{[zEd]}\\[0pt]
\bottomrule
\end{longtabu}
\item Español
\label{sec:org4a87187}
\begin{longtabu} to 0.9\textwidth {XXX|XXX}
\caption{西班牙语字母表}
\\[0pt]
\toprule
字母 & 名称 & 读音 & 字母 & 名称 & 读音\\[0pt]
\midrule
\endfirsthead
\multicolumn{6}{l}{Continued from previous page} \\[0pt]
\toprule
字母 & 名称 & 读音 & 字母 & 名称 & 读音 \\[0pt]
\midrule
\endhead
\midrule\multicolumn{6}{r}{Continued on next page} \\
\endfoot
\endlastfoot
A a & a & \textipa{[A]} & N n & ene & \textipa{[ene]}\\[0pt]
B b & be & \textipa{[be]} & Ñ ñ & eñe & \textipa{[e\textltailn e]}\\[0pt]
C c & ce & \textipa{[Te]} & O o & o & \textipa{[o]}\\[0pt]
CH ch & che & \textipa{[tSe]} & P p & pe & \textipa{[pe]}\\[0pt]
D d & de & \textipa{[de]} & Q q & cu & \textipa{[ku]}\\[0pt]
E e & e & \textipa{[e]} & R r & ere & \textipa{[eRe]}\\[0pt]
F e & efe & \textipa{[efe]} & RR rr & erre & \textipa{[ere]}\\[0pt]
G g & ge & \textipa{[xe]} & S s & ese & \textipa{[ese]}\\[0pt]
H h & hache & \textipa{[AtSe]} & T t & te & \textipa{[te]}\\[0pt]
I i & i & \textipa{[i]} & U u & u & \textipa{[u]}\\[0pt]
J j & jota & \textipa{[xotA]} & V v & uve & \textipa{[uBe]}\\[0pt]
K k & ca & \textipa{[kA]} & W w & uve doble & \textipa{[uBedoBle]}\\[0pt]
L l & ele & \textipa{[ele]} & X x & equis & \textipa{[ekis]}\\[0pt]
LL ll & elle & \textipa{[eJe]} & Y y & i griega & \textipa{[igriegA]}\\[0pt]
M m & eme & \textipa{[eme]} & Z z & zeta & \textipa{[Teta]}\\[0pt]
\bottomrule
\end{longtabu}
\begin{itemize}
\item 在西班牙语中,字母 ``K'' 和 ``W'' 平常时一般不用,它们只出现于外来词汇。
\end{itemize}
\item Italiano
\label{sec:orgf0d2237}
\begin{longtabu} to 0.9\textwidth {XXX|XXX}
\caption{意大利语字母表}
\\[0pt]
\toprule
字母 & 名称 & 读音 & 字母 & 名称 & 读音\\[0pt]
\midrule
\endfirsthead
\multicolumn{6}{l}{Continued from previous page} \\[0pt]
\toprule
字母 & 名称 & 读音 & 字母 & 名称 & 读音 \\[0pt]
\midrule
\endhead
\midrule\multicolumn{6}{r}{Continued on next page} \\
\endfoot
\endlastfoot
A a & a & \textipa{[A]} & N n & enne & \textipa{[enne]}\\[0pt]
B b & bi & \textipa{[bi]} & O o & o & \textipa{[o]}\\[0pt]
C c & ci & \textipa{[tSi]} & P p & pi & \textipa{[pi]}\\[0pt]
D d & di & \textipa{[di]} & Q q & cu & \textipa{[ku]}\\[0pt]
E e & e & \textipa{[e]} & R r & erre & \textipa{[erre]}\\[0pt]
F e & effe & \textipa{[effe]} & S s & esse & \textipa{[esse]}\\[0pt]
G g & gi & \textipa{[dZi]} & T t & ti & \textipa{[ti]}\\[0pt]
H h & acca & \textipa{[AkkA]} & U u & u & \textipa{[u]}\\[0pt]
I i & i & \textipa{[i]} & V v & vu & \textipa{[vu]}\\[0pt]
J j & i lungo & \textipa{[ilungo]} & W w & doppia vu & \textipa{[doppiAvu]}\\[0pt]
K k & cappa & \textipa{[kAppA]} & X x & ics & \textipa{[iks]}\\[0pt]
L l & elle & \textipa{[elle]} & Y y & ipsilon & \textipa{[ipsilon]}\\[0pt]
M m & emme & \textipa{[emme]} & Z z & zeta & \textipa{[tseta]}\\[0pt]
\bottomrule
\end{longtabu}
\begin{itemize}
\item 在意大利语中,字母 ``J''、``K''、``W''、``X''、``Y'' 只用于外来词汇。
\end{itemize}
\end{enumerate}
\section{音符表}
\label{sec:orgc236831}
\begin{longtabu} to 0.9\textwidth {X|X|X|X}
\caption{音符汇总表}
\\[0pt]
\toprule
音符名 & 法语适用字母 & 西班牙语适用字母 & 意大利语适用字母\\[0pt]
\midrule
\endfirsthead
\multicolumn{4}{l}{Continued from previous page} \\[0pt]
\toprule
音符名 & 法语适用字母 & 西班牙语适用字母 & 意大利语适用字母 \\[0pt]
\midrule
\endhead
\midrule\multicolumn{4}{r}{Continued on next page} \\
\endfoot
\endlastfoot
闭音符 & é & á, é, í, ó, ú, ý & é, ó\\[0pt]
开音符 & à, è, ù & - & à, è, ì, ò\\[0pt]
长音符 & â, ê, î, ô, û & - & -\\[0pt]
分音符 & ë, ï, ü, ÿ & ï, ü & -\\[0pt]
软音符 & ç & - & -\\[0pt]
颚化符 & - & ñ & -\\[0pt]
\bottomrule
\end{longtabu}
\chapter{发音}
\label{sec:orgfc02a33}
\section{发音总表}
\label{sec:org42956b3}
\begin{longtabu} to 0.9\textwidth {l|X|X|X}
\caption{元音汇总表}
\\[0pt]
\toprule
音标 & 法语 & 西班牙语 & 意大利语\\[0pt]
\midrule
\endfirsthead
\multicolumn{4}{l}{Continued from previous page} \\[0pt]
\toprule
音标 & 法语 & 西班牙语 & 意大利语 \\[0pt]
\midrule
\endhead
\midrule\multicolumn{4}{r}{Continued on next page} \\
\endfoot
\endlastfoot
\textipa{[A]} & a, à, â & a & a, à\\[0pt]
\textipa{[E]} & è, ê, ë, ai, aî, ei, -et & e & è\\[0pt]
\textipa{[e]} & é, -er, -ez, -ed, es- & - & e, é\\[0pt]
\textipa{[i]} & i, î, ï & i & i, ì, í\\[0pt]
\textipa{[O]} & o, au[r], & - & ò\\[0pt]
\textipa{[o]} & o, ô, o[z], au, eau & o & o, ó\\[0pt]
\textipa{[u]} & ou, où, oû & u & u, ù, ú\\[0pt]
\textipa{[y]} & u, û & - & -\\[0pt]
\textipa{[@]} & e & - & -\\[0pt]
\textipa{[\o]} & eu, œu, eu[zdt] & - & -\\[0pt]
\textipa{[\oe]} & eu, œu, [cg]ue, œ & - & -\\[0pt]
\textipa{[\~E]} & in, im, yn, ym, ain, aim, ein, un, um & - & -\\[0pt]
\textipa{[\~A]} & an, am, en, em & - & -\\[0pt]
\textipa{[\~O]} & on, om & - & -\\[0pt]
\bottomrule
\end{longtabu}
\begin{longtabu} to 0.9\textwidth {l|X|X|X}
\caption{辅音汇总表}
\\[0pt]
\toprule
音标 & 法语 & 西班牙语 & 意大利语\\[0pt]
\midrule
\endfirsthead
\multicolumn{4}{l}{Continued from previous page} \\[0pt]
\toprule
音标 & 法语 & 西班牙语 & 意大利语 \\[0pt]
\midrule
\endhead
\midrule\multicolumn{4}{r}{Continued on next page} \\
\endfoot
\endlastfoot
\textipa{[p]} & p & p & p\\[0pt]
\textipa{[b]} & b & b-, v- & b\\[0pt]
\textipa{[B]} & - & -b, -v & -\\[0pt]
\midrule
\textipa{[t]} & t & t & t\\[0pt]
\textipa{[d]} & d & d- & d\\[0pt]
\textipa{[D]} & - & -d- & -\\[0pt]
\textipa{[T]} & - & -d, z, c-ei & -\\[0pt]
\midrule
\textipa{[k]} & c-aou, k, ck, qu, -q & c-aou, qu-ei & c-aou, ch-ei\\[0pt]
\textipa{[g]} & g-aou, gu-eiy & g-aou, gu-ei & g-aou, gh-ei\\[0pt]
\textipa{[x]} & - & j, g-ei & -\\[0pt]
\midrule
\textipa{[s]} & s, ss, c-eiy, ç, x & s, x & s\\[0pt]
\textipa{[z]} & z, zz, -s-, x & - & -s-\\[0pt]
\midrule
\textipa{[f]} & f, ff, ph & f & f\\[0pt]
\textipa{[v]} & v & - & v\\[0pt]
\midrule
\textipa{[S]} & ch & - & sc-ei\\[0pt]
\textipa{[Z]} & j, g-eiy & - & -\\[0pt]
\midrule
\textipa{[tS]} & - & ch & c-ei\\[0pt]
\textipa{[dZ]} & - & - & g-ei\\[0pt]
\midrule
\textipa{[ts]} & - & - & z\\[0pt]
\textipa{[dz]} & - & - & z\\[0pt]
\midrule
\textipa{[m]} & m & m & m\\[0pt]
\textipa{[n]} & n & n & n\\[0pt]
\textipa{[\textltailn]} & gn & ñ & gn\\[0pt]
\textipa{[l]} & l & l & l\\[0pt]
\textipa{[L]} & - & - & gli\\[0pt]
\textipa{[J]} & - & ll, y- & -\\[0pt]
\textipa{[r]} & - & rr & r\\[0pt]
\textipa{[R]} & - & r & -\\[0pt]
\textipa{[K]} & r & - & -\\[0pt]
\midrule
\textipa{[j]} & i-, -il, -ill, y- & i- & i-\\[0pt]
\textipa{[w]} & ou-, w & u-, w & u-, w\\[0pt]
\textipa{[4]} & u- & - & -\\[0pt]
\bottomrule
\end{longtabu}
\section{发音规则}
\label{sec:org6ed51f4}
\begin{enumerate}
\item Français
\label{sec:orgdc3bf69}
\begin{longtabu} to 0.9\textwidth {X|l|X}
\caption{法语元音表}
\\[0pt]
\toprule
字母组合 & 读音 & 例词\\[0pt]
\midrule
\endfirsthead
\multicolumn{3}{l}{Continued from previous page} \\[0pt]
\toprule
字母组合 & 读音 & 例词 \\[0pt]
\midrule
\endhead
\midrule\multicolumn{3}{r}{Continued on next page} \\
\endfoot
\endlastfoot
a, à, â & \textipa{[A]} & banane, là, fâché\\[0pt]
e 在 mm 或 nn 前(少数词) & & femme, solennel\\[0pt]
\midrule
è, ê, ë & \textipa{[E]} & mère, fête, noël\\[0pt]
ai, aî, ei & & lait, maître, reine\\[0pt]
e 在闭音节中 & & mer, service, respect\\[0pt]
e 在两个相同的辅音字母前(m, n 除外) & & belle, cette, adresse\\[0pt]
-et 在词末 & & poulet, filet\\[0pt]
\midrule
é & \textipa{[e]} & été, léger\\[0pt]
-er, -ez, -ed 在词尾 & & loger, visiter, parler, chez, pied\\[0pt]
es 在单音节词中 & & les, des, ces\\[0pt]
ess-, eff-, desc-, dess- 在词首 & & essai, effet, descendre, dessert\\[0pt]
\midrule
i, î, ï 及 y & \textipa{[i]} & petit, finir, île, maïs, bicyclette\\[0pt]
\midrule
u 和 û & \textipa{[y]} & tu, but, flûte, sûr, culture\\[0pt]
\midrule
ou,où,oû & \textipa{[u]} & loup, où, coût\\[0pt]
\midrule
ô & \textipa{[o]} & tôt, allô\\[0pt]
o 在\textipa{[z]}音前 & & chose, rose\\[0pt]
o 在词末开音节中 & & vélo, mot\\[0pt]
au & & chaud, cause\\[0pt]
eau & & beau, bureau\\[0pt]
\midrule
o 除发\textipa{[o]}音的情况以外 & \textipa{[O]} & robe, porte, photo\\[0pt]
au 在 r 前 & & aurore, aurai\\[0pt]
\midrule
e 在单音节词中 & \textipa{[@]} & le, te, de, ce\\[0pt]
e 在词首开音节中 & & venir, lever, demain\\[0pt]
e 在“辅辅-e-辅”结构中 & & entreprise, mercredi, partenaire\\[0pt]
\midrule
eu, œu 在词末开音节中 & \textipa{[\o]} & peu, deux, vœu, nœud\\[0pt]
eu 在\textipa{[z]}前 & & heureuse, vendeuse\\[0pt]
eu 在\textipa{[d][t][tr]}前 & & jeudi, émeute, neutre\\[0pt]
\midrule
eu, œu 除了发\textipa{[\o]}音的情况以外 & \textipa{[\oe]} & fleur, peur, seuil, sœur\\[0pt]
ue 在 c, g 后 & & accueil, orgueil\\[0pt]
œ 在少数单词中 & & œil\\[0pt]
\midrule
im, in, ym, yn, aim, ain, ein, um, un(后面不是元音或 m, n) & \textipa{[\~E]} & fin, timbre, syndicat, symbole, faim, pain, plein, lundi, commun\\[0pt]
\midrule
am, an, em, en(后面不是元音或 m, n) & \textipa{[\~A]} & chambre, champagne, ancre, chanter, emporter, remplir, entrer, content\\[0pt]
\midrule
om, on(后面不是元音或 m, n) & \textipa{[\~O]} & ombre, tomber, rompre, oncle, salon, chanson\\[0pt]
\bottomrule
\end{longtabu}
\begin{itemize}
\item 字母组合 um, un,其发音\textipa{[\~\oe]},已有被\textipa{[\~E]}替代的趋势。
\end{itemize}
\begin{longtabu} to 0.9\textwidth {X|l|X}
\caption{法语辅音表}
\\[0pt]
\toprule
字母组合 & 读音 & 例词\\[0pt]
\midrule
\endfirsthead
\multicolumn{3}{l}{Continued from previous page} \\[0pt]
\toprule
字母组合 & 读音 & 例词 \\[0pt]
\midrule
\endhead
\midrule\multicolumn{3}{r}{Continued on next page} \\
\endfoot
\endlastfoot
p, pp & \textipa{[p]} & pape, impact, palace, parc, Philippe, pratique\\[0pt]
b, bb & \textipa{[b]} & banque, bicyclette, herbe, abbé, Bible\\[0pt]
\midrule
t, tt & \textipa{[t]} & tête, table, thé, patte, maître\\[0pt]
d, dd & \textipa{[d]} & madame, date, déjà, addition, adresse\\[0pt]
\midrule
k, ck & \textipa{[k]} & kilo, ticket\\[0pt]
c 在 a, o, u, 辅音字母前或词末 & \textipa{[k]} & casser, coller, cube, clé, lac\\[0pt]
qu & \textipa{[k]} & tonique, qui, quel\\[0pt]
q 在词末 & \textipa{[k]} & coq, cinq\\[0pt]
g 在 a, o, u 及辅音字母前 & \textipa{[g]} & gare, goûter, figure, jungle\\[0pt]
gu 在 e, i, y 前 & \textipa{[g]} & guetter, guide, Guy\\[0pt]
\midrule
s, ss & \textipa{[s]} & veste, système,adresse, messe\\[0pt]
c 在 e, i, y 前 & \textipa{[s]} & cinéma, cycle, scientifique, centre\\[0pt]
ç & \textipa{[s]} & français, leçon\\[0pt]
t 在 tion 和 tie 中(前面没有 s) & \textipa{[s]} & attention, nation, démocratie, patience\\[0pt]
x 在少数词中 & \textipa{[s]} & dix, six\\[0pt]
z, zz & \textipa{[z]} & gaz, seize, zéro, jazz\\[0pt]
s 在两个元音字母之间 & \textipa{[z]} & base, visage, paisible\\[0pt]
x 在个别词中 & \textipa{[z]} & deuxième, sixième\\[0pt]
\midrule
ch & \textipa{[S]} & Chine, douche\\[0pt]
j & \textipa{[Z]} & je, jour\\[0pt]
g 在 e, i, y 前 & \textipa{[Z]} & geste, gilet, gymnastique\\[0pt]
\midrule
f, ff, ph & \textipa{[f]} & flamme, difficile, chef, philosophie\\[0pt]
v & \textipa{[v]} & veste, vivre, voir\\[0pt]
\midrule
l & \textipa{[l]} & loi, facile, allocution, fil, cil\\[0pt]
m & \textipa{[m]} & ma, pomme, image, mythe\\[0pt]
n, nn & \textipa{[n]} & minute, année\\[0pt]
mn 在少数单词中 & \textipa{[n]} & condamner, automne\\[0pt]
gn & \textipa{[\textltailn]} & signe, campagne, gagner, magnifique, digne\\[0pt]
r, rr & \textipa{[K]} & rare, mer, gris, bracelet, prune, crèche, Méditerranée\\[0pt]
\midrule
ou 在元音前 & \textipa{[w]} & jouer, mouette, oui, souhait\\[0pt]
w 在少数外来词中 & \textipa{[w]} & watt\\[0pt]
\midrule
i 在元音前 & \textipa{[j]} & lien, ciel, faïence\\[0pt]
il 在词末且在元音后 & \textipa{[j]} & réveil, travail\\[0pt]
ill 在元音后 & \textipa{[j]} & bataille, travailler\\[0pt]
字母 y 在元音前或在词首 & \textipa{[j]} & Lyon, yeux\\[0pt]
\midrule
u 在元音前 & \textipa{[4]} & nuit lui, fruit, juin\\[0pt]
\bottomrule
\end{longtabu}
\begin{itemize}
\item 除联诵时,词尾的 d, g, p, s, t, x 和 z 一般不发音。
\end{itemize}
\item Español
\label{sec:orge2fc953}
\begin{longtabu} to 0.9\textwidth {X|l|X}
\caption{西班牙语元音表}
\\[0pt]
\toprule
字母组合 & 读音 & 例词\\[0pt]
\midrule
\endfirsthead
\multicolumn{3}{l}{Continued from previous page} \\[0pt]
\toprule
字母组合 & 读音 & 例词 \\[0pt]
\midrule
\endhead
\midrule\multicolumn{3}{r}{Continued on next page} \\
\endfoot
\endlastfoot
a & \textipa{[A]} & ala, amigo\\[0pt]
e & \textipa{[E]} & eco, esta\\[0pt]
i & \textipa{[i]} & idea, isla\\[0pt]
o & \textipa{[o]} & oso, solo\\[0pt]
u & \textipa{[u]} & uva, luz\\[0pt]
\midrule
ai, ay & \textipa{[Ai]} & aire, hay\\[0pt]
ei, ey & \textipa{[Ei]} & seis, peine\\[0pt]
oi, py & \textipa{[oi]} & oigo, hoy\\[0pt]
ui, uy & \textipa{[wi]} & ruido, muy\\[0pt]
au & \textipa{[Au]} & aula, autor\\[0pt]
eu & \textipa{[Eu]} & neuro, Europa\\[0pt]
ou & \textipa{[ou]} & bou\\[0pt]
ia & \textipa{[jA]} & Asia, limpia\\[0pt]
ie & \textipa{[jE]} & siete, pie\\[0pt]
io & \textipa{[jo]} & Dios, sucio\\[0pt]
iu & \textipa{[ju]} & ciudad, viuda\\[0pt]
ua & \textipa{[wA]} & agua, cuatro\\[0pt]
ue & \textipa{[wE]} & nuevo, luego\\[0pt]
uo & \textipa{[wo]} & cuota, antiguo\\[0pt]
\midrule
iai & \textipa{[jAi]} & cambiáis\\[0pt]
iei & \textipa{[jEi]} & cambiéis\\[0pt]
uai, uay & \textipa{[wAi]} & Paraguay\\[0pt]
uei, uey & \textipa{[wEi]} & buey\\[0pt]
\bottomrule
\end{longtabu}
\begin{itemize}
\item 西班牙语有五个元音。
\item 以 n, s 或元音字母结尾的单词,重音一般在倒数第二个音节上,不用重音符号。
\item 除了以 n, s 以外的以辅音字母结尾的词,重音位于最后一个音节上,不用重音符号。
\item 上述两项以外的单词,重音都标出:á, é, í, ó, ú。
\end{itemize}
\begin{longtabu} to 0.9\textwidth {X|l|X}
\caption{西班牙语辅音表}
\\[0pt]
\toprule
字母组合 & 读音 & 例词\\[0pt]
\midrule
\endfirsthead
\multicolumn{3}{l}{Continued from previous page} \\[0pt]
\toprule
字母组合 & 读音 & 例词 \\[0pt]
\midrule
\endhead
\midrule\multicolumn{3}{r}{Continued on next page} \\
\endfoot
\endlastfoot
p & \textipa{[p]} & pa, pe, pi, po, pu, paja, pala, pasta, pata\\[0pt]
b, v 词首或者位于 m、n 之后时 & \textipa{[b]} & ba, be, bi, bo, bu, bala, boca, voz, vuelo\\[0pt]
b, v 其他情况 & \textipa{[B]} & -ba, -be, -bi, -bo, -bu, abril, abeja, ava, eve\\[0pt]
f & \textipa{[f]} & fa, fe, fi,fo, fu, fama\\[0pt]
\midrule
t & \textipa{[t]} & ta, te, ti, to, tu, tres, talla\\[0pt]
d 在词首及 n、l 之后 & \textipa{[d]} & da, de, di, do, du, doce, ducha\\[0pt]
d 位于其他字母之间时 & \textipa{[D]} & -da, -de, -di, -do, -du, verde, lado\\[0pt]
d 位于词末 & \textipa{[T]} & red, pared\\[0pt]
\midrule
c 在 a, o, u 前、qu 在 e, i 前 & \textipa{[k]} & ca, que, qui, co, cu, cabo, copa\\[0pt]
g 在 a, o, u 前、gu 在 e, i 前 & \textipa{[g]} & ga, gue, gui, go, gu, gato, gana\\[0pt]
g 在 e, i 前 & \textipa{[x]} & ge, gi, gente, gesto\\[0pt]
j & \textipa{[x]} & ja, je, ji ,jo, ju, jada, jadea\\[0pt]
\midrule
s、x 位于词首或者辅音前 & \textipa{[s]} & sa, se, si, so, su, sol, seis, extra, sexto\\[0pt]
x 位于元音前 & \textipa{[ks]} & taxi, exacto\\[0pt]
z & \textipa{[T]} & za, ze, zi, zo, zu, zumo, zapato\\[0pt]
c 在 e, i 前 & \textipa{[T]} & ce, ci, cero, ceja\\[0pt]
\midrule
ch & \textipa{[tS]} & cha, che, chi, cho, chu, chica, chapa\\[0pt]
\midrule
m & \textipa{[m]} & ma, me, mi, mo, mu, mes, madre\\[0pt]
n & \textipa{[n]} & na, ne, ni, no, nu, nada, ingenio\\[0pt]
ñ & \textipa{[\textltailn]} & ña, ñe, ñi, ño, ñu, año, niño\\[0pt]
l & \textipa{[l]} & la, le, li, lo, lu, ley, labio\\[0pt]
ll、y 在元音前 & \textipa{[J]} & lla, lle, lli, llo, llu, llave, llanto, yeso\\[0pt]
y 在元音后或单独出现 & \textipa{[i]} & y, hay\\[0pt]
r 在词首、rr & \textipa{[r]} & ra, re, ri, ro, ru, corre, Andorra\\[0pt]
r 不在词首 & \textipa{[R]} & caro, pero\\[0pt]
\bottomrule
\end{longtabu}
\begin{itemize}
\item gue, gui 发音为\textipa{[gE], [gi]};güe, güi 发音为\textipa{[guE], [gui]}。
\item 在西班牙南部、南美,没有\textipa{[T]}这个音,都发成\textipa{[s]}。
\item -ción 发音为\textipa{[sion]}。
\item w 用来拼写外来词,发音为\textipa{[w]},如 watt, whisky。
\end{itemize}
\item Italiano
\label{sec:orgfefd1e6}
\begin{longtabu} to 0.9\textwidth {X|l|X}
\caption{意大利语元音表}
\\[0pt]
\toprule
字母组合 & 读音 & 例词\\[0pt]
\midrule
\endfirsthead
\multicolumn{3}{l}{Continued from previous page} \\[0pt]
\toprule
字母组合 & 读音 & 例词 \\[0pt]
\midrule
\endhead
\midrule\multicolumn{3}{r}{Continued on next page} \\
\endfoot
\endlastfoot
à, a & \textipa{[A]} & mamma, papà, vacca, fama, sala\\[0pt]
è 开口音 & \textipa{[E]} & bène, sètte, bèllo, pèsca, vènto\\[0pt]
é 闭口音, e & \textipa{[e]} & pésca, vénti, véla, céna, pépe\\[0pt]
ì, i & \textipa{[i]} & tigre, pini, nidi, lì, sì\\[0pt]
ò 开口音 & \textipa{[O]} & gònna, mòdo, òtto, nòtte, bòtte\\[0pt]
ó 闭口音, o & \textipa{[o]} & bótte, óra, scópo, lóro, cóme\\[0pt]
u & \textipa{[u]} & bue, muto, luna, lupo, duro\\[0pt]
\midrule
ia & \textipa{[jA]} & piano, piaga\\[0pt]
ie & \textipa{[jE]} & liève, pièno\\[0pt]
io & \textipa{[jo]} & òdio, Dio\\[0pt]
iu & \textipa{[ju]} & piùma, fiume\\[0pt]
\midrule
ua & \textipa{[wA]} & mutua, uguale\\[0pt]
ue & \textipa{[wE]} & duèllo, duetto\\[0pt]
ui & \textipa{[ui]} & suino, guida\\[0pt]
uo & \textipa{[uo]} & tuòno, duolo\\[0pt]
\midrule
ai & \textipa{[Ai]} & mai\\[0pt]
ei & \textipa{[Ei]} & lèi\\[0pt]
oi & \textipa{[oi]} & pòi\\[0pt]
\midrule
au & \textipa{[Au]} & paura\\[0pt]
eu & \textipa{[Eu]} & Euròpa\\[0pt]
\bottomrule
\end{longtabu}
\begin{itemize}
\item 意大利语有七个元音,其中\textipa{[E]}和\textipa{[O]}只出现在重音节。
\item 只有重读音节上的元音 e、o 才有开口音和闭口音之分,非重读音节(包括单音节词)上的元音 e、o 永远发闭口音。
\item 两个元音连在一起,但其中没有元音 i 和 u 做半元音,就不是二合元音。
\begin{itemize}
\item i 和 u 在另一个元音之前,如:ia, ie, io, iu; ua, ue, uo, ui,称为上升的二合元音,发音时要突出 i 和 u,然后自然地转为 a, e, o, u, i 等音。
\item i 和 u 若在另一个元音之后出现,如:ai, ei, oi, au, eu,称为下降的二合元音,发音时要重读 a, e, o 等元音,随后转发 i 和 u 的音,不要重读。
\end{itemize}
\item 三个元音连在一起同时出现,其中包括元音 i 和 u 的为三合元音。
\item 二合元音、三合元音必须带有 i 或 u。
\end{itemize}
\begin{longtabu} to 0.9\textwidth {X|l|X}
\caption{意大利语辅音表}
\\[0pt]
\toprule
字母组合 & 读音 & 例词\\[0pt]
\midrule
\endfirsthead
\multicolumn{3}{l}{Continued from previous page} \\[0pt]
\toprule
字母组合 & 读音 & 例词 \\[0pt]
\midrule
\endhead
\midrule\multicolumn{3}{r}{Continued on next page} \\
\endfoot
\endlastfoot
p & \textipa{[p]} & pa, pe, pi, po, pu, pane, pipa, pepe, pupa, lupo, penna, palla\\[0pt]
b & \textipa{[b]} & ba, be, bi, bo, bu, basta, bene, bella, buono, bimbo, bomba\\[0pt]
\midrule
t & \textipa{[t]} & ta, te, ti, to, tu, letto, lotta, tanto, tutto, notte, alto, molto\\[0pt]
d & \textipa{[d]} & da, de, di, do, du, dente, modo, mondo, debole, dubbio, moda\\[0pt]
\midrule
c 在 a, o, u 前, 或 ch 在 e, i 之前 & \textipa{[k]} & ca, che, chi, co, cu, come, casa, cosa, bocca, amico, pacco, anche, capo\\[0pt]
g 在 a, o, u 前, 或 gh 在 e, i 之前 & \textipa{[g]} & ga, ghe, ghi, go, gu, gamba, gonna, gola, gusto, gatto, gomma\\[0pt]
\midrule
s & \textipa{[s]} & sa, se, si, so, su, sala, sole, sale, solo, testa, sedia\\[0pt]
s 在两个元音之间, 或在浊辅音 b,d,g,l,m,n,v 之前 & \textipa{[z]} & peso, naso, smalto, sviluppo\\[0pt]
\midrule
c 在 e, i 之前 & \textipa{[tS]} & ce, ci, cima, cinema, cemento, cibo, dolce, calcio\\[0pt]
g 在 e, i 之前 & \textipa{[dZ]} & ge, gi, gita, gesto, oggi, giacca, giallo, gente, gentile\\[0pt]
\midrule
f & \textipa{[f]} & fa, fe, fi, fo, fu, fame, fare, fumo, folla, fede, festa, frutta\\[0pt]
v & \textipa{[v]} & va, ve, vi, vo, vu, vaso, vino, visa, voto, vuoto, vecchio, tavolo\\[0pt]
\midrule
z & \textipa{[ts]} & za, ze, zi, zo, zu, zappa, zoppo, zucca, zitto, pezzo, pazzo, zio\\[0pt]
z & \textipa{[dz]} & za, ze, zi, zo, zu, zona, zelo, zoo, mezzo, zaino, bronzo\\[0pt]
\midrule
m & \textipa{[m]} & ma, me, mi, mo, mu, mamma, amo, ama, mimo, mela, miele\\[0pt]
n & \textipa{[n]} & na, ne, ni, no, nu, nonno, nome, meno, uno, notte, mano, ninna\\[0pt]
gn & \textipa{[\textltailn]} & gna, gne, gni, gno, gnu, ogni, ragno, sogna, legno, signore, bagno, montagna\\[0pt]
l & \textipa{[l]} & la, le, li, lo, lu, lana, male, lama, lino, luna, mille, mila\\[0pt]
r & \textipa{[r]} & ra, re, ri, ro, ru\\[0pt]
\midrule
sc 在 e, i 之前 & \textipa{[S]} & scia, sce, sci, scio, sciu, scimmia, sciopero, scena, pesce, ascia\\[0pt]
sc 在 a, o, u, he, hi 之前 & \textipa{[sk]} & sca, sco, scu, scuola, scherzo, schiuma, scopa, pesca\\[0pt]
\midrule
gl 在 i 之前,或 gli 在 a, e, o, u 之前 & \textipa{[L]} & glia, glie, gli, glio, gliu, maglia, moglie, luglio, meglio\\[0pt]
gl 在 a, e, o, u 之前 & \textipa{[gl]} & gloria, gleba, glucosio\\[0pt]
\bottomrule
\end{longtabu}
\begin{itemize}
\item 意大利语中 h 在任何位置都是不发音的,但是 h 起到指示发音的作用。
\item 双辅音要适当延长其发音的阻塞时间。辅音都能延长,除了\textipa{[z]}。
\end{itemize}
\end{enumerate}
\part{语法}
\label{sec:org058ca6d}
\chapter{名词}
\label{sec:org68d2894}
\section{名词}
\label{sec:org41f85a8}
名词有性(阳性、阴性)、数(单数、复数)的变化,基本上不再有格的变化。
\begin{enumerate}
\item Français
\label{sec:orgeb990e8}
\item Español
\label{sec:org1a02007}
\item Italiano
\label{sec:orgd4088f9}
\begin{longtabu} to 0.9\textwidth {l|X|X}
\caption{意大利语名词单复数表}
\\[0pt]
\toprule
& 单数 & 复数\\[0pt]
\midrule
\endfirsthead
\multicolumn{3}{l}{Continued from previous page} \\[0pt]
\toprule
& 单数 & 复数 \\[0pt]
\midrule
\endhead
\midrule\multicolumn{3}{r}{Continued on next page} \\
\endfoot
\endlastfoot
阳性 & -o & -i\\[0pt]
& -a & -i\\[0pt]
& -e & -i\\[0pt]
\midrule
阴性 & -a & -e\\[0pt]
& -e & -i\\[0pt]
\bottomrule
\end{longtabu}
\begin{itemize}
\item 以 a 或 e 结尾的,可能是阳性名词,也可能是阴性名词,要从冠词来区分。
\item 以 ca/ga 结尾的阴性名词,由于发音关系,变为 che/ghe,如 amica-amiche。
\item 以 co/go 结尾的阳性名词,由于发音关系,变为 chi/ghi,如 lago-laghi;但也有改变发音,直接变成 ci/gi,如 amico-amici。
\item 复数不变化的词
\begin{itemize}
\item 重音在末尾音节的,如 città,università,caffè;
\item 单音节词,如 re,tè,gru,pro;
\item 单数是 i 结尾的,如 analisi,crisi,tesi;
\item 辅音结尾的,如 lapis,film,sport,gas。
\end{itemize}
\item 人体器官的名词,复数变化大部分不规则
\begin{center}
\begin{tabular}{lll}
意思 & 单数 & 复数\\[0pt]
\hline
脑 & il cervello & le cervella\\[0pt]
眼睛 & l'occhio & gli occhi\\[0pt]
睫毛 & il ciglio & le ciglia\\[0pt]
眉毛 & il sopraciglio & le sopraciglia\\[0pt]
耳朵 & l'orecchio & le orecchie / gli orecchi\\[0pt]
鼻 & il naso & i nasi\\[0pt]
嘴 & la bocca & le bocche\\[0pt]
嘴唇 & il labbro & le labbra\\[0pt]
胳膊 & il braccio & le braccia\\[0pt]
腿 & la gamba & le gambe\\[0pt]
膝盖 & il ginocchio & i ginocchi / le ginocchia\\[0pt]
手 & la mano & le mani\\[0pt]
手指、脚趾 & il dito & i diti / le dita\\[0pt]
指甲 & l'unghia & le unghie\\[0pt]
骨 & l'osso / le ossa & gli ossi\\[0pt]
皮 & il cuoio & le cuoia\\[0pt]
肌肉 & il muscolo & i muscoli\\[0pt]
脚 & il piede & i piedi\\[0pt]
\end{tabular}
\end{center}
\end{itemize}
\end{enumerate}
\chapter{冠词}
\label{sec:org1ddeaf7}
\section{冠词}
\label{sec:orge7c2a7d}
冠词有性(阳性、阴性)、数(单数、复数)的变化,要和其限定的名词做性数配合。
\begin{enumerate}
\item Français
\label{sec:orgaaf8f0a}
\begin{longtabu} to 0.9\textwidth {l|X|X|X}
\caption{法语定冠词表}
\\[0pt]
\toprule
& 规则 & 单数 & 复数\\[0pt]
\midrule
\endfirsthead
\multicolumn{4}{l}{Continued from previous page} \\[0pt]
\toprule
& 规则 & 单数 & 复数 \\[0pt]
\midrule
\endhead
\midrule\multicolumn{4}{r}{Continued on next page} \\
\endfoot
\endlastfoot
阳性 & 元音前、哑音前 & l' & les\\[0pt]
& 辅音前、嘘音前 & le & \\[0pt]
\midrule
阴性 & 元音前、哑音前 & l' & les\\[0pt]
& 辅音前、嘘音前 & la & \\[0pt]