123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290 |
- <?xml version="1.0" encoding="UTF-8"?>
- <chapter version="5.0" xmlns="http://docbook.org/ns/docbook"
- xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude"
- xmlns:svg="http://www.w3.org/2000/svg" xmlns:m="http://www.w3.org/1998/Math/MathML"
- xmlns:html="http://www.w3.org/1999/xhtml" xmlns:db="http://docbook.org/ns/docbook">
- <title>Lesson 1</title>
- <section>
- <title><foreignphrase xml:lang="ru">Ру́сский алфави́т</foreignphrase></title>
- <para>Click <link xlink:href="/home/eric/travail/Langues/FSI/lesson1.mp3" xlink:show="other"
- ><emphasis role="bold">here</emphasis></link> to listen.</para>
- <table colsep="0" frame="none" rowsep="0">
- <title><foreignphrase xml:lang="ru">Ру́сский алфави́т</foreignphrase></title>
- <tgroup align="center" cols="2">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">А а</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Р р</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Б б</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">С с</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">В в</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Т т</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Г г</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">У у</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Д д</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Ф ф</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Е е</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Х х</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Ё ё</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Ц ц</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Ж ж</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Ч ч</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">З з</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Ш ш</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">И и</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Щ щ</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">И й</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ъ</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">К к</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ы</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Л л</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ь</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">М м</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Э э</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Н н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Ю ю</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">О о</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Я я</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">П п</foreignphrase></entry>
- <entry></entry>
- </row>
- </tbody>
- </tgroup>
- </table>
- </section>
- <?custom-pagebreak?>
- <section>
- <title>The Russian alphabet</title>
- <para>The Russian alphabet "Cyrillic" is named in honor of St. Cyril, a Greek missionary who
- brought the written word to the Slavs in the 9th century. This alphabet, as it exists today,
- consists of 33 letters/symbols: 10 vowel symbols, 20 consonants, 1 semi-vowel and 2 symbols
- with no sound value.</para>
- <para>The following is a presentation of the Cyrillic alphabet "<emphasis role="bold"
- ><foreignphrase xml:lang="ru">Кири́ллица</foreignphrase></emphasis>". It consists of
- letters/symbols which:</para>
- <orderedlist>
- <listitem>
- <para>resemble Latin letters and represent approximately the same sounds.</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="3">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0010-1-1.png" width="4cm"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0010-1-2.png" width="4cm"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0010-2.png" width="4cm"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">МА́МА</foreignphrase>
- <foreignphrase xml:lang="ru">ма́ма</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">КОМЕ́ТА</foreignphrase>
- <foreignphrase xml:lang="ru">коме́та</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">КОТ</foreignphrase>
- <foreignphrase xml:lang="ru">кот</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="3">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">А́том</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Кака́о</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Мо́кко</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Те́ма</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Том</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Ме́кка</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- <listitem>
- <para>resemble Latin letters, but represent different sounds:</para>
- <informaltable role="tableau1">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="1cm"/>
- <colspec colname="c2" colnum="2" colwidth="*"/>
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Р р</foreignphrase></entry>
- <entry>represents a trilled or "flapped" r. (Compare it to the double t sound in
- "letter" or the double d sound in "ladder".)</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">У у</foreignphrase></entry>
- <entry>is a vowel which represents the long vowel sound oo.</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">С с</foreignphrase></entry>
- <entry>represents the sound s.</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">В в</foreignphrase></entry>
- <entry>represents the sound v.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="3" colsep="0">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0011-1.png" width="4cm"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0011-2.png" width="4cm"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0011-3.png" width="4cm"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">КА́ССА</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">МЕТРО́</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ТРА́КТОР</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="2">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0011-4.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0011-5.png" width="7cm"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">КА́КТУС</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">МОСКВА́</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="4">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">метр</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">курс</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ма́сса</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">кво́та</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">мото́р</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">текст</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">торт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ма́ска</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">квас</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">а́рка</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ао́рта</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ка́рта</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">акт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">а́втор</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ко́смос</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">теа́тр</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">арома́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">сорт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">самова́р</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">автома́т</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable pgwide="1" role="tableau1">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="3cm"/>
- <colspec colname="c2" colnum="2" colwidth="1*"/>
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Н н</foreignphrase></entry>
- <entry>represents the sound n.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="2">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0012-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0012-2.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">НО́ТА</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ТАНК</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="3">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">сена́тор</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">нерв</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">нос</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ветера́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">океа́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">мане́ра</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">моме́нт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">но́рма</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">но́мер</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">рестора́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ва́нна</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">на́то</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- <listitem>
- <para>look different from Latin letters altogether.</para>
- <informaltable pgwide="1" role="tableau1">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="3cm"/>
- <colspec colname="c2" colnum="2" colwidth="1*"/>
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">И и</foreignphrase></entry>
- <entry>is a vowel which represents the long vowel sound ее.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="2">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0013-1-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0013-1-1-2.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">кио́ск</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">вино́</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="4">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">рис</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">риск</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">мини́стр</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">систе́ма</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">три</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">рим</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ми́нимум</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">кварти́ра</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ви́ски</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">арти́ст</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">арти́стка</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">инструме́нт</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">вино́</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">кино́</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">мину́та</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">университе́т</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Ни́на</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">минск</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">интере́с</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">матема́тика</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable pgwide="1" role="tableau1">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="3cm"/>
- <colspec colname="c2" colnum="2" colwidth="1*"/>
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Л л</foreignphrase></entry>
- <entry>represents the sound I.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="2">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0014-1.png" valign="middle"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata align="center" fileref="Images/FSI-0014-2.png" width="6cm"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">СТУЛ</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ЛИМО́Н</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="4">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">кли́мат</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">литр</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">луна́</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Мали́</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">миллио́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ли́рика</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">мета́лл</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">план</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">рекла́ма</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ле́ксика</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">литерату́ра</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">лист</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">минера́л</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">туале́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">моле́кула</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">молоко́</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <?custom-pagebreak?>
- <informaltable pgwide="1" role="tableau1">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="3cm"/>
- <colspec colname="c2" colnum="2" colwidth="1*"/>
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Д д</foreignphrase></entry>
- <entry>represents the sound d.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="3">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0015-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0015-2.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0015-3.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">РА́ДИО</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ДО́КТОР</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ДОМ</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="4">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">мо́да</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">дива́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">дра́ма</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">кандида́т</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">дире́ктор</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">диск</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ло́ндон</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">докуме́нт</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">стадио́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">да́та</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Кана́да</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">демокра́т</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">дикта́нт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ме́тод</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">драко́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">код</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable pgwide="1" role="tableau1">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="3cm"/>
- <colspec colname="c2" colnum="2" colwidth="1*"/>
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Б</foreignphrase></entry>
- <entry>represents the sound b.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="2">
- <tbody>
- <row>
- <entry valign="middle"><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0016-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0016-1-2.png" scale="30" valign="middle"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">БАНА́Н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">БИЛЕ́Т</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="4">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">банк</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Бо́стон</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">бокс</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">буке́т</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">бланк</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">бар</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">бас</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">бале́т</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">блин</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">брат</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Бори́с</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">баро́н</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable pgwide="1" role="tableau1">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="3cm"/>
- <colspec colname="c2" colnum="2" colwidth="1*"/>
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">П п</foreignphrase></entry>
- <entry>represents the sound p.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="3">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0017-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0017-2.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0017-3.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ЛА́МПА</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ПА́СПОРТ</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ПОРТРЕ́Т</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="4">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">пре́сса</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">план</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">патрио́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">парла́мент</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">темп</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">стоп</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">проте́ст</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">пиани́ст</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">прое́кт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">стоп</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">депута́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">тра́нспорт</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">о́пера</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">паке́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">плака́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">пра́ктика</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">парк</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">и́мпорт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">дипло́м</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">дипломат</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">спорт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">пара́д</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">пу́блика</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">поли́тика</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable pgwide="1" role="tableau1">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="3cm"/>
- <colspec colname="c2" colnum="2" colwidth="1*"/>
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">ы</foreignphrase></entry>
- <entry>represents a vowel sound which does not exist in English. This letter will
- never begin a word and is often used to form the plural of nouns.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="1">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0018-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">РЫ́БА</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="3">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">ты</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">мы́ло</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ка́ссы</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">вы</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ку́рсы</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">пла́ны</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">мы</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">тури́сты</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ла́мпы</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">а́томы</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ры́ба</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">блины́</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">сын</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">студе́нты</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">плака́ты</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable pgwide="1" role="tableau1">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="3cm"/>
- <colspec colname="c2" colnum="2" colwidth="1*"/>
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Г г</foreignphrase></entry>
- <entry>represents the sound g.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="2">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0019-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0019-2.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ТИГР</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ГИТА́РА</foreignphrase></entry>
- </row>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0019-3.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0019-4.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">КОНГРЕ́СС</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ПЕНТАГО́Н</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="3">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Во́лга</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">грамм</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">о́рган</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">винегре́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">грани́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">магни́т</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">га́мма</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">гол</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">аргуме́нт</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">агроно́м</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">агре́ссор</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">генера́л</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">гру́ппа</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">сигна́л</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">прогре́сс</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">грот</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">грамма́тика</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">килогра́мм</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable pgwide="1" role="tableau1">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="3cm"/>
- <colspec colname="c2" colnum="2" colwidth="1*"/>
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">З з</foreignphrase></entry>
- <entry>represents the sound z.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="3">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0020-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0020-2.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0020-3.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ГАЗЕ́ТА</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">РО́ЗА</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ЗЕ́БРА</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="4">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">магази́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ба́за</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">зени́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">зо́на</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">президе́нт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ва́за</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">зоо́лог</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ви́за</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">патриоти́зм</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">визи́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">му́за</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">му́зыка</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable pgwide="1" role="tableau1">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="3cm"/>
- <colspec colname="c2" colnum="2" colwidth="1*"/>
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Ф ф</foreignphrase></entry>
- <entry>represents the sound f.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="3">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0021-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0021-2-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0021-2-1-2.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">КАФЕ́</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">МИКРОФО́Н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ТЕЛЕФО́Н</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="4">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">миф</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">буфе́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">фонд</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">фру́кты</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">фина́л</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ко́фе</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">фо́сфор</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">фонта́н</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">фи́рма</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">фронт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">фен</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">фина́нсы</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">а́фрика</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">фо́то</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">флаг</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">профе́ссор</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">фе́рма</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">фи́зика</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">факт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">фено́мен</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">фо́рма</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">фра́за</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">фигу́ра</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">футбо́л</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable pgwide="1" role="tableau1">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="3cm"/>
- <colspec colname="c2" colnum="2" colwidth="1*"/>
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Ж ж</foreignphrase></entry>
- <entry>represents the zh sound, similar to the V in measure.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="2">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0022-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0022-2.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ЖИРА́Ф</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ЖУРНА́Л</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="2">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">жена́</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">жарго́н</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">желе́</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">же́ст</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">пирожо́к</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">жаке́т</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">журнали́ст</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">жа́нр</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable pgwide="1" role="tableau1">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="3cm"/>
- <colspec colname="c2" colnum="2" colwidth="1*"/>
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">И и</foreignphrase></entry>
- <entry>is a semi-vowel which represents the sound of "y" as in York.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="2">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0023-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0023-2.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ПЛАНЕТА́РИИ</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">МУЗЕ́Й</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="2">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">йог</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">мавзоле́й</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">йод</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">геро́й</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">йо́та</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">перестро́йка</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">трамва́й</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">бойко́т</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable role="tableau1">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="3cm"/>
- <colspec colname="c2" colnum="2" colwidth="1*"/>
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">X х</foreignphrase></entry>
- <entry>represents the sound of the j in the English pronunciation of junta. The best
- way to make this sound is to get your tongue in the position for the к sound, and
- then simply exhale.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="1">
- <tbody>
- <row>
- <entry align="center"><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0024-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ХОККЕ́Й</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="3">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">хро́ника</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">хи́мик</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">хулига́н</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ха́ки</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">храм</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ха́ос</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">хара́ктер</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Са́харов</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ху́нта</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">те́хник</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">хамелео́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">меха́ник</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable pgwide="1" role="tableau1">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="3cm"/>
- <colspec colname="c2" colnum="2" colwidth="1*"/>
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Ч ч</foreignphrase></entry>
- <entry>represents the sound of "ch", as in cheese.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="2">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0025-1-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0025-1-2.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ЧЕК</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ЧЕМПИО́Н</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="3">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">чай</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">со́чи</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Чайко́вский</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">матч</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">чика́го</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Ростропо́вич</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">да́ча</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Че́хов</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Ива́нович</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable pgwide="1" role="tableau1">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="3cm"/>
- <colspec colname="c2" colnum="2" colwidth="1*"/>
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Ц ц</foreignphrase></entry>
- <entry>represents the sound of the "ts" combination as in the word bets.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="2">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0026-1-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0026-1-2.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ЦИРК</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ПИ́ЦЦА</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="3">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">медици́на</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">цеме́нт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">цита́та</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Солжени́цын</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">конце́рт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">проце́сс</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">дисципли́на</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">при́нцип</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">цензу́ра</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">специали́ст</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">центр</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">цент</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">цили́ндр</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">цинк</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">цикл</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable pgwide="1" role="tableau1">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="3cm"/>
- <colspec colname="c2" colnum="2" colwidth="1*"/>
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Ш ш</foreignphrase></entry>
- <entry>represents the "six" sound similar to that of the "s" in sugar.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="1">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0027-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ШОКОЛА́́Д</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="3">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">штат</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">шрифт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">маши́на</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">шарф</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">шеф</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">штамп</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ка́ша</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">шу́ба</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">марш</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">шимпанзе́</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">фи́ниш</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">шко́ла</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable pgwide="1" role="tableau1">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="3cm"/>
- <colspec colname="c2" colnum="2" colwidth="1*"/>
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Щ щ</foreignphrase></entry>
- <entry>looks like the letter above, except for its little tail. It represents a
- sound similar to the combination shch, as in fresh cheese or the sti combination
- in the word question.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="2">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">щелку́нчик</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">щека́</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">борщ</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">щено́к</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">щи</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">щит</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable pgwide="1" role="tableau1">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="3cm"/>
- <colspec colname="c2" colnum="2" colwidth="1*"/>
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Э э</foreignphrase></entry>
- <entry>is a vowel which represents the sound of "e" as in bet. This letter often
- begins words in Russian and is only rarely found within a word.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="2">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0028-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0028-2.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ЭСКАЛА́ТОР</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ЭЛЕКТРО́Н</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="3">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">э́ра</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">экспре́сс</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">экспериме́нт</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">поэ́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Аэрофло́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">э́тика</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">эли́та</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">экза́мен</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">энтузиа́зм</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">эгои́ст</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">э́хо</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">эле́ктрик</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">эква́тор</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">э́кспорт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">экономи́ст</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable pgwide="1" role="tableau1">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="3cm"/>
- <colspec colname="c2" colnum="2" colwidth="1*"/>
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Я я</foreignphrase></entry>
- <entry>is a vowel which has two pronunciations in Russian.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <orderedlist>
- <listitem>
- <para>Я at the beginning of a word or as the second vowel in a vowel cluster is
- pronounced ya.</para>
- <para>At the beginning of a word:</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="1">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0029-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry>Я́ХТА</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="3">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">як</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">яд</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ярд</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">я́ма</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Я́лта</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">я́нки</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">я́ков</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">я́рус</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">я́рмарка</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>In a vowel cluster:</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="1">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0030-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">БАТАРЕ́Я</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="3">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">мари́я</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">опера́ция</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">лаборато́рия</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">па́ртия</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">коме́дия</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">колле́кция</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ли́ния</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">тео́рия</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">террито́рия</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">а́рмия</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">рели́гия</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">пози́ция</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ко́пия</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">экску́рсия</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">экспеди́ция</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">катего́рия</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">коми́ссия</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">поли́ция</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">профе́ссия</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">галере́я</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ми́ссия</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- <listitem>
- <para>After a consonant this letter indicates that the consonant is palatalized, i.e. It
- is pronounced with the middle portion of the tongue raised towards the roof of the
- mouth. Я then represents the vowel a.</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="1">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0031-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ВА́НЯ</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="4">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">ня́ня</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Та́ня</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Бо́ря</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ля́ля</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Ко́ля</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ба́ня</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">дя́дя</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Га́ля</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- </orderedlist>
- <informaltable pgwide="1" role="tableau1">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="3cm"/>
- <colspec colname="c2" colnum="2" colwidth="1*"/>
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Ю ю</foreignphrase></entry>
- <entry>is a vowel which has two pronunciations in Russian.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <orderedlist>
- <listitem>
- <para>Ю at the beginning of a word or as the second vowel in a vowel cluster is
- pronounced yoo.</para>
- <para>At the beginning of a word:</para>
- <informaltable pgwide="1">
- <tgroup cols="3">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">юг</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ю́рта</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ю́рий</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ю́мор</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">юри́ст</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ювели́р</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ю́ноша</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">юбиле́й</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">юсти́ция</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>In a vowel cluster:</para>
- <informaltable pgwide="1">
- <tgroup cols="1">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">каю́та</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">сою́з</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- <listitem>
- <para>After a consonant this letter indicates that the consonant is palatalized, i.e. It
- is pronounced with the middle portion of the tongue raised towards the roof of the
- mouth. Ю then represents the vowel y.</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="1">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0033-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">РЮКЗА́К</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup cols="3">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">нюа́нс</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">бюдже́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">пюре́</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">бюро́</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">бюрокра́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">дю́на</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">меню́</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">утю́г</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">люкс</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">бюст</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">сюже́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">костю́м</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- </orderedlist>
- <informaltable pgwide="1" role="tableau1">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="3cm"/>
- <colspec colname="c2" colnum="2" colwidth="1*"/>
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Е е</foreignphrase></entry>
- <entry>a vowel, like Я and Ю also has two pronunciations. In printed texts other
- than textbooks the two dots are not indicated. You must be told when to pronounce
- ё (which is always stressed) and when to pronounce e.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <orderedlist>
- <listitem>
- <para>E at the beginning of a word or as the second vowel in a vowel cluster is
- pronounced yo.</para>
- <para>At the beginning of a word:</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="1">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0034-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ЁЛКА</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para><foreignphrase xml:lang="ru">ёж</foreignphrase></para>
- <para>in a vowel cluster:</para>
- <para><foreignphrase xml:lang="ru">моё</foreignphrase></para>
- <para><foreignphrase xml:lang="ru">твоё</foreignphrase></para>
- <para><foreignphrase xml:lang="ru">её</foreignphrase></para>
- </listitem>
- <listitem>
- <para>After a consonant it indicates that the consonant is palatalized, i.e. It is
- pronounced with the middle portion of the tongue raised towards the roof of the mouth.
- Ё then represents the vowel o.</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="1">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0035-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ШОФЁР</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable pgwide="1">
- <tgroup cols="2">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">тётя</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">манёвр</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">берёза</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">зелёный</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">сестры</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">лёд</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">свёкла</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">мёд</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">сёмга</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">счёт</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- </orderedlist>
- <informaltable pgwide="1" role="tableau1">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="3cm"/>
- <colspec colname="c2" colnum="2" colwidth="1*"/>
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Ь</foreignphrase></entry>
- <entry>The symbol <foreignphrase xml:lang="ru">ь</foreignphrase> has no sound value.
- It indicates that the preceding consonant is palatalized. It is most often found
- at the end of Russian words and signals that these words are pronounced with the
- final consonant palatalized ("softened"). For this reason it is referred to as the
- "soft sign".</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="2">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0036-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0036-2.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">МЕДА́ЛЬ</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">АВТОМОБИ́ЛЬ</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="4">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">мать</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">дека́брь</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">апре́ль</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">соль</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">конь</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">князь</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">портфе́ль</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ночь</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">оте́ль</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">календа́рь</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">дробь</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">царь</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ноль</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">секрета́рь</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">моде́ль</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">фильм</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">сеть</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">пять</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">бульва́р</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">кремль</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <informaltable pgwide="1" role="tableau1">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="3cm"/>
- <colspec colname="c2" colnum="2" colwidth="1*"/>
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Ъ</foreignphrase></entry>
- <entry>The symbol ъ also has no sound value. It is found within words and is used to
- separate the prefix from the root of the word when the prefix ends in a consonant
- and the root of the word begins with one of the following vowels: <foreignphrase
- xml:lang="ru">Я, Ю, E, E</foreignphrase>.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Practice reading the following words:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="3">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">объе́зд</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">подъём</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">подъе́зд</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">объе́кт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">съезд</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">въезд</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">субъе́кт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">объём</foreignphrase></entry>
- <entry/>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- </orderedlist>
- <?custom-pagebreak?>
- <section>
- <title><foreignphrase xml:lang="ru">Упражне́ние</foreignphrase> №1.</title>
- <para>Read through the following list of places you might want to visit.</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="2">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">ка́сса</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">кино́</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">теа́тр</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">стадио́н</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">шко́ла</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">цирк</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Москва́</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">магази́н</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">рестора́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Кремль</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">парк</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">мавзоле́й</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">университе́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">фе́рма</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">зоопа́рк</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">банк</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">музе́й</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">галере́я</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">планета́рий</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">буфе́т</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">бар</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">храм</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">вы́ставка</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Я́лта</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Росси́я</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">консервато́рия</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </section>
- <?custom-pagebreak?>
- <section>
- <title><foreignphrase xml:lang="ru">Упражне́ние</foreignphrase> №2.</title>
- <para>Draw a line between the words which are logically related to each other.</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="2">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">футбо́л</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Толсто́й</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">меню́</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">стадио́н</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">зоопа́рк</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">фильм</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">кино́</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">рестора́н</foreignphrase></entry>
- </row>
- <row>
- <entry>"<foreignphrase xml:lang="ru">А́нна Каре́нина</foreignphrase>"</entry>
- <entry><foreignphrase xml:lang="ru">медицин́а</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">литр</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">бензи́н</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">кафе́</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">жира́ф</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">газе́та</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">университе́т</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">орке́стр</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">фе́рма</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ка́сса</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">конце́рт</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">гастроно́м</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">стюарде́сса</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">аэрофло́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">биле́т</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">до́ктор</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ко́фе</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">студе́нт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">пра́вда</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">тра́ктор</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">магази́н</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </section>
- <section>
- <title><foreignphrase xml:lang="ru">Упражне́ние</foreignphrase> №3.</title>
- <para>Unscramble the following words. Use the answers below for help.</para>
- <informaltable pgwide="1">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="5cm"/>
- <colspec colname="c2" colnum="2" colwidth="*"/>
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">юмне</foreignphrase></entry>
- <entry/>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">нмдиоа</foreignphrase></entry>
- <entry/>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">aсack</foreignphrase></entry>
- <entry/>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">еофк</foreignphrase></entry>
- <entry/>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">толфэаро</foreignphrase></entry>
- <entry/>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">тбуеф</foreignphrase></entry>
- <entry/>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">иреениусвтт</foreignphrase></entry>
- <entry/>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">amoвck</foreignphrase></entry>
- <entry/>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ягаелре</foreignphrase></entry>
- <entry/>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">рсотппа</foreignphrase></entry>
- <entry/>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ральбву</foreignphrase></entry>
- <entry/>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Answers:</para>
- <para><foreignphrase xml:lang="ru">ка́сса</foreignphrase>, <foreignphrase xml:lang="ru"
- >Москва́</foreignphrase>, <foreignphrase xml:lang="ru">па́спорт</foreignphrase>,
- <foreignphrase xml:lang="ru">ко́фе</foreignphrase>, <foreignphrase xml:lang="ru"
- >университе́т</foreignphrase>,<foreignphrase xml:lang="ru"> галере́я</foreignphrase>,
- <foreignphrase xml:lang="ru">меню́</foreignphrase>, <foreignphrase xml:lang="ru"
- >буфе́т</foreignphrase>, <foreignphrase xml:lang="ru"
- >Дина́мо</foreignphrase>,<foreignphrase xml:lang="ru">
- аэрофло́т</foreignphrase>,<foreignphrase xml:lang="ru"> бульва́р</foreignphrase>.</para>
- </section>
- <?custom-pagebreak?>
- <section>
- <title><foreignphrase xml:lang="ru">Упражне́ние</foreignphrase> №4.</title>
- <para>Make as many Russian words as you can using each letter only once. Start each word with
- one of the capitalized letters.</para>
- <para><emphasis role="bold">К</emphasis>ефютро<emphasis role="bold">Ф</emphasis>обфо<emphasis
- role="bold">Б</emphasis>о<emphasis role="bold">С</emphasis>зло<emphasis role="bold"
- >Ф</emphasis>оуют</para>
- <orderedlist>
- <listitem>
- <para>Ф<replaceable>---</replaceable></para>
- </listitem>
- <listitem>
- <para>К<replaceable>---</replaceable></para>
- </listitem>
- <listitem>
- <para>Ф<replaceable>---</replaceable></para>
- </listitem>
- <listitem>
- <para>Б<replaceable>---</replaceable></para>
- </listitem>
- <listitem>
- <para>С<replaceable>---</replaceable></para>
- </listitem>
- </orderedlist>
- </section>
- <section>
- <title><foreignphrase xml:lang="ru">Упражне́ние</foreignphrase> №5.</title>
- <para>This is a listening comprehension exercise. Number the words according to the sequence
- in which your teacher will read them aloud.</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="4">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">музе́й</foreignphrase></entry>
- <entry><replaceable>_____</replaceable></entry>
- <entry><foreignphrase xml:lang="ru">гастроно́м</foreignphrase></entry>
- <entry><replaceable>_____</replaceable></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">а́рмия</foreignphrase></entry>
- <entry><replaceable>_____</replaceable></entry>
- <entry><foreignphrase xml:lang="ru">газе́та</foreignphrase></entry>
- <entry><replaceable>_____</replaceable></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">гита́ра</foreignphrase></entry>
- <entry><replaceable>_____</replaceable></entry>
- <entry><foreignphrase xml:lang="ru">кафе́</foreignphrase></entry>
- <entry><replaceable>_____</replaceable></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">журна́л</foreignphrase></entry>
- <entry><replaceable>_____</replaceable></entry>
- <entry><foreignphrase xml:lang="ru">дя́дя</foreignphrase></entry>
- <entry><replaceable>_____</replaceable></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">штат</foreignphrase></entry>
- <entry><replaceable>_____</replaceable></entry>
- <entry><foreignphrase xml:lang="ru">сою́з</foreignphrase></entry>
- <entry>-----</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </section>
- </section>
- <?custom-pagebreak?>
- <section>
- <title>Russian phonetics</title>
- <para>In order to speak Russian well, you must become fully acquainted with the phonetics of the
- language. The task is both a simple and a difficult one as you have already seen, now that you
- know the alphabet well. In this lesson we will work on the basics of Russian pronunciation;
- specifically on the distinctions between "soft" {palatalized) consonants and "hard" ones {non-
- palatalized); how these differences are indicated in the orthography (writing system) and how
- they are manifested in the actual pronunciation of words.</para>
- <formalpara>
- <title>"Hard" and "soft" consonants</title>
- <para>When we say that Russian has 20 consonants, we are referring only to the 20 consonant
- symbols in the alphabet. In reality, Russian has nearly twice that number of consonant
- sounds due to something called "palatalization", or "softening". All this means is that
- certain consonants can be slightly modified by arching your tongue and moving it forward,
- towards the hard palate area (that ridge on the roof of your mouth where your upper teeth
- fit in) while making the consonant sound. The effect is to make the sound "softer" and, in
- terms of pitch, slightly higher. The best mechanism for a good, palatalized consonant sound
- is to SMILE while pronouncing. Try it ~ it really works! Now you know how to make the sound.
- But how will you know when! Consonants which can be palatalized (all of them EXCEPT
- <emphasis role="bold"><foreignphrase xml:lang="ru">ж</foreignphrase></emphasis>, <emphasis
- role="bold"><foreignphrase xml:lang="ru">ш</foreignphrase></emphasis> and <emphasis
- role="bold"><foreignphrase xml:lang="ru">ц</foreignphrase></emphasis>) will be pronounced
- palatalized when you see them followed by:</para>
- </formalpara>
- <para>- the "soft sign"<emphasis role="bold">
- <foreignphrase xml:lang="ru">ь</foreignphrase></emphasis> (usually at the end of a
- word)</para>
- <para>OR:</para>
- <para>-one of these vowel symbols:<emphasis role="bold">
- <foreignphrase xml:lang="ru">я</foreignphrase>, <foreignphrase xml:lang="ru"
- >е</foreignphrase>, <foreignphrase xml:lang="ru">ё</foreignphrase>, <foreignphrase
- xml:lang="ru">ю</foreignphrase>, <foreignphrase xml:lang="ru">и</foreignphrase></emphasis>
- (called "indicator" vowels)</para>
- <para>The function of these vowel symbols is to indicate that the preceding consonant is
- pronounced in its "soft" variant. The consonant is then followed by the vowel sound: <emphasis
- role="bold"><foreignphrase xml:lang="ru">а</foreignphrase>, <foreignphrase xml:lang="ru"
- >э</foreignphrase>, <foreignphrase xml:lang="ru">о</foreignphrase>, <foreignphrase
- xml:lang="ru">у</foreignphrase></emphasis> or<emphasis role="bold">
- <foreignphrase xml:lang="ru">ы</foreignphrase></emphasis>.</para>
- <para>When any of the consonants listed above has no "soft sign" following it, or is followed by
- one of these vowel symbols:<emphasis role="bold">
- <foreignphrase xml:lang="ru">а</foreignphrase>, <foreignphrase xml:lang="ru"
- >э</foreignphrase>, <foreignphrase xml:lang="ru">о</foreignphrase>, <foreignphrase
- xml:lang="ru">у</foreignphrase>, <foreignphrase xml:lang="ru"
- >ы</foreignphrase></emphasis>, that consonant will be pronounced in its "hard" variant (no
- smiling allowed!).</para>
- <para><emphasis role="bold">KEEP IN MIND</emphasis>: <emphasis role="bold"><foreignphrase
- xml:lang="ru">Ч</foreignphrase></emphasis> and <emphasis role="bold"><foreignphrase
- xml:lang="ru">Щ</foreignphrase></emphasis> are always SOFT, no matter which vowel symbol
- follows them.<emphasis role="bold">
- <foreignphrase xml:lang="ru">Ж</foreignphrase></emphasis>, <emphasis role="bold"
- ><foreignphrase xml:lang="ru">Ш</foreignphrase></emphasis> and <emphasis role="bold"
- ><foreignphrase xml:lang="ru">Ц</foreignphrase></emphasis> are always HARD, even if they
- are followed by a "soft sign" or one of the "indicator" vowel symbols.</para>
- </section>
- <?custom-pagebreak?>
- <section>
- <title>Practice in Russian phonetics</title>
- <para>Listen carefully as your instructor reads the following pairs aloud. Try to detect the
- (subtle) difference between the "hard" consonant sound (the first in the pair) and the "soft"
- consonant sound. Notice also the differences in the orthography.</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="5">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">6a</foreignphrase> - <foreignphrase xml:lang="ru"
- >бя</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">бэ</foreignphrase> - <foreignphrase xml:lang="ru"
- >бе</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">бо</foreignphrase> - <foreignphrase xml:lang="ru"
- >бё</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">бу</foreignphrase> - <foreignphrase xml:lang="ru"
- >бю</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">бы</foreignphrase> - <foreignphrase xml:lang="ru"
- >би</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">па</foreignphrase> - <foreignphrase xml:lang="ru"
- >пя</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">пэ</foreignphrase> - <foreignphrase xml:lang="ru"
- >пе</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">по</foreignphrase> - <foreignphrase xml:lang="ru"
- >пё</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">пу</foreignphrase> - <foreignphrase xml:lang="ru"
- >пю</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">пы</foreignphrase> - <foreignphrase xml:lang="ru"
- >пи</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ва</foreignphrase> - <foreignphrase xml:lang="ru"
- >вя</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">вэ</foreignphrase> - <foreignphrase xml:lang="ru"
- >ве</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">во</foreignphrase> — <foreignphrase xml:lang="ru"
- >вё</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ву</foreignphrase> - <foreignphrase xml:lang="ru"
- >вю</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">вы</foreignphrase> - <foreignphrase xml:lang="ru"
- >ви</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">фа</foreignphrase> - <foreignphrase xml:lang="ru"
- >фя</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">фэ</foreignphrase> - <foreignphrase xml:lang="ru"
- >фе</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">фо</foreignphrase> - <foreignphrase xml:lang="ru"
- >фё</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">фу</foreignphrase> - <foreignphrase xml:lang="ru"
- >фю</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">фы</foreignphrase> — <foreignphrase xml:lang="ru"
- >фи</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">да</foreignphrase> - <foreignphrase xml:lang="ru"
- >дя</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">дэ</foreignphrase> - <foreignphrase xml:lang="ru"
- >де</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">до</foreignphrase> - <foreignphrase xml:lang="ru"
- >дё</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ду</foreignphrase> - <foreignphrase xml:lang="ru"
- >дю</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ды</foreignphrase> - <foreignphrase xml:lang="ru"
- >ди</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">та</foreignphrase> - <foreignphrase xml:lang="ru"
- >тя</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">тэ</foreignphrase> - <foreignphrase xml:lang="ru"
- >те</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">то</foreignphrase> - <foreignphrase xml:lang="ru"
- >те</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ту</foreignphrase> - <foreignphrase xml:lang="ru"
- >тю</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ты</foreignphrase> - <foreignphrase xml:lang="ru"
- >ти</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">за</foreignphrase> - <foreignphrase xml:lang="ru"
- >зя</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">зэ</foreignphrase> - <foreignphrase xml:lang="ru"
- >зе</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">зо</foreignphrase> - <foreignphrase xml:lang="ru"
- >зё</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">зу</foreignphrase> - <foreignphrase xml:lang="ru"
- >зю</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">зы</foreignphrase> - <foreignphrase xml:lang="ru"
- >зи</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">са</foreignphrase> - <foreignphrase xml:lang="ru"
- >ся</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">сэ</foreignphrase> - <foreignphrase xml:lang="ru"
- >се</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">со</foreignphrase> - <foreignphrase xml:lang="ru"
- >сё</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">су</foreignphrase> - <foreignphrase xml:lang="ru"
- >сю</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">сы</foreignphrase> - <foreignphrase xml:lang="ru"
- >си</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ла</foreignphrase> - <foreignphrase xml:lang="ru"
- >ля</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">лэ</foreignphrase> - <foreignphrase xml:lang="ru"
- >ле</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ло</foreignphrase> - <foreignphrase xml:lang="ru"
- >лё</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">лу</foreignphrase> - <foreignphrase xml:lang="ru"
- >лю</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">лы</foreignphrase> - <foreignphrase xml:lang="ru"
- >ли</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ма</foreignphrase> - <foreignphrase xml:lang="ru"
- >мя</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">мэ</foreignphrase> - <foreignphrase xml:lang="ru"
- >ме</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">мо</foreignphrase> - <foreignphrase xml:lang="ru"
- >мё</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">му</foreignphrase> - <foreignphrase xml:lang="ru"
- >мю</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">мы</foreignphrase> - <foreignphrase xml:lang="ru"
- >ми</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">на</foreignphrase> - <foreignphrase xml:lang="ru"
- >ня</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">нэ</foreignphrase> - <foreignphrase xml:lang="ru"
- >не</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">но</foreignphrase> - <foreignphrase xml:lang="ru"
- >не</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ну</foreignphrase> - <foreignphrase xml:lang="ru"
- >ню</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ны</foreignphrase> - <foreignphrase xml:lang="ru"
- >ни</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>Listen carefully as your instructor reads the following words aloud. Pay close attention
- to the differences between the "soft" consonants (look for the vowels <foreignphrase
- xml:lang="ru">я</foreignphrase>, <foreignphrase xml:lang="ru">е</foreignphrase>,
- <foreignphrase xml:lang="ru">ё</foreignphrase>, <foreignphrase xml:lang="ru"
- >ю</foreignphrase> and <foreignphrase xml:lang="ru">и</foreignphrase> or the "soft sign"
- <foreignphrase xml:lang="ru">ь</foreignphrase>) and the "hard" ones.</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="3">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">ма́сса</foreignphrase> - <foreignphrase
- xml:lang="ru">мя́со</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">па́па</foreignphrase> - <foreignphrase xml:lang="ru"
- >пять</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">на́ша</foreignphrase> - <foreignphrase xml:lang="ru"
- >ня́ня</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">мы́ло</foreignphrase> - <foreignphrase xml:lang="ru"
- >Ми́ла</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">был</foreignphrase> - <foreignphrase xml:lang="ru"
- >бил</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ма́ма</foreignphrase> - <foreignphrase xml:lang="ru"
- >мя́та</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ви́ски</foreignphrase> - <foreignphrase
- xml:lang="ru">вы́ставка</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">сын</foreignphrase> - <foreignphrase xml:lang="ru"
- >си́ний</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">да́та</foreignphrase> - <foreignphrase xml:lang="ru"
- >дя́дя</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">пыль</foreignphrase> - <foreignphrase xml:lang="ru"
- >пил</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">лук</foreignphrase> - <foreignphrase xml:lang="ru"
- >люк</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Во́лга</foreignphrase> - <foreignphrase
- xml:lang="ru">О́льга</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">рысь</foreignphrase> - <foreignphrase xml:lang="ru"
- >рис</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">пар</foreignphrase> - <foreignphrase xml:lang="ru"
- >царь</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">стол</foreignphrase> - <foreignphrase xml:lang="ru"
- >сто́лько</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">брат</foreignphrase> - <foreignphrase xml:lang="ru"
- >брать</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">нос</foreignphrase> - <foreignphrase xml:lang="ru"
- >нёс</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Дон</foreignphrase> - <foreignphrase xml:lang="ru"
- >день</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">кафе</foreignphrase>́ - <foreignphrase xml:lang="ru"
- >Фе́дя</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">мэр</foreignphrase> - <foreignphrase xml:lang="ru"
- >ме́ра</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ты</foreignphrase> - <foreignphrase xml:lang="ru"
- >тигр</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </section>
- <?custom-pagebreak?>
- <section>
- <title>Spelling and pronunciation</title>
- <para>In an ideal world, words will be pronounced just as they are written. However, since we do
- not live in an ideal world, we see that the pronunciation of certain words does not always
- correspond to their written representation. This is true not only in Russian, but in numerous
- other languages as well, including English. For example: the о in women is pronounced as i;
- the initial w is not pronounced in write, and the t in action is pronounced as sh.</para>
- <para>Russian has a specific set of rules which govern those instances where spelling and
- pronunciation differ, and if you can master these rules, you will be well on your way to
- acquiring good pronunciation skills in Russian.</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup cols="2">
- <colspec colname="c1" colnum="1" colwidth="3cm"/>
- <colspec colname="c2" colnum="2" colwidth="1*"/>
- <tbody>
- <row>
- <entry>REMEMBER:</entry>
- <entry>
- <orderedlist>
- <listitem>
- <para>Vowels carry stress and in Russian the stress can fall on any syllable in a
- word.</para>
- </listitem>
- <listitem>
- <para>Russian words have only one stress.</para>
- </listitem>
- <listitem>
- <para>Stress is not part of Russian orthography. However, many teaching materials
- mark stress as an aid in learning.</para>
- </listitem>
- <listitem>
- <para>The way a vowel is pronounced depends on whether it is stressed or not. This
- is a very important rule and we'll discuss it in a little more detail in the
- next section.</para>
- </listitem>
- </orderedlist>
- </entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </section>
- <section>
- <title>Rule 1: the vowels o and a</title>
- <orderedlist>
- <listitem>
- <para>In Russian, the vowels о and a are pronounced as о and a only when they are stressed.
- Look at the following words and note the syllable which is stressed. Listen as your
- instructor reads these words aloud and repeat after him/her. You'll also find this
- exercise on the tape for this lesson.</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="5">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">торт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">вино́</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">лимо́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">патрио́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">бюро́</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">сорт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">но́рма</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">жарго́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Во́лга</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">кино́</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">зо́на</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">метро́</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">кио́ск</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ко́фе</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">но́мер</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- <listitem>
- <para>In Russian, the vowels о and a are pronounced as о and a only when they are stressed.
- Look at the following words and note the syllable which is stressed. Listen as your
- instructor reads these words aloud and repeat after him/her. You'll also find this
- exercise on the tape for this lesson. Now listen and repeat:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="4">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Москва́</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">конце́рт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">кана́л</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ава́нс</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">поэ́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">коме́та</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Кана́да</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">абсу́рд</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">рома́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">газе́та</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Пентаго́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ао́рта</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">хокке́й</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">бале́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">диплома́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">орке́стр</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">проте́ст</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">туале́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">аэропо́рт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">океа́н</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Толсто́й</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">бана́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">агроно́м</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">оме́га</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- <listitem>
- <para>In all other unstressed syllables both vowels <foreignphrase xml:lang="ru"
- >о</foreignphrase> and <foreignphrase xml:lang="ru">а</foreignphrase> are pronounced
- like the short, indistinct "a" in tuna. Look at the following words and note the syllable
- which is stressed. Now listen and repeat:</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="2">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">па́спорт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ма́ска</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">тра́ктор</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">га́мма</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">а'том</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">да́ча</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">до́ктор</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">самова́р</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">фо́то</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">стадио́н</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">э́кспорт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Дина́мо</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Ло́ндон</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">молоко́</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">хро́ника</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ка́ша</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">кли́мат</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">маши́на</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- </orderedlist>
- </section>
- <section>
- <title>Rule 2: The vowels <foreignphrase xml:lang="ru">е</foreignphrase> and <foreignphrase
- xml:lang="ru">я</foreignphrase></title>
- <orderedlist>
- <listitem>
- <para>In Russian the vowels e and я are given full pronunciation only when they are
- stressed. Listen as your instructor reads the following words then repeat after him/her.
- You'll also find this exercise on the tape for this lesson.</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="5">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">коме́та</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">дире́ктор</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">буфе́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">пять</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">я́хта</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">те́ма</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">биле́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">портфе́ль</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">я́блоко</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">семья́</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">текст</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Че́хов</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">фе́рма</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ребя́та</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Я́лта</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- <listitem>
- <para>When unstressed these vowels are pronounced as a short i. Listen as your instructor
- reads the following words then repeat after him/her. You'll also find this exercise on the
- tape for this lesson.</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="5">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">телефо́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">теа́тр</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">дека́брь</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">берёза</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">язы́к</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">рестора́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">винегре́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">планета́рий</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Япо́нец</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">янва́рь</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">но́мер</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">календа́рь</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">галере́я</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Япо́нка</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">яйцо́</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- </orderedlist>
- </section>
- <?custom-pagebreak?>
- <section>
- <title>Reading exercises</title>
- <para>Read the following words:</para>
- <itemizedlist>
- <listitem>
- <para>А</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="3">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Кенту́кки</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Гава́йи</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Джо́рджия</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Нева́да</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Луизиа́на</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Делавэ́р</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Миннесо́та</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Арканза́с</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Иллино́йс</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Вирджи́ния</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Миссу́ри</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Вайо́минг</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Пенсильва́ния</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Мэ́риленд</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Алаба́ма</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Калифо́рния</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Небра́ска</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Теннесси́</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Нью-Ге́мпшир</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Монта́на</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Виско́нсин</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Нью-Ме́ксико</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Нью-Йо́рк</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Колора́до</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Миссисси́пи</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Индиа́на</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Флори́да</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Конне́ктикут</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Аризо́на</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Мичига́н</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Вашингто́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Род-А́йленд</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Аля́ска</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Се́верная Кароли́на</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Массачу́сетс</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Ю́жная Дакот́а</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Ю́жная Кароли́на</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Теха́с</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Се́верная Дако́та</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">За́падная Вирджи́ния</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Оклахо́ма</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Ога́йо</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Вермо́нт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Айда́хо</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Мэн</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Нью-Дже́рси</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Ю́та</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Канза́с</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Орего́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">А́йова</foreignphrase></entry>
- <entry/>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- <listitem>
- <para>Б</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="3">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Ю́кон</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Саскачева́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Брита́нская Колу́мбия</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Альбе́рта</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Нью-Бра́нсуик</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Но́вая Шотла́ндия</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Квебе́к</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Манито́ба</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">О́стров Принс-Эдуа́рд</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Онта́рио</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Ньюфа́ундленд</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Се́веро-За́падные
- террито́рии</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- </itemizedlist>
- <?custom-pagebreak?>
- <section>
- <title><foreignphrase xml:lang="ru">Упражне́ние</foreignphrase> №7.</title>
- <para>Read through the list and circle the thirteen original states of the U.S.</para>
- <informaltable pgwide="1">
- <tgroup align="center" cols="3">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Кенту́кки</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Гава́йи</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Джо́рджия</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Нева́да</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Луизиа́на</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Делавэ́р</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Миннесо́та</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Арканза́с</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Иллино́йс</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Вирджи́ния</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Миссу́ри</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Вайо́минг</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Пенсильва́ния</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Мэ́риленд</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Алаба́ма</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Калифо́рния</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Небра́ска</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Теннесси́</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Нью-Ге́мпшир</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Монта́на</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Виско́нсин</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Нью-Ме́ксико</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Нью-Йо́рк</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Колора́до</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Миссисси́пи</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Индиа́на</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Флори́да</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Конне́ктикут</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Аризо́на</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Мичига́н</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Вашингто́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Род-А́йленд</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Аля́ска</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Се́верная Каролин́а</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Массачу́сетс</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Ю́жная Дако́та</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Ю́жная Каролин́а</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Теха́с</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Се́верная Дако́та</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">За́падная Вирджи́ния</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Оклахо́ма</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Ога́йо</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Вермо́нт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Айда́хо</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Мэн</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Нью-Дже́рси</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Ю́та</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Канза́с</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Орего́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">А́йова</foreignphrase></entry>
- <entry> </entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </section>
- <?custom-pagebreak?>
- <section>
- <title><foreignphrase xml:lang="ru">Упражне́ние</foreignphrase> №8.</title>
- <para>Read through this list of American cities and alphabetize them in the spaces
- provided.</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup cols="2" colsep="0">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Лос-А́нджелес</foreignphrase></entry>
- <entry>________________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Балтимо́р</foreignphrase></entry>
- <entry>________________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Сиэ́тл</foreignphrase></entry>
- <entry>________________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Атла́нта</foreignphrase></entry>
- <entry>________________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Ме́мфис</foreignphrase></entry>
- <entry>________________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Кли́вленд</foreignphrase></entry>
- <entry>________________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Чика́го</foreignphrase></entry>
- <entry>________________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Филаде́льфия</foreignphrase></entry>
- <entry>________________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Детро́йт</foreignphrase></entry>
- <entry>________________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Бу́ффало</foreignphrase></entry>
- <entry>________________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Пи́ттсбург</foreignphrase></entry>
- <entry>________________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Да́ллас</foreignphrase></entry>
- <entry>________________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Хью́стон</foreignphrase></entry>
- <entry>________________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Миннеа́полис</foreignphrase></entry>
- <entry>________________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Нью-Йо́рк</foreignphrase></entry>
- <entry>________________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Майа́ми</foreignphrase></entry>
- <entry>________________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Лас-Ве́гас</foreignphrase></entry>
- <entry>________________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Сан-Франци́ско</foreignphrase></entry>
- <entry>________________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Бо́стон</foreignphrase></entry>
- <entry>________________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Цинцинна́ти</foreignphrase></entry>
- <entry>________________________________</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </section>
- <?custom-pagebreak?>
- <section>
- <title><foreignphrase xml:lang="ru">Упражне́ние</foreignphrase> №9.</title>
- <para/>
- <itemizedlist>
- <listitem>
- <para>А</para>
- <para>Below are 2 columns of words. Your instructor will read aloud one word at a time.
- Find that word and give its number.</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="4">
- <tbody>
- <row>
- <entry>1</entry>
- <entry><foreignphrase xml:lang="ru">арти́ст</foreignphrase></entry>
- <entry>6</entry>
- <entry><foreignphrase xml:lang="ru">идеали́ст</foreignphrase></entry>
- </row>
- <row>
- <entry>2</entry>
- <entry><foreignphrase xml:lang="ru">адмира́л</foreignphrase></entry>
- <entry>7</entry>
- <entry><foreignphrase xml:lang="ru">ана́лиз</foreignphrase></entry>
- </row>
- <row>
- <entry>3</entry>
- <entry><foreignphrase xml:lang="ru">конце́рт</foreignphrase></entry>
- <entry>8</entry>
- <entry><foreignphrase xml:lang="ru">сона́та</foreignphrase></entry>
- </row>
- <row>
- <entry>4</entry>
- <entry><foreignphrase xml:lang="ru">систе́ма</foreignphrase></entry>
- <entry>9</entry>
- <entry><foreignphrase xml:lang="ru">конститу́ция</foreignphrase></entry>
- </row>
- <row>
- <entry>5</entry>
- <entry><foreignphrase xml:lang="ru">контра́кт</foreignphrase></entry>
- <entry>10</entry>
- <entry><foreignphrase xml:lang="ru">конта́кт</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- <listitem>
- <para>Б</para>
- <para>On the numbered lines below, write down, in the order they are read, the words your
- instructor will dictate from the list above.</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="4">
- <tbody>
- <row>
- <entry>1</entry>
- <entry>______________________</entry>
- <entry>6</entry>
- <entry>______________________</entry>
- </row>
- <row>
- <entry>2</entry>
- <entry>______________________</entry>
- <entry>7</entry>
- <entry>______________________</entry>
- </row>
- <row>
- <entry>3</entry>
- <entry>______________________</entry>
- <entry>8</entry>
- <entry>______________________</entry>
- </row>
- <row>
- <entry>4</entry>
- <entry>______________________</entry>
- <entry>9</entry>
- <entry>______________________</entry>
- </row>
- <row>
- <entry>5</entry>
- <entry>______________________</entry>
- <entry>10</entry>
- <entry>______________________</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- </itemizedlist>
- </section>
- <?custom-pagebreak?>
- <section>
- <title><foreignphrase xml:lang="ru">Упражне́ние</foreignphrase> №10.</title>
- <itemizedlist>
- <listitem>
- <para>А</para>
- <para>Below are 2 columns of words. Your instructor will read aloud one word at a time.
- Find that word and give its number.</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="4">
- <tbody>
- <row>
- <entry>1</entry>
- <entry><foreignphrase xml:lang="ru">а́лгебра</foreignphrase></entry>
- <entry>6</entry>
- <entry><foreignphrase xml:lang="ru">акце́нт</foreignphrase></entry>
- </row>
- <row>
- <entry>2</entry>
- <entry><foreignphrase xml:lang="ru">гондо́ла</foreignphrase></entry>
- <entry>7</entry>
- <entry><foreignphrase xml:lang="ru">генера́л</foreignphrase></entry>
- </row>
- <row>
- <entry>3</entry>
- <entry><foreignphrase xml:lang="ru">ве́то</foreignphrase></entry>
- <entry>8</entry>
- <entry><foreignphrase xml:lang="ru">депо́</foreignphrase></entry>
- </row>
- <row>
- <entry>4</entry>
- <entry><foreignphrase xml:lang="ru">аргуме́нт</foreignphrase></entry>
- <entry>9</entry>
- <entry><foreignphrase xml:lang="ru">аге́нт</foreignphrase></entry>
- </row>
- <row>
- <entry>5</entry>
- <entry><foreignphrase xml:lang="ru">э́ра</foreignphrase></entry>
- <entry>10</entry>
- <entry><foreignphrase xml:lang="ru">а́рка</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- <listitem>
- <para>Б</para>
- <para>On the numbered lines below, write down, in the order they are read, the words your
- instructor will dictate from the list above.</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="4">
- <tbody>
- <row>
- <entry>1</entry>
- <entry>______________________</entry>
- <entry>6</entry>
- <entry>______________________</entry>
- </row>
- <row>
- <entry>2</entry>
- <entry>______________________</entry>
- <entry>7</entry>
- <entry>______________________</entry>
- </row>
- <row>
- <entry>3</entry>
- <entry>______________________</entry>
- <entry>8</entry>
- <entry>______________________</entry>
- </row>
- <row>
- <entry>4</entry>
- <entry>______________________</entry>
- <entry>9</entry>
- <entry>______________________</entry>
- </row>
- <row>
- <entry>5</entry>
- <entry>______________________</entry>
- <entry>10</entry>
- <entry>______________________</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- </itemizedlist>
- </section>
- <?custom-pagebreak?>
- <section>
- <title><foreignphrase xml:lang="ru">Упражне́ние</foreignphrase> №11.</title>
- <itemizedlist>
- <listitem>
- <para>А</para>
- <para>Below are 2 columns of words. Your instructor will read aloud one word at a time.
- Find that word and give its number.</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="4">
- <tbody>
- <row>
- <entry>1</entry>
- <entry><foreignphrase xml:lang="ru">поли́ция</foreignphrase></entry>
- <entry>6</entry>
- <entry><foreignphrase xml:lang="ru">пози́ция</foreignphrase></entry>
- </row>
- <row>
- <entry>2</entry>
- <entry><foreignphrase xml:lang="ru">инста́нция</foreignphrase></entry>
- <entry>7</entry>
- <entry><foreignphrase xml:lang="ru">диста́нция</foreignphrase></entry>
- </row>
- <row>
- <entry>3</entry>
- <entry><foreignphrase xml:lang="ru">юсти́ция</foreignphrase></entry>
- <entry>8</entry>
- <entry><foreignphrase xml:lang="ru">констру́кция</foreignphrase></entry>
- </row>
- <row>
- <entry>4</entry>
- <entry><foreignphrase xml:lang="ru">фа́за</foreignphrase></entry>
- <entry>9</entry>
- <entry><foreignphrase xml:lang="ru">фра́за</foreignphrase></entry>
- </row>
- <row>
- <entry>5</entry>
- <entry><foreignphrase xml:lang="ru">балла́ст</foreignphrase></entry>
- <entry>10</entry>
- <entry><foreignphrase xml:lang="ru">акт</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- <listitem>
- <para>Б</para>
- <para>On the numbered lines below, write down, in the order they are read, the words your
- instructor will dictate from the list above.</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="4">
- <tbody>
- <row>
- <entry>1</entry>
- <entry>______________________</entry>
- <entry>6</entry>
- <entry>______________________</entry>
- </row>
- <row>
- <entry>2</entry>
- <entry>______________________</entry>
- <entry>7</entry>
- <entry>______________________</entry>
- </row>
- <row>
- <entry>3</entry>
- <entry>______________________</entry>
- <entry>8</entry>
- <entry>______________________</entry>
- </row>
- <row>
- <entry>4</entry>
- <entry>______________________</entry>
- <entry>9</entry>
- <entry>______________________</entry>
- </row>
- <row>
- <entry>5</entry>
- <entry>______________________</entry>
- <entry>10</entry>
- <entry>______________________</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- </itemizedlist>
- </section>
- <?custom-pagebreak?>
- <section>
- <title><foreignphrase xml:lang="ru">Упражне́ние</foreignphrase> №12.</title>
- <itemizedlist>
- <listitem>
- <para>А</para>
- <para>Below are 2 columns of words. Your instructor will read aloud one word at a time.
- Find that word and give its number.</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="4">
- <tbody>
- <row>
- <entry>1</entry>
- <entry><foreignphrase xml:lang="ru">сена́тор</foreignphrase></entry>
- <entry>6</entry>
- <entry><foreignphrase xml:lang="ru">кента́вр</foreignphrase></entry>
- </row>
- <row>
- <entry>2</entry>
- <entry><foreignphrase xml:lang="ru">ли́дер</foreignphrase></entry>
- <entry>7</entry>
- <entry><foreignphrase xml:lang="ru">ла́йнер</foreignphrase></entry>
- </row>
- <row>
- <entry>3</entry>
- <entry><foreignphrase xml:lang="ru">кана́л</foreignphrase></entry>
- <entry>8</entry>
- <entry><foreignphrase xml:lang="ru">капита́л</foreignphrase></entry>
- </row>
- <row>
- <entry>4</entry>
- <entry><foreignphrase xml:lang="ru">цеме́нт</foreignphrase></entry>
- <entry>9</entry>
- <entry><foreignphrase xml:lang="ru">семина́р</foreignphrase></entry>
- </row>
- <row>
- <entry>5</entry>
- <entry><foreignphrase xml:lang="ru">инциде́нт</foreignphrase></entry>
- <entry>10</entry>
- <entry><foreignphrase xml:lang="ru">инструме́нт</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- <listitem>
- <para>Б</para>
- <para>On the numbered lines below, write down, in the order they are read, the words your
- instructor will dictate from the list above.</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="4">
- <tbody>
- <row>
- <entry>1</entry>
- <entry>______________________</entry>
- <entry>6</entry>
- <entry>______________________</entry>
- </row>
- <row>
- <entry>2</entry>
- <entry>______________________</entry>
- <entry>7</entry>
- <entry>______________________</entry>
- </row>
- <row>
- <entry>3</entry>
- <entry>______________________</entry>
- <entry>8</entry>
- <entry>______________________</entry>
- </row>
- <row>
- <entry>4</entry>
- <entry>______________________</entry>
- <entry>9</entry>
- <entry>______________________</entry>
- </row>
- <row>
- <entry>5</entry>
- <entry>______________________</entry>
- <entry>10</entry>
- <entry>______________________</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- </itemizedlist>
- </section>
- <?custom-pagebreak?>
- <section>
- <title><foreignphrase xml:lang="ru">Упражне́ние</foreignphrase> №13.</title>
- <para>Match the "isms" in the first column to the "ists" in the second column.</para>
- <itemizedlist>
- <listitem>
- <para>А</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="2">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">коммуни́зм</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">капитали́ст</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">капитали́зм</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">материали́ст</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">оптими́зм</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">пессими́ст</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">антагони́зм</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">антагони́ст</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">пессими́зм</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">атеи́ст</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">материали́зм</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">коммуни́ст</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">атеи́зм</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">тури́ст</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">тури́зм</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">социали́ст</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">социали́зм</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">оптими́ст</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- <listitem>
- <para>Б</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="2">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">индивидуали́зм</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">террори́ст</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">идеали́зм</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">маркси́ст</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">террори́зм</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">футури́ст</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">маркси́зм</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">индивидуали́ст</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">раси́зм</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">раси́ст</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">куби́зм</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">импрессиони́ст</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">футури́зм</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">куби́ст</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">эгои́зм</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">идеали́ст</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">импрессиони́зм</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">эгои́ст</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </listitem>
- </itemizedlist>
- </section>
- <?custom-pagebreak?>
- <section>
- <title><foreignphrase xml:lang="ru">Упражне́ние</foreignphrase> №14.</title>
- <para>Read through the following list of people. In the space provided below sort them
- according to their country.</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="4">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Вашингто́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Шекспи́р</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Толсто́й</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Пу́шкин</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Ли́кольн</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Твен</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Да́рвин</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Пасте́р</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Нью́тон</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Бальза́к</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Че́рчилль</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Кюри́</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Менделе́ев</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Э́дисон</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Достое́вский</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Гюго́</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <orderedlist>
- <listitem>
- <para><foreignphrase xml:lang="ru">Аме́рика</foreignphrase></para>
- </listitem>
- <listitem>
- <para><foreignphrase xml:lang="ru">А́нглия</foreignphrase></para>
- </listitem>
- <listitem>
- <para><foreignphrase xml:lang="ru">Росси́я</foreignphrase></para>
- </listitem>
- <listitem>
- <para><foreignphrase xml:lang="ru">Фра́нция</foreignphrase></para>
- </listitem>
- </orderedlist>
- </section>
- <?custom-pagebreak?>
- <section>
- <title><foreignphrase xml:lang="ru">Упражне́ние</foreignphrase> №15.</title>
- <para>Read through the following list of people. In the space provided below sort them
- according to their professions.</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="4">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Чайко́вский</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Тициа́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Эйнште́йн</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Фо́лкнер</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Бетхо́вен</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Рафаэ́ль</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Ге́ршвин</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Марко́ни</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Че́хов</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Ба́йрон</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Галлиле́й</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Шопе́н</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Копе́рник</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Сартр</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Ван-Го́г</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">Ру́бенс</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <orderedlist>
- <listitem>
- <para><foreignphrase xml:lang="ru">худо́жники</foreignphrase></para>
- </listitem>
- <listitem>
- <para><foreignphrase xml:lang="ru">писа́тели</foreignphrase></para>
- </listitem>
- <listitem>
- <para><foreignphrase xml:lang="ru">учёные</foreignphrase></para>
- </listitem>
- <listitem>
- <para><foreignphrase xml:lang="ru">компози́торы</foreignphrase></para>
- </listitem>
- </orderedlist>
- </section>
- <?custom-pagebreak?>
- <section>
- <title><foreignphrase xml:lang="ru">Упражне́ние</foreignphrase> №16.</title>
- <para>Alphabetize the professions and occupations given below.</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="2">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">арти́ст</foreignphrase></entry>
- <entry>_________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">до́ктор</foreignphrase></entry>
- <entry>_________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">инжене́р</foreignphrase></entry>
- <entry>_________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">дире́ктор</foreignphrase></entry>
- <entry>_________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">балери́на</foreignphrase></entry>
- <entry>_________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">журнали́ст</foreignphrase></entry>
- <entry>_________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">лингви́ст</foreignphrase></entry>
- <entry>_________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">корреспонде́нт</foreignphrase></entry>
- <entry>_________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">меха́ник</foreignphrase></entry>
- <entry>_________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">кло́ун</foreignphrase></entry>
- <entry>_________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">агроно́м</foreignphrase></entry>
- <entry>_________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">касси́р</foreignphrase></entry>
- <entry>_________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">архите́ктор</foreignphrase></entry>
- <entry>_________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">шофёр</foreignphrase></entry>
- <entry>_________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">фото́граф</foreignphrase></entry>
- <entry>_________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">профе́ссор</foreignphrase></entry>
- <entry>_________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">адвока́т</foreignphrase></entry>
- <entry>_________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">студе́нт</foreignphrase></entry>
- <entry>_________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">атле́т</foreignphrase></entry>
- <entry>_________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">музыка́нт</foreignphrase></entry>
- <entry>_________________________</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">диплома́т</foreignphrase></entry>
- <entry>_________________________</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </section>
- <?custom-pagebreak?>
- <section>
- <title><foreignphrase xml:lang="ru">Упражне́ние</foreignphrase> №17.</title>
- <para>Read through the following list. In the space provided below sort the words according to
- the categories indicated.</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="3">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">посо́л</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">хоккеи́ст</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">студе́нт</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">терапе́вт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">диплома́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">музыка́нт</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">атташе́</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">балери́на</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">кардио́лог</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">актёр</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ко́нсул</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">атле́т</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">футболи́ст</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">актри́са</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">дека́н</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">спортсме́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">ре́ктор</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">профес́сор</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">педиа́тр</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">мини́стр</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">до́ктор</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">президе́нт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">депута́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">вице-президе́нт</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <orderedlist>
- <listitem>
- <para><foreignphrase xml:lang="ru">Кремль</foreignphrase></para>
- </listitem>
- <listitem>
- <para><foreignphrase xml:lang="ru">стадио́н</foreignphrase></para>
- </listitem>
- <listitem>
- <para><foreignphrase xml:lang="ru">теа́тр</foreignphrase></para>
- </listitem>
- <listitem>
- <para><foreignphrase xml:lang="ru">университе́т</foreignphrase></para>
- </listitem>
- <listitem>
- <para><foreignphrase xml:lang="ru">больн́ица</foreignphrase></para>
- </listitem>
- <listitem>
- <para><foreignphrase xml:lang="ru">посо́льство</foreignphrase></para>
- </listitem>
- </orderedlist>
- </section>
- <?custom-pagebreak?>
- <section>
- <title><foreignphrase xml:lang="ru">Упражне́ние</foreignphrase> №18.</title>
- <para>Read through the following list. In the space provided below sort the words according to
- the categories indicated.</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="3">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">рестора́н</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">вокза́л</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">институ́т</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">амбулато́рия</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">буфе́т</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">университе́т</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">бульва́р</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">порт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">лаборато́рия</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">парк</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">кафе́</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">поликли́ника</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ку́рсы</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">сквер</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">го́спиталь</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">ста́нция</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">кафете́рий</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">шко́ла</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">проспе́кт</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">теа́тр</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">аэропо́рт</foreignphrase></entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">кинотеа́тр</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">музе́й</foreignphrase></entry>
- <entry><foreignphrase xml:lang="ru">филармо́ния</foreignphrase></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <orderedlist>
- <listitem>
- <para>eating out</para>
- </listitem>
- <listitem>
- <para>entertainment</para>
- </listitem>
- <listitem>
- <para>medicine</para>
- </listitem>
- <listitem>
- <para>transportation</para>
- </listitem>
- <listitem>
- <para>education</para>
- </listitem>
- <listitem>
- <para>places in the city</para>
- </listitem>
- </orderedlist>
- </section>
- </section>
- <?custom-pagebreak?>
- <section>
- <title>Learning Russian script</title>
- <para>So far, you have been dealing with Russian in its printed form. However, once in Russia
- you will frequently encounter letters, documents and materials which are in script or written
- out in longhand. You will also quickly discover that Russians, unlike Americans, will rarely
- print when writing by hand. Practice writing Russian script.</para>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup align="center" cols="3">
- <colspec colname="c1" colnum="1" colwidth="2cm"/>
- <colspec colname="c2" colnum="2" colwidth="2cm"/>
- <colspec colname="c3" colnum="3" colwidth="10cm"/>
- <tbody>
- <row>
- <entry valign="middle">А а</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0063-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">Б б</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0063-2.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">В в</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0063-3.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">Г г</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/G.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">Д д</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/D.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">Е е</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0063-4.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">Ё ё</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0063-5.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">Ж ж</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0063-6.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">З з</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0063-7.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">И и</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0063-8.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">Й й</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0064-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">К к</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0064-2.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">Л л</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0064-3.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">М м</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0064-4.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">Н н</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0064-5.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">О о</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0064-6.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">П п</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0064-7.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">Р р</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0064-8.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">С с</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0064-9.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">Т т</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0064-10.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">У у</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0064-11.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">Ф ф</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0064-12.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">Х х</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0064-13.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">Ц ц</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0064-14.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">Ч ч</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0064-15.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">Ш ш</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0065-1.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">Щ щ</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0065-2.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">Ъ</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0065-3.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">ы</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0065-4.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">ь</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0065-5.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">Э э</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0065-6.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">Ю ю</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0065-7.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- <row>
- <entry valign="middle">Я я</entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0065-8.png"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry valign="middle">_________________________</entry>
- </row>
- </tbody>
- </tgroup>
- <?custom-pagebreak?>
- </informaltable>
- <table pgwide="1">
- <title>The following table shows the Russian alphabet with approximate phonetic equivalents.
- Keep it handy as a reference.</title>
- <tgroup cols="4">
- <tbody>
- <row>
- <entry><foreignphrase xml:lang="ru">Aa</foreignphrase></entry>
- <entry>a as in father</entry>
- <entry><foreignphrase xml:lang="ru">Рp</foreignphrase></entry>
- <entry>trilled, flapped r</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Б6</foreignphrase></entry>
- <entry>b as in boat</entry>
- <entry><foreignphrase xml:lang="ru">Cc</foreignphrase></entry>
- <entry>s as in sew</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Bb</foreignphrase></entry>
- <entry>v as in vote</entry>
- <entry><foreignphrase xml:lang="ru">Tt</foreignphrase></entry>
- <entry>t as in top</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Гг</foreignphrase></entry>
- <entry>g as in goat</entry>
- <entry><foreignphrase xml:lang="ru">Уу</foreignphrase></entry>
- <entry>oo as in food</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Дд</foreignphrase></entry>
- <entry>d as in dog</entry>
- <entry><foreignphrase xml:lang="ru">Фф</foreignphrase></entry>
- <entry>f as in foot</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Сc</foreignphrase></entry>
- <entry>ye as in yet</entry>
- <entry><foreignphrase xml:lang="ru">Xx</foreignphrase></entry>
- <entry>j as in junta</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Её</foreignphrase></entry>
- <entry>yo as in yo-yo</entry>
- <entry><foreignphrase xml:lang="ru">Цц</foreignphrase></entry>
- <entry>ts as in lets</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Жж</foreignphrase></entry>
- <entry>s as in measure</entry>
- <entry><foreignphrase xml:lang="ru">Чч</foreignphrase></entry>
- <entry>ch as in chair</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Зз</foreignphrase></entry>
- <entry>z as in zoo</entry>
- <entry><foreignphrase xml:lang="ru">Шш</foreignphrase></entry>
- <entry>sh as in show</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Ии</foreignphrase></entry>
- <entry>ее as in mee</entry>
- <entry><foreignphrase xml:lang="ru">Щщ</foreignphrase></entry>
- <entry>sti as in question</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Ий</foreignphrase></entry>
- <entry>у as in boy</entry>
- <entry><foreignphrase xml:lang="ru">ъ</foreignphrase></entry>
- <entry>hard sign</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Кк</foreignphrase></entry>
- <entry>k as in kite</entry>
- <entry><foreignphrase xml:lang="ru">ы</foreignphrase></entry>
- <entry>short i as in milk</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Лл</foreignphrase></entry>
- <entry>1 as in loan</entry>
- <entry><foreignphrase xml:lang="ru">ь</foreignphrase></entry>
- <entry>soft sign</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Мм</foreignphrase></entry>
- <entry>m as in mop</entry>
- <entry><foreignphrase xml:lang="ru">Ээ</foreignphrase></entry>
- <entry>e as in let</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Нн</foreignphrase></entry>
- <entry>n as in no</entry>
- <entry><foreignphrase xml:lang="ru">Юю</foreignphrase></entry>
- <entry>as you</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Оо</foreignphrase></entry>
- <entry>о as in know</entry>
- <entry><foreignphrase xml:lang="ru">Яя</foreignphrase></entry>
- <entry>ya as in yard</entry>
- </row>
- <row>
- <entry><foreignphrase xml:lang="ru">Пп</foreignphrase></entry>
- <entry>p as in rope</entry>
- <entry/><entry/>
- </row>
- </tbody>
- </tgroup>
- </table>
- <?custom-pagebreak?>
- <informaltable colsep="0" frame="none" pgwide="1" rowsep="0">
- <tgroup cols="2">
- <tbody>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0067-1.png" width="7cm"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0067-2.png" width="7cm"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0067-3.png" width="7cm"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0067-4.png" width="7cm"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0067-5.png" width="7cm"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0067-6.png" width="7cm"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0067-7.png" width="7cm"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry morerows="1"><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/0067.png" width="7cm"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0067-10.png" width="7cm"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- <row>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0067-11.png" width="7cm"/>
- </imageobject>
- </inlinemediaobject></entry>
- <entry><inlinemediaobject>
- <imageobject>
- <imagedata fileref="Images/FSI-0067-12.png" width="7cm"/>
- </imageobject>
- </inlinemediaobject></entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <mediaobject>
- <imageobject>
- <imagedata align="center" fileref="Images/0068.png" width="18cm"/>
- </imageobject>
- </mediaobject>
- <mediaobject>
- <imageobject>
- <imagedata align="center" fileref="Images/0069.png" width="18cm"/>
- </imageobject>
- </mediaobject>
- <mediaobject>
- <imageobject>
- <imagedata align="center" fileref="Images/0070.png" width="18cm"/>
- </imageobject>
- </mediaobject>
- <mediaobject>
- <imageobject>
- <imagedata align="center" fileref="Images/0071.png" width="18cm"/>
- </imageobject>
- </mediaobject>
- </section>
- </chapter>
|