texlive-collection-latexextra-vl.spec 235 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075
  1. ## -*- coding: utf-8-unix -*-
  2. ## NOTE: This spec file is generated by tlpdb2rpmspec 2014-3:
  3. ## tlpdb2rpmspec collection-latexextra
  4. %global _use_internal_dependency_generator 0
  5. %global __find_provides %{nil}
  6. %global __find_requires %{nil}
  7. Summary: TeX Live: LaTeX additional packages
  8. Summary(ja): TeX Live: LaTeX additional packages
  9. Name: texlive-collection-latexextra
  10. Version: 2014
  11. Release: 3%{?_dist_release}
  12. License: LPPL, LPPL 1.3, Public Domain, GPL+, GPLv3+, LPPL 1.2, Freely redistributable without restriction, GPLv2+, LGPLv2+, ASL 2.0, BSD, Artistic
  13. Group: Applications/Publishing
  14. URL:http://www.tug.org/texlive/
  15. Source0: 2up.doc.tar.xz
  16. Source1: 2up.tar.xz
  17. Source2: ESIEEcv.doc.tar.xz
  18. Source3: ESIEEcv.source.tar.xz
  19. Source4: ESIEEcv.tar.xz
  20. Source5: GS1.doc.tar.xz
  21. Source6: GS1.source.tar.xz
  22. Source7: GS1.tar.xz
  23. Source8: HA-prosper.doc.tar.xz
  24. Source9: HA-prosper.source.tar.xz
  25. Source10: HA-prosper.tar.xz
  26. Source11: Tabbing.doc.tar.xz
  27. Source12: Tabbing.source.tar.xz
  28. Source13: Tabbing.tar.xz
  29. Source14: a0poster.doc.tar.xz
  30. Source15: a0poster.tar.xz
  31. Source16: a4wide.doc.tar.xz
  32. Source17: a4wide.tar.xz
  33. Source18: a5comb.doc.tar.xz
  34. Source19: a5comb.tar.xz
  35. Source20: abraces.doc.tar.xz
  36. Source21: abraces.tar.xz
  37. Source22: abstract.doc.tar.xz
  38. Source23: abstract.source.tar.xz
  39. Source24: abstract.tar.xz
  40. Source25: achemso.doc.tar.xz
  41. Source26: achemso.source.tar.xz
  42. Source27: achemso.tar.xz
  43. Source28: acro.doc.tar.xz
  44. Source29: acro.tar.xz
  45. Source30: acronym.doc.tar.xz
  46. Source31: acronym.source.tar.xz
  47. Source32: acronym.tar.xz
  48. Source33: acroterm.doc.tar.xz
  49. Source34: acroterm.source.tar.xz
  50. Source35: acroterm.tar.xz
  51. Source36: actuarialangle.doc.tar.xz
  52. Source37: actuarialangle.tar.xz
  53. Source38: addlines.doc.tar.xz
  54. Source39: addlines.source.tar.xz
  55. Source40: addlines.tar.xz
  56. Source41: adjmulticol.doc.tar.xz
  57. Source42: adjmulticol.source.tar.xz
  58. Source43: adjmulticol.tar.xz
  59. Source44: adjustbox.doc.tar.xz
  60. Source45: adjustbox.source.tar.xz
  61. Source46: adjustbox.tar.xz
  62. Source47: adrconv.doc.tar.xz
  63. Source48: adrconv.source.tar.xz
  64. Source49: adrconv.tar.xz
  65. Source50: advdate.doc.tar.xz
  66. Source51: advdate.tar.xz
  67. Source52: akktex.doc.tar.xz
  68. Source53: akktex.tar.xz
  69. Source54: akletter.doc.tar.xz
  70. Source55: akletter.tar.xz
  71. Source56: alnumsec.doc.tar.xz
  72. Source57: alnumsec.source.tar.xz
  73. Source58: alnumsec.tar.xz
  74. Source59: alterqcm.doc.tar.xz
  75. Source60: alterqcm.tar.xz
  76. Source61: altfont.doc.tar.xz
  77. Source62: altfont.source.tar.xz
  78. Source63: altfont.tar.xz
  79. Source64: amsaddr.doc.tar.xz
  80. Source65: amsaddr.source.tar.xz
  81. Source66: amsaddr.tar.xz
  82. Source67: animate.doc.tar.xz
  83. Source68: animate.tar.xz
  84. Source69: anonchap.doc.tar.xz
  85. Source70: anonchap.tar.xz
  86. Source71: answers.doc.tar.xz
  87. Source72: answers.source.tar.xz
  88. Source73: answers.tar.xz
  89. Source74: anyfontsize.doc.tar.xz
  90. Source75: anyfontsize.tar.xz
  91. Source76: appendix.doc.tar.xz
  92. Source77: appendix.source.tar.xz
  93. Source78: appendix.tar.xz
  94. Source79: appendixnumberbeamer.doc.tar.xz
  95. Source80: appendixnumberbeamer.tar.xz
  96. Source81: apptools.doc.tar.xz
  97. Source82: apptools.source.tar.xz
  98. Source83: apptools.tar.xz
  99. Source84: arcs.doc.tar.xz
  100. Source85: arcs.source.tar.xz
  101. Source86: arcs.tar.xz
  102. Source87: arrayjobx.doc.tar.xz
  103. Source88: arrayjobx.tar.xz
  104. Source89: arraysort.doc.tar.xz
  105. Source90: arraysort.source.tar.xz
  106. Source91: arraysort.tar.xz
  107. Source92: arydshln.doc.tar.xz
  108. Source93: arydshln.source.tar.xz
  109. Source94: arydshln.tar.xz
  110. Source95: assignment.doc.tar.xz
  111. Source96: assignment.tar.xz
  112. Source97: assoccnt.doc.tar.xz
  113. Source98: assoccnt.tar.xz
  114. Source99: attachfile.doc.tar.xz
  115. Source100: attachfile.source.tar.xz
  116. Source101: attachfile.tar.xz
  117. Source102: autopdf.doc.tar.xz
  118. Source103: autopdf.source.tar.xz
  119. Source104: autopdf.tar.xz
  120. Source105: authoraftertitle.doc.tar.xz
  121. Source106: authoraftertitle.tar.xz
  122. Source107: authorindex.doc.tar.xz
  123. Source108: authorindex.tar.xz
  124. Source109: autonum.doc.tar.xz
  125. Source110: autonum.source.tar.xz
  126. Source111: autonum.tar.xz
  127. Source112: avremu.doc.tar.xz
  128. Source113: avremu.source.tar.xz
  129. Source114: avremu.tar.xz
  130. Source115: background.doc.tar.xz
  131. Source116: background.source.tar.xz
  132. Source117: background.tar.xz
  133. Source118: bashful.doc.tar.xz
  134. Source119: bashful.tar.xz
  135. Source120: basicarith.doc.tar.xz
  136. Source121: basicarith.source.tar.xz
  137. Source122: basicarith.tar.xz
  138. Source123: bchart.doc.tar.xz
  139. Source124: bchart.tar.xz
  140. Source125: beamer2thesis.doc.tar.xz
  141. Source126: beamer2thesis.tar.xz
  142. Source127: beameraudience.doc.tar.xz
  143. Source128: beameraudience.tar.xz
  144. Source129: beamerdarkthemes.doc.tar.xz
  145. Source130: beamerdarkthemes.tar.xz
  146. Source131: beamerposter.doc.tar.xz
  147. Source132: beamerposter.tar.xz
  148. Source133: beamersubframe.doc.tar.xz
  149. Source134: beamersubframe.source.tar.xz
  150. Source135: beamersubframe.tar.xz
  151. Source136: beamertheme-upenn-bc.doc.tar.xz
  152. Source137: beamertheme-upenn-bc.tar.xz
  153. Source138: beamerthemejltree.tar.xz
  154. Source139: beamerthemenirma.doc.tar.xz
  155. Source140: beamerthemenirma.tar.xz
  156. Source141: beamerthemephnompenh.doc.tar.xz
  157. Source142: beamerthemephnompenh.tar.xz
  158. Source143: beton.doc.tar.xz
  159. Source144: beton.source.tar.xz
  160. Source145: beton.tar.xz
  161. Source146: bez123.doc.tar.xz
  162. Source147: bez123.source.tar.xz
  163. Source148: bez123.tar.xz
  164. Source149: bezos.doc.tar.xz
  165. Source150: bezos.tar.xz
  166. Source151: bhcexam.doc.tar.xz
  167. Source152: bhcexam.source.tar.xz
  168. Source153: bhcexam.tar.xz
  169. Source154: bigfoot.doc.tar.xz
  170. Source155: bigfoot.source.tar.xz
  171. Source156: bigfoot.tar.xz
  172. Source157: bigints.doc.tar.xz
  173. Source158: bigints.tar.xz
  174. Source159: bizcard.doc.tar.xz
  175. Source160: bizcard.source.tar.xz
  176. Source161: bizcard.tar.xz
  177. Source162: blindtext.doc.tar.xz
  178. Source163: blindtext.source.tar.xz
  179. Source164: blindtext.tar.xz
  180. Source165: blkarray.doc.tar.xz
  181. Source166: blkarray.tar.xz
  182. Source167: block.doc.tar.xz
  183. Source168: block.tar.xz
  184. Source169: blowup.doc.tar.xz
  185. Source170: blowup.source.tar.xz
  186. Source171: blowup.tar.xz
  187. Source172: bnumexpr.doc.tar.xz
  188. Source173: bnumexpr.source.tar.xz
  189. Source174: bnumexpr.tar.xz
  190. Source175: boites.doc.tar.xz
  191. Source176: boites.source.tar.xz
  192. Source177: boites.tar.xz
  193. Source178: bold-extra.doc.tar.xz
  194. Source179: bold-extra.tar.xz
  195. Source180: bookest.doc.tar.xz
  196. Source181: bookest.tar.xz
  197. Source182: booklet.doc.tar.xz
  198. Source183: booklet.source.tar.xz
  199. Source184: booklet.tar.xz
  200. Source185: boolexpr.doc.tar.xz
  201. Source186: boolexpr.source.tar.xz
  202. Source187: boolexpr.tar.xz
  203. Source188: bophook.doc.tar.xz
  204. Source189: bophook.source.tar.xz
  205. Source190: bophook.tar.xz
  206. Source191: boxedminipage.doc.tar.xz
  207. Source192: boxedminipage.tar.xz
  208. Source193: boxhandler.doc.tar.xz
  209. Source194: boxhandler.source.tar.xz
  210. Source195: boxhandler.tar.xz
  211. Source196: bracketkey.doc.tar.xz
  212. Source197: bracketkey.tar.xz
  213. Source198: braket.doc.tar.xz
  214. Source199: braket.tar.xz
  215. Source200: breakurl.doc.tar.xz
  216. Source201: breakurl.source.tar.xz
  217. Source202: breakurl.tar.xz
  218. Source203: bullcntr.doc.tar.xz
  219. Source204: bullcntr.source.tar.xz
  220. Source205: bullcntr.tar.xz
  221. Source206: bussproofs.doc.tar.xz
  222. Source207: bussproofs.tar.xz
  223. Source208: bxdpx-beamer.doc.tar.xz
  224. Source209: bxdpx-beamer.tar.xz
  225. Source210: calcage.doc.tar.xz
  226. Source211: calcage.source.tar.xz
  227. Source212: calcage.tar.xz
  228. Source213: calctab.doc.tar.xz
  229. Source214: calctab.tar.xz
  230. Source215: calculator.doc.tar.xz
  231. Source216: calculator.source.tar.xz
  232. Source217: calculator.tar.xz
  233. Source218: calrsfs.doc.tar.xz
  234. Source219: calrsfs.tar.xz
  235. Source220: cals.doc.tar.xz
  236. Source221: cals.source.tar.xz
  237. Source222: cals.tar.xz
  238. Source223: calxxxx-yyyy.doc.tar.xz
  239. Source224: calxxxx-yyyy.tar.xz
  240. Source225: cancel.doc.tar.xz
  241. Source226: cancel.tar.xz
  242. Source227: canoniclayout.doc.tar.xz
  243. Source228: canoniclayout.source.tar.xz
  244. Source229: canoniclayout.tar.xz
  245. Source230: capt-of.doc.tar.xz
  246. Source231: capt-of.source.tar.xz
  247. Source232: capt-of.tar.xz
  248. Source233: captcont.doc.tar.xz
  249. Source234: captcont.source.tar.xz
  250. Source235: captcont.tar.xz
  251. Source236: captdef.doc.tar.xz
  252. Source237: captdef.tar.xz
  253. Source238: cases.doc.tar.xz
  254. Source239: cases.tar.xz
  255. Source240: casyl.doc.tar.xz
  256. Source241: casyl.tar.xz
  257. Source242: catchfilebetweentags.doc.tar.xz
  258. Source243: catchfilebetweentags.source.tar.xz
  259. Source244: catchfilebetweentags.tar.xz
  260. Source245: catechis.doc.tar.xz
  261. Source246: catechis.source.tar.xz
  262. Source247: catechis.tar.xz
  263. Source248: catoptions.doc.tar.xz
  264. Source249: catoptions.tar.xz
  265. Source250: cbcoptic.doc.tar.xz
  266. Source251: cbcoptic.tar.xz
  267. Source252: ccaption.doc.tar.xz
  268. Source253: ccaption.source.tar.xz
  269. Source254: ccaption.tar.xz
  270. Source255: cclicenses.doc.tar.xz
  271. Source256: cclicenses.source.tar.xz
  272. Source257: cclicenses.tar.xz
  273. Source258: cd.doc.tar.xz
  274. Source259: cd.source.tar.xz
  275. Source260: cd.tar.xz
  276. Source261: cd-cover.doc.tar.xz
  277. Source262: cd-cover.source.tar.xz
  278. Source263: cd-cover.tar.xz
  279. Source264: cdpbundl.doc.tar.xz
  280. Source265: cdpbundl.source.tar.xz
  281. Source266: cdpbundl.tar.xz
  282. Source267: cellspace.doc.tar.xz
  283. Source268: cellspace.tar.xz
  284. Source269: censor.doc.tar.xz
  285. Source270: censor.tar.xz
  286. Source271: changebar.doc.tar.xz
  287. Source272: changebar.source.tar.xz
  288. Source273: changebar.tar.xz
  289. Source274: changelayout.doc.tar.xz
  290. Source275: changelayout.tar.xz
  291. Source276: changepage.doc.tar.xz
  292. Source277: changepage.source.tar.xz
  293. Source278: changepage.tar.xz
  294. Source279: changes.doc.tar.xz
  295. Source280: changes.source.tar.xz
  296. Source281: changes.tar.xz
  297. Source282: chappg.doc.tar.xz
  298. Source283: chappg.source.tar.xz
  299. Source284: chappg.tar.xz
  300. Source285: chapterfolder.doc.tar.xz
  301. Source286: chapterfolder.source.tar.xz
  302. Source287: chapterfolder.tar.xz
  303. Source288: chet.doc.tar.xz
  304. Source289: chet.tar.xz
  305. Source290: chextras.doc.tar.xz
  306. Source291: chextras.source.tar.xz
  307. Source292: chextras.tar.xz
  308. Source293: chkfloat.doc.tar.xz
  309. Source294: chkfloat.tar.xz
  310. Source295: chletter.doc.tar.xz
  311. Source296: chletter.source.tar.xz
  312. Source297: chletter.tar.xz
  313. Source298: chngcntr.doc.tar.xz
  314. Source299: chngcntr.tar.xz
  315. Source300: chronology.doc.tar.xz
  316. Source301: chronology.tar.xz
  317. Source302: circ.doc.tar.xz
  318. Source303: circ.source.tar.xz
  319. Source304: circ.tar.xz
  320. Source305: classics.doc.tar.xz
  321. Source306: classics.tar.xz
  322. Source307: clefval.doc.tar.xz
  323. Source308: clefval.source.tar.xz
  324. Source309: clefval.tar.xz
  325. Source310: cleveref.doc.tar.xz
  326. Source311: cleveref.source.tar.xz
  327. Source312: cleveref.tar.xz
  328. Source313: clipboard.doc.tar.xz
  329. Source314: clipboard.tar.xz
  330. Source315: clock.doc.tar.xz
  331. Source316: clock.tar.xz
  332. Source317: cmdstring.doc.tar.xz
  333. Source318: cmdstring.tar.xz
  334. Source319: cmdtrack.doc.tar.xz
  335. Source320: cmdtrack.source.tar.xz
  336. Source321: cmdtrack.tar.xz
  337. Source322: cmsd.doc.tar.xz
  338. Source323: cmsd.tar.xz
  339. Source324: cnltx.doc.tar.xz
  340. Source325: cnltx.tar.xz
  341. Source326: cntformats.doc.tar.xz
  342. Source327: cntformats.tar.xz
  343. Source328: codedoc.doc.tar.xz
  344. Source329: codedoc.tar.xz
  345. Source330: codepage.doc.tar.xz
  346. Source331: codepage.source.tar.xz
  347. Source332: codepage.tar.xz
  348. Source333: codesection.doc.tar.xz
  349. Source334: codesection.source.tar.xz
  350. Source335: codesection.tar.xz
  351. Source336: collcell.doc.tar.xz
  352. Source337: collcell.source.tar.xz
  353. Source338: collcell.tar.xz
  354. Source339: collectbox.doc.tar.xz
  355. Source340: collectbox.source.tar.xz
  356. Source341: collectbox.tar.xz
  357. Source342: colordoc.doc.tar.xz
  358. Source343: colordoc.source.tar.xz
  359. Source344: colordoc.tar.xz
  360. Source345: colorinfo.doc.tar.xz
  361. Source346: colorinfo.tar.xz
  362. Source347: colortab.doc.tar.xz
  363. Source348: colortab.tar.xz
  364. Source349: colorwav.doc.tar.xz
  365. Source350: colorwav.source.tar.xz
  366. Source351: colorwav.tar.xz
  367. Source352: colorweb.doc.tar.xz
  368. Source353: colorweb.source.tar.xz
  369. Source354: colorweb.tar.xz
  370. Source355: colourchange.doc.tar.xz
  371. Source356: colourchange.tar.xz
  372. Source357: combelow.doc.tar.xz
  373. Source358: combelow.tar.xz
  374. Source359: combine.doc.tar.xz
  375. Source360: combine.source.tar.xz
  376. Source361: combine.tar.xz
  377. Source362: comma.doc.tar.xz
  378. Source363: comma.tar.xz
  379. Source364: commado.doc.tar.xz
  380. Source365: commado.source.tar.xz
  381. Source366: commado.tar.xz
  382. Source367: comment.doc.tar.xz
  383. Source368: comment.tar.xz
  384. Source369: concepts.doc.tar.xz
  385. Source370: concepts.tar.xz
  386. Source371: concprog.doc.tar.xz
  387. Source372: concprog.tar.xz
  388. Source373: constants.doc.tar.xz
  389. Source374: constants.source.tar.xz
  390. Source375: constants.tar.xz
  391. Source376: contour.doc.tar.xz
  392. Source377: contour.source.tar.xz
  393. Source378: contour.tar.xz
  394. Source379: contracard.doc.tar.xz
  395. Source380: contracard.source.tar.xz
  396. Source381: contracard.tar.xz
  397. Source382: cooking.doc.tar.xz
  398. Source383: cooking.source.tar.xz
  399. Source384: cooking.tar.xz
  400. Source385: cool.doc.tar.xz
  401. Source386: cool.source.tar.xz
  402. Source387: cool.tar.xz
  403. Source388: coollist.doc.tar.xz
  404. Source389: coollist.source.tar.xz
  405. Source390: coollist.tar.xz
  406. Source391: coolstr.doc.tar.xz
  407. Source392: coolstr.source.tar.xz
  408. Source393: coolstr.tar.xz
  409. Source394: coolthms.doc.tar.xz
  410. Source395: coolthms.source.tar.xz
  411. Source396: coolthms.tar.xz
  412. Source397: cooltooltips.doc.tar.xz
  413. Source398: cooltooltips.source.tar.xz
  414. Source399: cooltooltips.tar.xz
  415. Source400: coordsys.doc.tar.xz
  416. Source401: coordsys.source.tar.xz
  417. Source402: coordsys.tar.xz
  418. Source403: copyrightbox.doc.tar.xz
  419. Source404: copyrightbox.tar.xz
  420. Source405: coseoul.doc.tar.xz
  421. Source406: coseoul.tar.xz
  422. Source407: counttexruns.doc.tar.xz
  423. Source408: counttexruns.source.tar.xz
  424. Source409: counttexruns.tar.xz
  425. Source410: courseoutline.doc.tar.xz
  426. Source411: courseoutline.tar.xz
  427. Source412: coursepaper.doc.tar.xz
  428. Source413: coursepaper.tar.xz
  429. Source414: coverpage.doc.tar.xz
  430. Source415: coverpage.source.tar.xz
  431. Source416: coverpage.tar.xz
  432. Source417: cprotect.doc.tar.xz
  433. Source418: cprotect.source.tar.xz
  434. Source419: cprotect.tar.xz
  435. Source420: crbox.doc.tar.xz
  436. Source421: crbox.tar.xz
  437. Source422: crossreference.doc.tar.xz
  438. Source423: crossreference.source.tar.xz
  439. Source424: crossreference.tar.xz
  440. Source425: csquotes.doc.tar.xz
  441. Source426: csquotes.tar.xz
  442. Source427: csvsimple.doc.tar.xz
  443. Source428: csvsimple.tar.xz
  444. Source429: csvtools.doc.tar.xz
  445. Source430: csvtools.source.tar.xz
  446. Source431: csvtools.tar.xz
  447. Source432: cuisine.doc.tar.xz
  448. Source433: cuisine.source.tar.xz
  449. Source434: cuisine.tar.xz
  450. Source435: currfile.doc.tar.xz
  451. Source436: currfile.source.tar.xz
  452. Source437: currfile.tar.xz
  453. Source438: currvita.doc.tar.xz
  454. Source439: currvita.source.tar.xz
  455. Source440: currvita.tar.xz
  456. Source441: cutwin.doc.tar.xz
  457. Source442: cutwin.source.tar.xz
  458. Source443: cutwin.tar.xz
  459. Source444: cv.doc.tar.xz
  460. Source445: cv.tar.xz
  461. Source446: cv4tw.doc.tar.xz
  462. Source447: cv4tw.tar.xz
  463. Source448: cweb-latex.doc.tar.xz
  464. Source449: cweb-latex.tar.xz
  465. Source450: dashbox.doc.tar.xz
  466. Source451: dashbox.source.tar.xz
  467. Source452: dashbox.tar.xz
  468. Source453: dashrule.doc.tar.xz
  469. Source454: dashrule.source.tar.xz
  470. Source455: dashrule.tar.xz
  471. Source456: dashundergaps.doc.tar.xz
  472. Source457: dashundergaps.tar.xz
  473. Source458: dataref.doc.tar.xz
  474. Source459: dataref.source.tar.xz
  475. Source460: dataref.tar.xz
  476. Source461: datatool.doc.tar.xz
  477. Source462: datatool.source.tar.xz
  478. Source463: datatool.tar.xz
  479. Source464: dateiliste.doc.tar.xz
  480. Source465: dateiliste.source.tar.xz
  481. Source466: dateiliste.tar.xz
  482. Source467: datenumber.doc.tar.xz
  483. Source468: datenumber.source.tar.xz
  484. Source469: datenumber.tar.xz
  485. Source470: datetime.doc.tar.xz
  486. Source471: datetime.source.tar.xz
  487. Source472: datetime.tar.xz
  488. Source473: dblfloatfix.doc.tar.xz
  489. Source474: dblfloatfix.tar.xz
  490. Source475: decimal.doc.tar.xz
  491. Source476: decimal.source.tar.xz
  492. Source477: decimal.tar.xz
  493. Source478: decorule.doc.tar.xz
  494. Source479: decorule.source.tar.xz
  495. Source480: decorule.tar.xz
  496. Source481: delim.doc.tar.xz
  497. Source482: delim.source.tar.xz
  498. Source483: delim.tar.xz
  499. Source484: delimtxt.doc.tar.xz
  500. Source485: delimtxt.source.tar.xz
  501. Source486: delimtxt.tar.xz
  502. Source487: detlev-cm.doc.tar.xz
  503. Source488: detlev-cm.tar.xz
  504. Source489: diagbox.doc.tar.xz
  505. Source490: diagbox.source.tar.xz
  506. Source491: diagbox.tar.xz
  507. Source492: diagnose.doc.tar.xz
  508. Source493: diagnose.tar.xz
  509. Source494: dialogl.doc.tar.xz
  510. Source495: dialogl.source.tar.xz
  511. Source496: dialogl.tar.xz
  512. Source497: dichokey.doc.tar.xz
  513. Source498: dichokey.tar.xz
  514. Source499: dinbrief.doc.tar.xz
  515. Source500: dinbrief.source.tar.xz
  516. Source501: dinbrief.tar.xz
  517. Source502: directory.doc.tar.xz
  518. Source503: directory.tar.xz
  519. Source504: dirtytalk.doc.tar.xz
  520. Source505: dirtytalk.source.tar.xz
  521. Source506: dirtytalk.tar.xz
  522. Source507: dlfltxb.doc.tar.xz
  523. Source508: dlfltxb.tar.xz
  524. Source509: dnaseq.doc.tar.xz
  525. Source510: dnaseq.source.tar.xz
  526. Source511: dnaseq.tar.xz
  527. Source512: docmfp.doc.tar.xz
  528. Source513: docmfp.source.tar.xz
  529. Source514: docmfp.tar.xz
  530. Source515: docmute.doc.tar.xz
  531. Source516: docmute.source.tar.xz
  532. Source517: docmute.tar.xz
  533. Source518: doctools.doc.tar.xz
  534. Source519: doctools.source.tar.xz
  535. Source520: doctools.tar.xz
  536. Source521: documentation.doc.tar.xz
  537. Source522: documentation.source.tar.xz
  538. Source523: documentation.tar.xz
  539. Source524: doi.doc.tar.xz
  540. Source525: doi.tar.xz
  541. Source526: dotarrow.doc.tar.xz
  542. Source527: dotarrow.source.tar.xz
  543. Source528: dotarrow.tar.xz
  544. Source529: dotseqn.doc.tar.xz
  545. Source530: dotseqn.source.tar.xz
  546. Source531: dotseqn.tar.xz
  547. Source532: download.doc.tar.xz
  548. Source533: download.source.tar.xz
  549. Source534: download.tar.xz
  550. Source535: dox.doc.tar.xz
  551. Source536: dox.source.tar.xz
  552. Source537: dox.tar.xz
  553. Source538: dpfloat.doc.tar.xz
  554. Source539: dpfloat.tar.xz
  555. Source540: dprogress.doc.tar.xz
  556. Source541: dprogress.source.tar.xz
  557. Source542: dprogress.tar.xz
  558. Source543: drac.doc.tar.xz
  559. Source544: drac.source.tar.xz
  560. Source545: drac.tar.xz
  561. Source546: draftcopy.doc.tar.xz
  562. Source547: draftcopy.source.tar.xz
  563. Source548: draftcopy.tar.xz
  564. Source549: draftwatermark.doc.tar.xz
  565. Source550: draftwatermark.source.tar.xz
  566. Source551: draftwatermark.tar.xz
  567. Source552: dtk.doc.tar.xz
  568. Source553: dtk.tar.xz
  569. Source554: dtxgallery.doc.tar.xz
  570. Source555: dtxgallery.source.tar.xz
  571. Source556: dtxgallery.tar.xz
  572. Source557: dvdcoll.doc.tar.xz
  573. Source558: dvdcoll.tar.xz
  574. Source559: dynblocks.doc.tar.xz
  575. Source560: dynblocks.tar.xz
  576. Source561: easy.doc.tar.xz
  577. Source562: easy.tar.xz
  578. Source563: easy-todo.doc.tar.xz
  579. Source564: easy-todo.tar.xz
  580. Source565: easyfig.doc.tar.xz
  581. Source566: easyfig.source.tar.xz
  582. Source567: easyfig.tar.xz
  583. Source568: easylist.doc.tar.xz
  584. Source569: easylist.tar.xz
  585. Source570: ean13isbn.doc.tar.xz
  586. Source571: ean13isbn.tar.xz
  587. Source572: ebezier.doc.tar.xz
  588. Source573: ebezier.source.tar.xz
  589. Source574: ebezier.tar.xz
  590. Source575: ecclesiastic.doc.tar.xz
  591. Source576: ecclesiastic.source.tar.xz
  592. Source577: ecclesiastic.tar.xz
  593. Source578: ecv.doc.tar.xz
  594. Source579: ecv.source.tar.xz
  595. Source580: ecv.tar.xz
  596. Source581: ed.doc.tar.xz
  597. Source582: ed.source.tar.xz
  598. Source583: ed.tar.xz
  599. Source584: edmargin.doc.tar.xz
  600. Source585: edmargin.source.tar.xz
  601. Source586: edmargin.tar.xz
  602. Source587: eemeir.doc.tar.xz
  603. Source588: eemeir.source.tar.xz
  604. Source589: eemeir.tar.xz
  605. Source590: efbox.doc.tar.xz
  606. Source591: efbox.source.tar.xz
  607. Source592: efbox.tar.xz
  608. Source593: egplot.doc.tar.xz
  609. Source594: egplot.source.tar.xz
  610. Source595: egplot.tar.xz
  611. Source596: ellipsis.doc.tar.xz
  612. Source597: ellipsis.source.tar.xz
  613. Source598: ellipsis.tar.xz
  614. Source599: elmath.doc.tar.xz
  615. Source600: elmath.source.tar.xz
  616. Source601: elmath.tar.xz
  617. Source602: elpres.doc.tar.xz
  618. Source603: elpres.tar.xz
  619. Source604: emarks.doc.tar.xz
  620. Source605: emarks.source.tar.xz
  621. Source606: emarks.tar.xz
  622. Source607: embedall.doc.tar.xz
  623. Source608: embedall.source.tar.xz
  624. Source609: embedall.tar.xz
  625. Source610: embrac.doc.tar.xz
  626. Source611: embrac.tar.xz
  627. Source612: emptypage.doc.tar.xz
  628. Source613: emptypage.source.tar.xz
  629. Source614: emptypage.tar.xz
  630. Source615: emulateapj.doc.tar.xz
  631. Source616: emulateapj.tar.xz
  632. Source617: endfloat.doc.tar.xz
  633. Source618: endfloat.source.tar.xz
  634. Source619: endfloat.tar.xz
  635. Source620: endheads.doc.tar.xz
  636. Source621: endheads.source.tar.xz
  637. Source622: endheads.tar.xz
  638. Source623: endnotes.doc.tar.xz
  639. Source624: endnotes.tar.xz
  640. Source625: engpron.doc.tar.xz
  641. Source626: engpron.source.tar.xz
  642. Source627: engpron.tar.xz
  643. Source628: engrec.doc.tar.xz
  644. Source629: engrec.source.tar.xz
  645. Source630: engrec.tar.xz
  646. Source631: enotez.doc.tar.xz
  647. Source632: enotez.tar.xz
  648. Source633: enumitem.doc.tar.xz
  649. Source634: enumitem.tar.xz
  650. Source635: enumitem-zref.doc.tar.xz
  651. Source636: enumitem-zref.source.tar.xz
  652. Source637: enumitem-zref.tar.xz
  653. Source638: envbig.doc.tar.xz
  654. Source639: envbig.tar.xz
  655. Source640: environ.doc.tar.xz
  656. Source641: environ.source.tar.xz
  657. Source642: environ.tar.xz
  658. Source643: envlab.doc.tar.xz
  659. Source644: envlab.source.tar.xz
  660. Source645: envlab.tar.xz
  661. Source646: epigraph.doc.tar.xz
  662. Source647: epigraph.source.tar.xz
  663. Source648: epigraph.tar.xz
  664. Source649: epiolmec.doc.tar.xz
  665. Source650: epiolmec.source.tar.xz
  666. Source651: epiolmec.tar.xz
  667. Source652: eqell.doc.tar.xz
  668. Source653: eqell.tar.xz
  669. Source654: eqlist.doc.tar.xz
  670. Source655: eqlist.source.tar.xz
  671. Source656: eqlist.tar.xz
  672. Source657: eqname.tar.xz
  673. Source658: eqparbox.doc.tar.xz
  674. Source659: eqparbox.source.tar.xz
  675. Source660: eqparbox.tar.xz
  676. Source661: errata.doc.tar.xz
  677. Source662: errata.source.tar.xz
  678. Source663: errata.tar.xz
  679. Source664: esami.doc.tar.xz
  680. Source665: esami.tar.xz
  681. Source666: esdiff.doc.tar.xz
  682. Source667: esdiff.source.tar.xz
  683. Source668: esdiff.tar.xz
  684. Source669: esint.doc.tar.xz
  685. Source670: esint.source.tar.xz
  686. Source671: esint.tar.xz
  687. Source672: esint-type1.doc.tar.xz
  688. Source673: esint-type1.tar.xz
  689. Source674: etaremune.doc.tar.xz
  690. Source675: etaremune.source.tar.xz
  691. Source676: etaremune.tar.xz
  692. Source677: etextools.doc.tar.xz
  693. Source678: etextools.source.tar.xz
  694. Source679: etextools.tar.xz
  695. Source680: etoc.doc.tar.xz
  696. Source681: etoc.source.tar.xz
  697. Source682: etoc.tar.xz
  698. Source683: etoolbox.doc.tar.xz
  699. Source684: etoolbox.tar.xz
  700. Source685: eukdate.doc.tar.xz
  701. Source686: eukdate.source.tar.xz
  702. Source687: eukdate.tar.xz
  703. Source688: europecv.doc.tar.xz
  704. Source689: europecv.tar.xz
  705. Source690: everyhook.doc.tar.xz
  706. Source691: everyhook.source.tar.xz
  707. Source692: everyhook.tar.xz
  708. Source693: everypage.doc.tar.xz
  709. Source694: everypage.source.tar.xz
  710. Source695: everypage.tar.xz
  711. Source696: exam.doc.tar.xz
  712. Source697: exam.tar.xz
  713. Source698: exam-n.doc.tar.xz
  714. Source699: exam-n.source.tar.xz
  715. Source700: exam-n.tar.xz
  716. Source701: examdesign.doc.tar.xz
  717. Source702: examdesign.source.tar.xz
  718. Source703: examdesign.tar.xz
  719. Source704: example.tar.xz
  720. Source705: examplep.doc.tar.xz
  721. Source706: examplep.tar.xz
  722. Source707: exceltex.doc.tar.xz
  723. Source708: exceltex.tar.xz
  724. Source709: excludeonly.doc.tar.xz
  725. Source710: excludeonly.tar.xz
  726. Source711: exercise.doc.tar.xz
  727. Source712: exercise.source.tar.xz
  728. Source713: exercise.tar.xz
  729. Source714: exp-testopt.doc.tar.xz
  730. Source715: exp-testopt.source.tar.xz
  731. Source716: exp-testopt.tar.xz
  732. Source717: expdlist.doc.tar.xz
  733. Source718: expdlist.source.tar.xz
  734. Source719: expdlist.tar.xz
  735. Source720: export.doc.tar.xz
  736. Source721: export.source.tar.xz
  737. Source722: export.tar.xz
  738. Source723: exsheets.doc.tar.xz
  739. Source724: exsheets.tar.xz
  740. Source725: exsol.doc.tar.xz
  741. Source726: exsol.source.tar.xz
  742. Source727: exsol.tar.xz
  743. Source728: extract.doc.tar.xz
  744. Source729: extract.source.tar.xz
  745. Source730: extract.tar.xz
  746. Source731: facsimile.doc.tar.xz
  747. Source732: facsimile.source.tar.xz
  748. Source733: facsimile.tar.xz
  749. Source734: factura.doc.tar.xz
  750. Source735: factura.tar.xz
  751. Source736: fancylabel.doc.tar.xz
  752. Source737: fancylabel.source.tar.xz
  753. Source738: fancylabel.tar.xz
  754. Source739: fancynum.doc.tar.xz
  755. Source740: fancynum.source.tar.xz
  756. Source741: fancynum.tar.xz
  757. Source742: fancypar.doc.tar.xz
  758. Source743: fancypar.source.tar.xz
  759. Source744: fancypar.tar.xz
  760. Source745: fancytabs.doc.tar.xz
  761. Source746: fancytabs.source.tar.xz
  762. Source747: fancytabs.tar.xz
  763. Source748: fancytooltips.doc.tar.xz
  764. Source749: fancytooltips.source.tar.xz
  765. Source750: fancytooltips.tar.xz
  766. Source751: fifo-stack.doc.tar.xz
  767. Source752: fifo-stack.source.tar.xz
  768. Source753: fifo-stack.tar.xz
  769. Source754: figsize.doc.tar.xz
  770. Source755: figsize.tar.xz
  771. Source756: filecontents.doc.tar.xz
  772. Source757: filecontents.source.tar.xz
  773. Source758: filecontents.tar.xz
  774. Source759: filedate.doc.tar.xz
  775. Source760: filedate.source.tar.xz
  776. Source761: filedate.tar.xz
  777. Source762: filehook.doc.tar.xz
  778. Source763: filehook.source.tar.xz
  779. Source764: filehook.tar.xz
  780. Source765: fileinfo.doc.tar.xz
  781. Source766: fileinfo.source.tar.xz
  782. Source767: fileinfo.tar.xz
  783. Source768: filemod.doc.tar.xz
  784. Source769: filemod.tar.xz
  785. Source770: fink.doc.tar.xz
  786. Source771: fink.source.tar.xz
  787. Source772: fink.tar.xz
  788. Source773: finstrut.doc.tar.xz
  789. Source774: finstrut.source.tar.xz
  790. Source775: finstrut.tar.xz
  791. Source776: fixfoot.doc.tar.xz
  792. Source777: fixfoot.tar.xz
  793. Source778: fixme.doc.tar.xz
  794. Source779: fixme.source.tar.xz
  795. Source780: fixme.tar.xz
  796. Source781: fixmetodonotes.doc.tar.xz
  797. Source782: fixmetodonotes.source.tar.xz
  798. Source783: fixmetodonotes.tar.xz
  799. Source784: fjodor.doc.tar.xz
  800. Source785: fjodor.tar.xz
  801. Source786: flabels.doc.tar.xz
  802. Source787: flabels.source.tar.xz
  803. Source788: flabels.tar.xz
  804. Source789: flacards.doc.tar.xz
  805. Source790: flacards.tar.xz
  806. Source791: flagderiv.doc.tar.xz
  807. Source792: flagderiv.source.tar.xz
  808. Source793: flagderiv.tar.xz
  809. Source794: flashcards.doc.tar.xz
  810. Source795: flashcards.source.tar.xz
  811. Source796: flashcards.tar.xz
  812. Source797: flashmovie.doc.tar.xz
  813. Source798: flashmovie.tar.xz
  814. Source799: flipbook.doc.tar.xz
  815. Source800: flipbook.tar.xz
  816. Source801: flippdf.doc.tar.xz
  817. Source802: flippdf.source.tar.xz
  818. Source803: flippdf.tar.xz
  819. Source804: floatflt.doc.tar.xz
  820. Source805: floatflt.source.tar.xz
  821. Source806: floatflt.tar.xz
  822. Source807: floatrow.doc.tar.xz
  823. Source808: floatrow.source.tar.xz
  824. Source809: floatrow.tar.xz
  825. Source810: flowfram.doc.tar.xz
  826. Source811: flowfram.source.tar.xz
  827. Source812: flowfram.tar.xz
  828. Source813: fmp.doc.tar.xz
  829. Source814: fmp.source.tar.xz
  830. Source815: fmp.tar.xz
  831. Source816: fmtcount.doc.tar.xz
  832. Source817: fmtcount.source.tar.xz
  833. Source818: fmtcount.tar.xz
  834. Source819: fn2end.doc.tar.xz
  835. Source820: fn2end.tar.xz
  836. Source821: fnbreak.doc.tar.xz
  837. Source822: fnbreak.source.tar.xz
  838. Source823: fnbreak.tar.xz
  839. Source824: fncychap.doc.tar.xz
  840. Source825: fncychap.tar.xz
  841. Source826: fncylab.doc.tar.xz
  842. Source827: fncylab.tar.xz
  843. Source828: fnpara.doc.tar.xz
  844. Source829: fnpara.tar.xz
  845. Source830: fnpct.doc.tar.xz
  846. Source831: fnpct.tar.xz
  847. Source832: fnumprint.doc.tar.xz
  848. Source833: fnumprint.source.tar.xz
  849. Source834: fnumprint.tar.xz
  850. Source835: foilhtml.doc.tar.xz
  851. Source836: foilhtml.source.tar.xz
  852. Source837: foilhtml.tar.xz
  853. Source838: fontaxes.doc.tar.xz
  854. Source839: fontaxes.source.tar.xz
  855. Source840: fontaxes.tar.xz
  856. Source841: fonttable.doc.tar.xz
  857. Source842: fonttable.source.tar.xz
  858. Source843: fonttable.tar.xz
  859. Source844: footmisc.doc.tar.xz
  860. Source845: footmisc.source.tar.xz
  861. Source846: footmisc.tar.xz
  862. Source847: footnotebackref.doc.tar.xz
  863. Source848: footnotebackref.tar.xz
  864. Source849: footnoterange.doc.tar.xz
  865. Source850: footnoterange.source.tar.xz
  866. Source851: footnoterange.tar.xz
  867. Source852: footnpag.doc.tar.xz
  868. Source853: footnpag.source.tar.xz
  869. Source854: footnpag.tar.xz
  870. Source855: forarray.doc.tar.xz
  871. Source856: forarray.source.tar.xz
  872. Source857: forarray.tar.xz
  873. Source858: foreign.doc.tar.xz
  874. Source859: foreign.source.tar.xz
  875. Source860: foreign.tar.xz
  876. Source861: forloop.doc.tar.xz
  877. Source862: forloop.source.tar.xz
  878. Source863: forloop.tar.xz
  879. Source864: formlett.doc.tar.xz
  880. Source865: formlett.tar.xz
  881. Source866: formular.doc.tar.xz
  882. Source867: formular.source.tar.xz
  883. Source868: formular.tar.xz
  884. Source869: fragments.doc.tar.xz
  885. Source870: fragments.tar.xz
  886. Source871: frame.doc.tar.xz
  887. Source872: frame.tar.xz
  888. Source873: framed.doc.tar.xz
  889. Source874: framed.tar.xz
  890. Source875: frankenstein.doc.tar.xz
  891. Source876: frankenstein.source.tar.xz
  892. Source877: frankenstein.tar.xz
  893. Source878: frege.doc.tar.xz
  894. Source879: frege.tar.xz
  895. Source880: ftcap.doc.tar.xz
  896. Source881: ftcap.tar.xz
  897. Source882: ftnxtra.doc.tar.xz
  898. Source883: ftnxtra.source.tar.xz
  899. Source884: ftnxtra.tar.xz
  900. Source885: fullblck.doc.tar.xz
  901. Source886: fullblck.source.tar.xz
  902. Source887: fullblck.tar.xz
  903. Source888: fullminipage.doc.tar.xz
  904. Source889: fullminipage.source.tar.xz
  905. Source890: fullminipage.tar.xz
  906. Source891: fullwidth.doc.tar.xz
  907. Source892: fullwidth.tar.xz
  908. Source893: fundus-calligra.doc.tar.xz
  909. Source894: fundus-calligra.source.tar.xz
  910. Source895: fundus-calligra.tar.xz
  911. Source896: fundus-cyr.tar.xz
  912. Source897: fundus-sueterlin.doc.tar.xz
  913. Source898: fundus-sueterlin.source.tar.xz
  914. Source899: fundus-sueterlin.tar.xz
  915. Source900: fwlw.doc.tar.xz
  916. Source901: fwlw.tar.xz
  917. Source902: g-brief.doc.tar.xz
  918. Source903: g-brief.source.tar.xz
  919. Source904: g-brief.tar.xz
  920. Source905: gauss.doc.tar.xz
  921. Source906: gauss.tar.xz
  922. Source907: gcard.doc.tar.xz
  923. Source908: gcard.tar.xz
  924. Source909: gcite.doc.tar.xz
  925. Source910: gcite.source.tar.xz
  926. Source911: gcite.tar.xz
  927. Source912: genmpage.doc.tar.xz
  928. Source913: genmpage.source.tar.xz
  929. Source914: genmpage.tar.xz
  930. Source915: getfiledate.doc.tar.xz
  931. Source916: getfiledate.tar.xz
  932. Source917: ginpenc.doc.tar.xz
  933. Source918: ginpenc.source.tar.xz
  934. Source919: ginpenc.tar.xz
  935. Source920: gitinfo.doc.tar.xz
  936. Source921: gitinfo.tar.xz
  937. Source922: gitinfo2.doc.tar.xz
  938. Source923: gitinfo2.tar.xz
  939. Source924: gloss.doc.tar.xz
  940. Source925: gloss.tar.xz
  941. Source926: glossaries.doc.tar.xz
  942. Source927: glossaries.source.tar.xz
  943. Source928: glossaries.tar.xz
  944. Source929: gmdoc.doc.tar.xz
  945. Source930: gmdoc.tar.xz
  946. Source931: gmdoc-enhance.doc.tar.xz
  947. Source932: gmdoc-enhance.source.tar.xz
  948. Source933: gmdoc-enhance.tar.xz
  949. Source934: gmiflink.doc.tar.xz
  950. Source935: gmiflink.tar.xz
  951. Source936: gmutils.doc.tar.xz
  952. Source937: gmutils.tar.xz
  953. Source938: gmverb.doc.tar.xz
  954. Source939: gmverb.tar.xz
  955. Source940: graphbox.doc.tar.xz
  956. Source941: graphbox.source.tar.xz
  957. Source942: graphbox.tar.xz
  958. Source943: graphicx-psmin.doc.tar.xz
  959. Source944: graphicx-psmin.source.tar.xz
  960. Source945: graphicx-psmin.tar.xz
  961. Source946: graphicxbox.doc.tar.xz
  962. Source947: graphicxbox.source.tar.xz
  963. Source948: graphicxbox.tar.xz
  964. Source949: grfpaste.doc.tar.xz
  965. Source950: grfpaste.tar.xz
  966. Source951: grid.doc.tar.xz
  967. Source952: grid.source.tar.xz
  968. Source953: grid.tar.xz
  969. Source954: grid-system.doc.tar.xz
  970. Source955: grid-system.tar.xz
  971. Source956: gridset.doc.tar.xz
  972. Source957: gridset.source.tar.xz
  973. Source958: gridset.tar.xz
  974. Source959: gtl.doc.tar.xz
  975. Source960: gtl.source.tar.xz
  976. Source961: gtl.tar.xz
  977. Source962: guitlogo.doc.tar.xz
  978. Source963: guitlogo.source.tar.xz
  979. Source964: guitlogo.tar.xz
  980. Source965: handout.doc.tar.xz
  981. Source966: handout.tar.xz
  982. Source967: hanging.doc.tar.xz
  983. Source968: hanging.source.tar.xz
  984. Source969: hanging.tar.xz
  985. Source970: hardwrap.doc.tar.xz
  986. Source971: hardwrap.source.tar.xz
  987. Source972: hardwrap.tar.xz
  988. Source973: harnon-cv.doc.tar.xz
  989. Source974: harnon-cv.tar.xz
  990. Source975: harpoon.doc.tar.xz
  991. Source976: harpoon.tar.xz
  992. Source977: hc.doc.tar.xz
  993. Source978: hc.source.tar.xz
  994. Source979: hc.tar.xz
  995. Source980: he-she.doc.tar.xz
  996. Source981: he-she.tar.xz
  997. Source982: hhtensor.doc.tar.xz
  998. Source983: hhtensor.source.tar.xz
  999. Source984: hhtensor.tar.xz
  1000. Source985: histogr.doc.tar.xz
  1001. Source986: histogr.source.tar.xz
  1002. Source987: histogr.tar.xz
  1003. Source988: hitec.doc.tar.xz
  1004. Source989: hitec.tar.xz
  1005. Source990: hletter.doc.tar.xz
  1006. Source991: hletter.tar.xz
  1007. Source992: hpsdiss.doc.tar.xz
  1008. Source993: hpsdiss.source.tar.xz
  1009. Source994: hpsdiss.tar.xz
  1010. Source995: hrefhide.doc.tar.xz
  1011. Source996: hrefhide.source.tar.xz
  1012. Source997: hrefhide.tar.xz
  1013. Source998: hvindex.doc.tar.xz
  1014. Source999: hvindex.tar.xz
  1015. Source1000: hypdvips.doc.tar.xz
  1016. Source1001: hypdvips.tar.xz
  1017. Source1002: hyper.doc.tar.xz
  1018. Source1003: hyper.source.tar.xz
  1019. Source1004: hyper.tar.xz
  1020. Source1005: hypernat.doc.tar.xz
  1021. Source1006: hypernat.tar.xz
  1022. Source1007: hyperref-docsrc.doc.tar.xz
  1023. Source1008: hyperref-docsrc.tar.xz
  1024. Source1009: hyperxmp.doc.tar.xz
  1025. Source1010: hyperxmp.source.tar.xz
  1026. Source1011: hyperxmp.tar.xz
  1027. Source1012: hyphenat.doc.tar.xz
  1028. Source1013: hyphenat.source.tar.xz
  1029. Source1014: hyphenat.tar.xz
  1030. Source1015: idxcmds.doc.tar.xz
  1031. Source1016: idxcmds.tar.xz
  1032. Source1017: idxlayout.doc.tar.xz
  1033. Source1018: idxlayout.source.tar.xz
  1034. Source1019: idxlayout.tar.xz
  1035. Source1020: ifmslide.doc.tar.xz
  1036. Source1021: ifmslide.tar.xz
  1037. Source1022: ifmtarg.doc.tar.xz
  1038. Source1023: ifmtarg.source.tar.xz
  1039. Source1024: ifmtarg.tar.xz
  1040. Source1025: ifnextok.doc.tar.xz
  1041. Source1026: ifnextok.source.tar.xz
  1042. Source1027: ifnextok.tar.xz
  1043. Source1028: ifoddpage.doc.tar.xz
  1044. Source1029: ifoddpage.source.tar.xz
  1045. Source1030: ifoddpage.tar.xz
  1046. Source1031: ifplatform.doc.tar.xz
  1047. Source1032: ifplatform.source.tar.xz
  1048. Source1033: ifplatform.tar.xz
  1049. Source1034: ifthenx.doc.tar.xz
  1050. Source1035: ifthenx.tar.xz
  1051. Source1036: iitem.doc.tar.xz
  1052. Source1037: iitem.source.tar.xz
  1053. Source1038: iitem.tar.xz
  1054. Source1039: image-gallery.doc.tar.xz
  1055. Source1040: image-gallery.tar.xz
  1056. Source1041: imakeidx.doc.tar.xz
  1057. Source1042: imakeidx.source.tar.xz
  1058. Source1043: imakeidx.tar.xz
  1059. Source1044: import.doc.tar.xz
  1060. Source1045: import.tar.xz
  1061. Source1046: incgraph.doc.tar.xz
  1062. Source1047: incgraph.tar.xz
  1063. Source1048: inlinedef.doc.tar.xz
  1064. Source1049: inlinedef.source.tar.xz
  1065. Source1050: inlinedef.tar.xz
  1066. Source1051: inputtrc.doc.tar.xz
  1067. Source1052: inputtrc.source.tar.xz
  1068. Source1053: inputtrc.tar.xz
  1069. Source1054: interactiveworkbook.doc.tar.xz
  1070. Source1055: interactiveworkbook.tar.xz
  1071. Source1056: interfaces.doc.tar.xz
  1072. Source1057: interfaces.source.tar.xz
  1073. Source1058: interfaces.tar.xz
  1074. Source1059: inversepath.doc.tar.xz
  1075. Source1060: inversepath.source.tar.xz
  1076. Source1061: inversepath.tar.xz
  1077. Source1062: invoice.doc.tar.xz
  1078. Source1063: invoice.tar.xz
  1079. Source1064: iso.doc.tar.xz
  1080. Source1065: iso.source.tar.xz
  1081. Source1066: iso.tar.xz
  1082. Source1067: iso10303.doc.tar.xz
  1083. Source1068: iso10303.source.tar.xz
  1084. Source1069: iso10303.tar.xz
  1085. Source1070: isodate.doc.tar.xz
  1086. Source1071: isodate.source.tar.xz
  1087. Source1072: isodate.tar.xz
  1088. Source1073: isonums.doc.tar.xz
  1089. Source1074: isonums.tar.xz
  1090. Source1075: isodoc.doc.tar.xz
  1091. Source1076: isodoc.source.tar.xz
  1092. Source1077: isodoc.tar.xz
  1093. Source1078: isorot.doc.tar.xz
  1094. Source1079: isorot.source.tar.xz
  1095. Source1080: isorot.tar.xz
  1096. Source1081: isotope.doc.tar.xz
  1097. Source1082: isotope.source.tar.xz
  1098. Source1083: isotope.tar.xz
  1099. Source1084: issuulinks.doc.tar.xz
  1100. Source1085: issuulinks.source.tar.xz
  1101. Source1086: issuulinks.tar.xz
  1102. Source1087: iwhdp.doc.tar.xz
  1103. Source1088: iwhdp.tar.xz
  1104. Source1089: jlabels.doc.tar.xz
  1105. Source1090: jlabels.tar.xz
  1106. Source1091: jvlisting.doc.tar.xz
  1107. Source1092: jvlisting.source.tar.xz
  1108. Source1093: jvlisting.tar.xz
  1109. Source1094: kantlipsum.doc.tar.xz
  1110. Source1095: kantlipsum.source.tar.xz
  1111. Source1096: kantlipsum.tar.xz
  1112. Source1097: kerntest.doc.tar.xz
  1113. Source1098: kerntest.source.tar.xz
  1114. Source1099: kerntest.tar.xz
  1115. Source1100: keycommand.doc.tar.xz
  1116. Source1101: keycommand.source.tar.xz
  1117. Source1102: keycommand.tar.xz
  1118. Source1103: keyreader.doc.tar.xz
  1119. Source1104: keyreader.tar.xz
  1120. Source1105: keystroke.doc.tar.xz
  1121. Source1106: keystroke.tar.xz
  1122. Source1107: keyval2e.doc.tar.xz
  1123. Source1108: keyval2e.tar.xz
  1124. Source1109: kix.doc.tar.xz
  1125. Source1110: kix.tar.xz
  1126. Source1111: koma-moderncvclassic.doc.tar.xz
  1127. Source1112: koma-moderncvclassic.tar.xz
  1128. Source1113: koma-script-sfs.doc.tar.xz
  1129. Source1114: koma-script-sfs.tar.xz
  1130. Source1115: komacv.doc.tar.xz
  1131. Source1116: komacv.source.tar.xz
  1132. Source1117: komacv.tar.xz
  1133. Source1118: ktv-texdata.doc.tar.xz
  1134. Source1119: ktv-texdata.source.tar.xz
  1135. Source1120: ktv-texdata.tar.xz
  1136. Source1121: l3build.doc.tar.xz
  1137. Source1122: l3build.source.tar.xz
  1138. Source1123: l3build.tar.xz
  1139. Source1124: labbook.doc.tar.xz
  1140. Source1125: labbook.source.tar.xz
  1141. Source1126: labbook.tar.xz
  1142. Source1127: labelcas.doc.tar.xz
  1143. Source1128: labelcas.source.tar.xz
  1144. Source1129: labelcas.tar.xz
  1145. Source1130: labels.doc.tar.xz
  1146. Source1131: labels.source.tar.xz
  1147. Source1132: labels.tar.xz
  1148. Source1133: lastpackage.doc.tar.xz
  1149. Source1134: lastpackage.source.tar.xz
  1150. Source1135: lastpackage.tar.xz
  1151. Source1136: lastpage.doc.tar.xz
  1152. Source1137: lastpage.source.tar.xz
  1153. Source1138: lastpage.tar.xz
  1154. Source1139: latexdemo.doc.tar.xz
  1155. Source1140: latexdemo.source.tar.xz
  1156. Source1141: latexdemo.tar.xz
  1157. Source1142: latex-tds.doc.tar.xz
  1158. Source1143: latex-tds.source.tar.xz
  1159. Source1144: latex-tds.tar.xz
  1160. Source1145: layouts.doc.tar.xz
  1161. Source1146: layouts.source.tar.xz
  1162. Source1147: layouts.tar.xz
  1163. Source1148: lazylist.doc.tar.xz
  1164. Source1149: lazylist.tar.xz
  1165. Source1150: lcd.doc.tar.xz
  1166. Source1151: lcd.source.tar.xz
  1167. Source1152: lcd.tar.xz
  1168. Source1153: lcg.doc.tar.xz
  1169. Source1154: lcg.source.tar.xz
  1170. Source1155: lcg.tar.xz
  1171. Source1156: leading.doc.tar.xz
  1172. Source1157: leading.source.tar.xz
  1173. Source1158: leading.tar.xz
  1174. Source1159: leaflet.doc.tar.xz
  1175. Source1160: leaflet.source.tar.xz
  1176. Source1161: leaflet.tar.xz
  1177. Source1162: leftidx.doc.tar.xz
  1178. Source1163: leftidx.source.tar.xz
  1179. Source1164: leftidx.tar.xz
  1180. Source1165: lengthconvert.doc.tar.xz
  1181. Source1166: lengthconvert.source.tar.xz
  1182. Source1167: lengthconvert.tar.xz
  1183. Source1168: lettre.doc.tar.xz
  1184. Source1169: lettre.tar.xz
  1185. Source1170: lettrine.doc.tar.xz
  1186. Source1171: lettrine.source.tar.xz
  1187. Source1172: lettrine.tar.xz
  1188. Source1173: lewis.doc.tar.xz
  1189. Source1174: lewis.tar.xz
  1190. Source1175: lhelp.doc.tar.xz
  1191. Source1176: lhelp.source.tar.xz
  1192. Source1177: lhelp.tar.xz
  1193. Source1178: libgreek.doc.tar.xz
  1194. Source1179: libgreek.source.tar.xz
  1195. Source1180: libgreek.tar.xz
  1196. Source1181: limap.source.tar.xz
  1197. Source1182: limap.tar.xz
  1198. Source1183: linegoal.doc.tar.xz
  1199. Source1184: linegoal.source.tar.xz
  1200. Source1185: linegoal.tar.xz
  1201. Source1186: lipsum.doc.tar.xz
  1202. Source1187: lipsum.source.tar.xz
  1203. Source1188: lipsum.tar.xz
  1204. Source1189: lisp-on-tex.doc.tar.xz
  1205. Source1190: lisp-on-tex.tar.xz
  1206. Source1191: listing.doc.tar.xz
  1207. Source1192: listing.tar.xz
  1208. Source1193: listlbls.doc.tar.xz
  1209. Source1194: listlbls.source.tar.xz
  1210. Source1195: listlbls.tar.xz
  1211. Source1196: listofsymbols.doc.tar.xz
  1212. Source1197: listofsymbols.source.tar.xz
  1213. Source1198: listofsymbols.tar.xz
  1214. Source1199: listliketab.doc.tar.xz
  1215. Source1200: listliketab.source.tar.xz
  1216. Source1201: listliketab.tar.xz
  1217. Source1202: lkproof.doc.tar.xz
  1218. Source1203: lkproof.tar.xz
  1219. Source1204: lmake.doc.tar.xz
  1220. Source1205: lmake.source.tar.xz
  1221. Source1206: lmake.tar.xz
  1222. Source1207: locality.doc.tar.xz
  1223. Source1208: locality.source.tar.xz
  1224. Source1209: locality.tar.xz
  1225. Source1210: localloc.doc.tar.xz
  1226. Source1211: localloc.source.tar.xz
  1227. Source1212: localloc.tar.xz
  1228. Source1213: logbox.doc.tar.xz
  1229. Source1214: logbox.source.tar.xz
  1230. Source1215: logbox.tar.xz
  1231. Source1216: logical-markup-utils.doc.tar.xz
  1232. Source1217: logical-markup-utils.tar.xz
  1233. Source1218: logpap.doc.tar.xz
  1234. Source1219: logpap.source.tar.xz
  1235. Source1220: logpap.tar.xz
  1236. Source1221: longfigure.doc.tar.xz
  1237. Source1222: longfigure.source.tar.xz
  1238. Source1223: longfigure.tar.xz
  1239. Source1224: longnamefilelist.doc.tar.xz
  1240. Source1225: longnamefilelist.source.tar.xz
  1241. Source1226: longnamefilelist.tar.xz
  1242. Source1227: loops.doc.tar.xz
  1243. Source1228: loops.tar.xz
  1244. Source1229: lsc.doc.tar.xz
  1245. Source1230: lsc.tar.xz
  1246. Source1231: lstaddons.doc.tar.xz
  1247. Source1232: lstaddons.source.tar.xz
  1248. Source1233: lstaddons.tar.xz
  1249. Source1234: lt3graph.doc.tar.xz
  1250. Source1235: lt3graph.tar.xz
  1251. Source1236: ltablex.doc.tar.xz
  1252. Source1237: ltablex.tar.xz
  1253. Source1238: ltabptch.doc.tar.xz
  1254. Source1239: ltabptch.tar.xz
  1255. Source1240: ltxdockit.doc.tar.xz
  1256. Source1241: ltxdockit.tar.xz
  1257. Source1242: ltxindex.doc.tar.xz
  1258. Source1243: ltxindex.source.tar.xz
  1259. Source1244: ltxindex.tar.xz
  1260. Source1245: ltxkeys.doc.tar.xz
  1261. Source1246: ltxkeys.tar.xz
  1262. Source1247: ltxnew.doc.tar.xz
  1263. Source1248: ltxnew.source.tar.xz
  1264. Source1249: ltxnew.tar.xz
  1265. Source1250: ltxtools.doc.tar.xz
  1266. Source1251: ltxtools.tar.xz
  1267. Source1252: macroswap.doc.tar.xz
  1268. Source1253: macroswap.source.tar.xz
  1269. Source1254: macroswap.tar.xz
  1270. Source1255: magaz.doc.tar.xz
  1271. Source1256: magaz.tar.xz
  1272. Source1257: mailing.doc.tar.xz
  1273. Source1258: mailing.source.tar.xz
  1274. Source1259: mailing.tar.xz
  1275. Source1260: mailmerge.doc.tar.xz
  1276. Source1261: mailmerge.source.tar.xz
  1277. Source1262: mailmerge.tar.xz
  1278. Source1263: makebarcode.doc.tar.xz
  1279. Source1264: makebarcode.tar.xz
  1280. Source1265: makebox.doc.tar.xz
  1281. Source1266: makebox.source.tar.xz
  1282. Source1267: makebox.tar.xz
  1283. Source1268: makecell.doc.tar.xz
  1284. Source1269: makecell.source.tar.xz
  1285. Source1270: makecell.tar.xz
  1286. Source1271: makecirc.doc.tar.xz
  1287. Source1272: makecirc.tar.xz
  1288. Source1273: makecmds.doc.tar.xz
  1289. Source1274: makecmds.source.tar.xz
  1290. Source1275: makecmds.tar.xz
  1291. Source1276: makedtx.doc.tar.xz
  1292. Source1277: makedtx.source.tar.xz
  1293. Source1278: makedtx.tar.xz
  1294. Source1279: makeglos.doc.tar.xz
  1295. Source1280: makeglos.tar.xz
  1296. Source1281: mandi.doc.tar.xz
  1297. Source1282: mandi.source.tar.xz
  1298. Source1283: mandi.tar.xz
  1299. Source1284: manfnt.source.tar.xz
  1300. Source1285: manfnt.tar.xz
  1301. Source1286: manuscript.doc.tar.xz
  1302. Source1287: manuscript.source.tar.xz
  1303. Source1288: manuscript.tar.xz
  1304. Source1289: marginfix.doc.tar.xz
  1305. Source1290: marginfix.source.tar.xz
  1306. Source1291: marginfix.tar.xz
  1307. Source1292: marginnote.doc.tar.xz
  1308. Source1293: marginnote.source.tar.xz
  1309. Source1294: marginnote.tar.xz
  1310. Source1295: mathalfa.doc.tar.xz
  1311. Source1296: mathalfa.tar.xz
  1312. Source1297: mathastext.doc.tar.xz
  1313. Source1298: mathastext.source.tar.xz
  1314. Source1299: mathastext.tar.xz
  1315. Source1300: mathexam.doc.tar.xz
  1316. Source1301: mathexam.source.tar.xz
  1317. Source1302: mathexam.tar.xz
  1318. Source1303: maybemath.doc.tar.xz
  1319. Source1304: maybemath.tar.xz
  1320. Source1305: mbenotes.doc.tar.xz
  1321. Source1306: mbenotes.tar.xz
  1322. Source1307: mcaption.doc.tar.xz
  1323. Source1308: mcaption.source.tar.xz
  1324. Source1309: mcaption.tar.xz
  1325. Source1310: mceinleger.doc.tar.xz
  1326. Source1311: mceinleger.tar.xz
  1327. Source1312: mcite.doc.tar.xz
  1328. Source1313: mcite.source.tar.xz
  1329. Source1314: mcite.tar.xz
  1330. Source1315: mciteplus.doc.tar.xz
  1331. Source1316: mciteplus.tar.xz
  1332. Source1317: mdframed.doc.tar.xz
  1333. Source1318: mdframed.source.tar.xz
  1334. Source1319: mdframed.tar.xz
  1335. Source1320: media9.doc.tar.xz
  1336. Source1321: media9.tar.xz
  1337. Source1322: meetingmins.doc.tar.xz
  1338. Source1323: meetingmins.source.tar.xz
  1339. Source1324: meetingmins.tar.xz
  1340. Source1325: memexsupp.doc.tar.xz
  1341. Source1326: memexsupp.tar.xz
  1342. Source1327: memory.doc.tar.xz
  1343. Source1328: memory.source.tar.xz
  1344. Source1329: memory.tar.xz
  1345. Source1330: menu.doc.tar.xz
  1346. Source1331: menu.source.tar.xz
  1347. Source1332: menu.tar.xz
  1348. Source1333: menukeys.doc.tar.xz
  1349. Source1334: menukeys.source.tar.xz
  1350. Source1335: menukeys.tar.xz
  1351. Source1336: method.doc.tar.xz
  1352. Source1337: method.source.tar.xz
  1353. Source1338: method.tar.xz
  1354. Source1339: metre.doc.tar.xz
  1355. Source1340: metre.source.tar.xz
  1356. Source1341: metre.tar.xz
  1357. Source1342: mftinc.doc.tar.xz
  1358. Source1343: mftinc.source.tar.xz
  1359. Source1344: mftinc.tar.xz
  1360. Source1345: midpage.doc.tar.xz
  1361. Source1346: midpage.tar.xz
  1362. Source1347: minibox.doc.tar.xz
  1363. Source1348: minibox.source.tar.xz
  1364. Source1349: minibox.tar.xz
  1365. Source1350: minifp.doc.tar.xz
  1366. Source1351: minifp.source.tar.xz
  1367. Source1352: minifp.tar.xz
  1368. Source1353: minipage-marginpar.doc.tar.xz
  1369. Source1354: minipage-marginpar.source.tar.xz
  1370. Source1355: minipage-marginpar.tar.xz
  1371. Source1356: minitoc.doc.tar.xz
  1372. Source1357: minitoc.source.tar.xz
  1373. Source1358: minitoc.tar.xz
  1374. Source1359: minorrevision.doc.tar.xz
  1375. Source1360: minorrevision.tar.xz
  1376. Source1361: minted.doc.tar.xz
  1377. Source1362: minted.source.tar.xz
  1378. Source1363: minted.tar.xz
  1379. Source1364: minutes.doc.tar.xz
  1380. Source1365: minutes.source.tar.xz
  1381. Source1366: minutes.tar.xz
  1382. Source1367: mla-paper.doc.tar.xz
  1383. Source1368: mla-paper.tar.xz
  1384. Source1369: mlist.doc.tar.xz
  1385. Source1370: mlist.source.tar.xz
  1386. Source1371: mlist.tar.xz
  1387. Source1372: mmap.doc.tar.xz
  1388. Source1373: mmap.tar.xz
  1389. Source1374: mnotes.doc.tar.xz
  1390. Source1375: mnotes.source.tar.xz
  1391. Source1376: mnotes.tar.xz
  1392. Source1377: moderncv.doc.tar.xz
  1393. Source1378: moderncv.tar.xz
  1394. Source1379: moderntimeline.doc.tar.xz
  1395. Source1380: moderntimeline.source.tar.xz
  1396. Source1381: moderntimeline.tar.xz
  1397. Source1382: modref.doc.tar.xz
  1398. Source1383: modref.source.tar.xz
  1399. Source1384: modref.tar.xz
  1400. Source1385: modroman.doc.tar.xz
  1401. Source1386: modroman.source.tar.xz
  1402. Source1387: modroman.tar.xz
  1403. Source1388: monofill.doc.tar.xz
  1404. Source1389: monofill.source.tar.xz
  1405. Source1390: monofill.tar.xz
  1406. Source1391: moreenum.doc.tar.xz
  1407. Source1392: moreenum.tar.xz
  1408. Source1393: morefloats.doc.tar.xz
  1409. Source1394: morefloats.source.tar.xz
  1410. Source1395: morefloats.tar.xz
  1411. Source1396: morehype.doc.tar.xz
  1412. Source1397: morehype.source.tar.xz
  1413. Source1398: morehype.tar.xz
  1414. Source1399: moresize.doc.tar.xz
  1415. Source1400: moresize.source.tar.xz
  1416. Source1401: moresize.tar.xz
  1417. Source1402: moreverb.doc.tar.xz
  1418. Source1403: moreverb.source.tar.xz
  1419. Source1404: moreverb.tar.xz
  1420. Source1405: morewrites.doc.tar.xz
  1421. Source1406: morewrites.source.tar.xz
  1422. Source1407: morewrites.tar.xz
  1423. Source1408: movie15.doc.tar.xz
  1424. Source1409: movie15.tar.xz
  1425. Source1410: mparhack.doc.tar.xz
  1426. Source1411: mparhack.source.tar.xz
  1427. Source1412: mparhack.tar.xz
  1428. Source1413: msc.doc.tar.xz
  1429. Source1414: msc.tar.xz
  1430. Source1415: msg.doc.tar.xz
  1431. Source1416: msg.source.tar.xz
  1432. Source1417: msg.tar.xz
  1433. Source1418: mslapa.doc.tar.xz
  1434. Source1419: mslapa.tar.xz
  1435. Source1420: mtgreek.doc.tar.xz
  1436. Source1421: mtgreek.source.tar.xz
  1437. Source1422: mtgreek.tar.xz
  1438. Source1423: multenum.doc.tar.xz
  1439. Source1424: multenum.tar.xz
  1440. Source1425: multibbl.doc.tar.xz
  1441. Source1426: multibbl.source.tar.xz
  1442. Source1427: multibbl.tar.xz
  1443. Source1428: multicap.doc.tar.xz
  1444. Source1429: multicap.source.tar.xz
  1445. Source1430: multicap.tar.xz
  1446. Source1431: multienv.doc.tar.xz
  1447. Source1432: multienv.source.tar.xz
  1448. Source1433: multienv.tar.xz
  1449. Source1434: multiexpand.doc.tar.xz
  1450. Source1435: multiexpand.source.tar.xz
  1451. Source1436: multiexpand.tar.xz
  1452. Source1437: multirow.doc.tar.xz
  1453. Source1438: multirow.tar.xz
  1454. Source1439: mversion.doc.tar.xz
  1455. Source1440: mversion.source.tar.xz
  1456. Source1441: mversion.tar.xz
  1457. Source1442: mwe.doc.tar.xz
  1458. Source1443: mwe.source.tar.xz
  1459. Source1444: mwe.tar.xz
  1460. Source1445: mweights.doc.tar.xz
  1461. Source1446: mweights.tar.xz
  1462. Source1447: mycv.doc.tar.xz
  1463. Source1448: mycv.source.tar.xz
  1464. Source1449: mycv.tar.xz
  1465. Source1450: mylatexformat.doc.tar.xz
  1466. Source1451: mylatexformat.source.tar.xz
  1467. Source1452: mylatexformat.tar.xz
  1468. Source1453: nag.doc.tar.xz
  1469. Source1454: nag.source.tar.xz
  1470. Source1455: nag.tar.xz
  1471. Source1456: nameauth.doc.tar.xz
  1472. Source1457: nameauth.source.tar.xz
  1473. Source1458: nameauth.tar.xz
  1474. Source1459: namespc.doc.tar.xz
  1475. Source1460: namespc.source.tar.xz
  1476. Source1461: namespc.tar.xz
  1477. Source1462: ncclatex.doc.tar.xz
  1478. Source1463: ncclatex.tar.xz
  1479. Source1464: ncctools.doc.tar.xz
  1480. Source1465: ncctools.source.tar.xz
  1481. Source1466: ncctools.tar.xz
  1482. Source1467: needspace.doc.tar.xz
  1483. Source1468: needspace.source.tar.xz
  1484. Source1469: needspace.tar.xz
  1485. Source1470: nestquot.tar.xz
  1486. Source1471: newcommand.doc.tar.xz
  1487. Source1472: newcommand.tar.xz
  1488. Source1473: newenviron.doc.tar.xz
  1489. Source1474: newenviron.tar.xz
  1490. Source1475: newfile.doc.tar.xz
  1491. Source1476: newfile.source.tar.xz
  1492. Source1477: newfile.tar.xz
  1493. Source1478: newlfm.doc.tar.xz
  1494. Source1479: newlfm.source.tar.xz
  1495. Source1480: newlfm.tar.xz
  1496. Source1481: newspaper.doc.tar.xz
  1497. Source1482: newspaper.source.tar.xz
  1498. Source1483: newspaper.tar.xz
  1499. Source1484: newunicodechar.doc.tar.xz
  1500. Source1485: newunicodechar.source.tar.xz
  1501. Source1486: newunicodechar.tar.xz
  1502. Source1487: newvbtm.doc.tar.xz
  1503. Source1488: newvbtm.source.tar.xz
  1504. Source1489: newvbtm.tar.xz
  1505. Source1490: newverbs.doc.tar.xz
  1506. Source1491: newverbs.source.tar.xz
  1507. Source1492: newverbs.tar.xz
  1508. Source1493: nextpage.tar.xz
  1509. Source1494: nfssext-cfr.doc.tar.xz
  1510. Source1495: nfssext-cfr.tar.xz
  1511. Source1496: nicefilelist.doc.tar.xz
  1512. Source1497: nicefilelist.source.tar.xz
  1513. Source1498: nicefilelist.tar.xz
  1514. Source1499: niceframe.doc.tar.xz
  1515. Source1500: niceframe.source.tar.xz
  1516. Source1501: niceframe.tar.xz
  1517. Source1502: nicetext.doc.tar.xz
  1518. Source1503: nicetext.source.tar.xz
  1519. Source1504: nicetext.tar.xz
  1520. Source1505: nlctdoc.doc.tar.xz
  1521. Source1506: nlctdoc.tar.xz
  1522. Source1507: noconflict.doc.tar.xz
  1523. Source1508: noconflict.tar.xz
  1524. Source1509: noindentafter.doc.tar.xz
  1525. Source1510: noindentafter.tar.xz
  1526. Source1511: noitcrul.doc.tar.xz
  1527. Source1512: noitcrul.source.tar.xz
  1528. Source1513: noitcrul.tar.xz
  1529. Source1514: nolbreaks.doc.tar.xz
  1530. Source1515: nolbreaks.tar.xz
  1531. Source1516: nomencl.doc.tar.xz
  1532. Source1517: nomencl.source.tar.xz
  1533. Source1518: nomencl.tar.xz
  1534. Source1519: nomentbl.doc.tar.xz
  1535. Source1520: nomentbl.source.tar.xz
  1536. Source1521: nomentbl.tar.xz
  1537. Source1522: nonfloat.doc.tar.xz
  1538. Source1523: nonfloat.source.tar.xz
  1539. Source1524: nonfloat.tar.xz
  1540. Source1525: nonumonpart.doc.tar.xz
  1541. Source1526: nonumonpart.source.tar.xz
  1542. Source1527: nonumonpart.tar.xz
  1543. Source1528: nopageno.doc.tar.xz
  1544. Source1529: nopageno.tar.xz
  1545. Source1530: notes.doc.tar.xz
  1546. Source1531: notes.source.tar.xz
  1547. Source1532: notes.tar.xz
  1548. Source1533: notoccite.doc.tar.xz
  1549. Source1534: notoccite.tar.xz
  1550. Source1535: nowidow.doc.tar.xz
  1551. Source1536: nowidow.source.tar.xz
  1552. Source1537: nowidow.tar.xz
  1553. Source1538: nox.doc.tar.xz
  1554. Source1539: nox.tar.xz
  1555. Source1540: ntheorem.doc.tar.xz
  1556. Source1541: ntheorem.source.tar.xz
  1557. Source1542: ntheorem.tar.xz
  1558. Source1543: numberedblock.doc.tar.xz
  1559. Source1544: numberedblock.tar.xz
  1560. Source1545: numname.doc.tar.xz
  1561. Source1546: numname.tar.xz
  1562. Source1547: numprint.doc.tar.xz
  1563. Source1548: numprint.source.tar.xz
  1564. Source1549: numprint.tar.xz
  1565. Source1550: ocg-p.doc.tar.xz
  1566. Source1551: ocg-p.tar.xz
  1567. Source1552: ocgx.doc.tar.xz
  1568. Source1553: ocgx.source.tar.xz
  1569. Source1554: ocgx.tar.xz
  1570. Source1555: ocr-latex.doc.tar.xz
  1571. Source1556: ocr-latex.tar.xz
  1572. Source1557: octavo.doc.tar.xz
  1573. Source1558: octavo.source.tar.xz
  1574. Source1559: octavo.tar.xz
  1575. Source1560: oldstyle.doc.tar.xz
  1576. Source1561: oldstyle.source.tar.xz
  1577. Source1562: oldstyle.tar.xz
  1578. Source1563: onlyamsmath.doc.tar.xz
  1579. Source1564: onlyamsmath.source.tar.xz
  1580. Source1565: onlyamsmath.tar.xz
  1581. Source1566: opcit.doc.tar.xz
  1582. Source1567: opcit.source.tar.xz
  1583. Source1568: opcit.tar.xz
  1584. Source1569: optional.doc.tar.xz
  1585. Source1570: optional.tar.xz
  1586. Source1571: outline.doc.tar.xz
  1587. Source1572: outline.tar.xz
  1588. Source1573: outliner.doc.tar.xz
  1589. Source1574: outliner.tar.xz
  1590. Source1575: outlines.doc.tar.xz
  1591. Source1576: outlines.tar.xz
  1592. Source1577: overpic.doc.tar.xz
  1593. Source1578: overpic.tar.xz
  1594. Source1579: pagecolor.doc.tar.xz
  1595. Source1580: pagecolor.source.tar.xz
  1596. Source1581: pagecolor.tar.xz
  1597. Source1582: pagecont.doc.tar.xz
  1598. Source1583: pagecont.source.tar.xz
  1599. Source1584: pagecont.tar.xz
  1600. Source1585: pagenote.doc.tar.xz
  1601. Source1586: pagenote.source.tar.xz
  1602. Source1587: pagenote.tar.xz
  1603. Source1588: pagerange.doc.tar.xz
  1604. Source1589: pagerange.tar.xz
  1605. Source1590: pageslts.doc.tar.xz
  1606. Source1591: pageslts.source.tar.xz
  1607. Source1592: pageslts.tar.xz
  1608. Source1593: paper.doc.tar.xz
  1609. Source1594: paper.source.tar.xz
  1610. Source1595: paper.tar.xz
  1611. Source1596: papercdcase.doc.tar.xz
  1612. Source1597: papercdcase.source.tar.xz
  1613. Source1598: papercdcase.tar.xz
  1614. Source1599: papermas.doc.tar.xz
  1615. Source1600: papermas.source.tar.xz
  1616. Source1601: papermas.tar.xz
  1617. Source1602: papertex.doc.tar.xz
  1618. Source1603: papertex.source.tar.xz
  1619. Source1604: papertex.tar.xz
  1620. Source1605: paracol.doc.tar.xz
  1621. Source1606: paracol.source.tar.xz
  1622. Source1607: paracol.tar.xz
  1623. Source1608: paralist.doc.tar.xz
  1624. Source1609: paralist.source.tar.xz
  1625. Source1610: paralist.tar.xz
  1626. Source1611: paresse.doc.tar.xz
  1627. Source1612: paresse.source.tar.xz
  1628. Source1613: paresse.tar.xz
  1629. Source1614: parnotes.doc.tar.xz
  1630. Source1615: parnotes.tar.xz
  1631. Source1616: parselines.doc.tar.xz
  1632. Source1617: parselines.source.tar.xz
  1633. Source1618: parselines.tar.xz
  1634. Source1619: pas-cours.doc.tar.xz
  1635. Source1620: pas-cours.tar.xz
  1636. Source1621: pas-cv.doc.tar.xz
  1637. Source1622: pas-cv.tar.xz
  1638. Source1623: pas-tableur.doc.tar.xz
  1639. Source1624: pas-tableur.tar.xz
  1640. Source1625: patch.source.tar.xz
  1641. Source1626: patch.tar.xz
  1642. Source1627: patchcmd.doc.tar.xz
  1643. Source1628: patchcmd.source.tar.xz
  1644. Source1629: patchcmd.tar.xz
  1645. Source1630: pauldoc.doc.tar.xz
  1646. Source1631: pauldoc.source.tar.xz
  1647. Source1632: pauldoc.tar.xz
  1648. Source1633: pawpict.doc.tar.xz
  1649. Source1634: pawpict.source.tar.xz
  1650. Source1635: pawpict.tar.xz
  1651. Source1636: pax.doc.tar.xz
  1652. Source1637: pax.source.tar.xz
  1653. Source1638: pax.tar.xz
  1654. Source1639: pbox.doc.tar.xz
  1655. Source1640: pbox.source.tar.xz
  1656. Source1641: pbox.tar.xz
  1657. Source1642: pbsheet.doc.tar.xz
  1658. Source1643: pbsheet.source.tar.xz
  1659. Source1644: pbsheet.tar.xz
  1660. Source1645: pdf14.doc.tar.xz
  1661. Source1646: pdf14.source.tar.xz
  1662. Source1647: pdf14.tar.xz
  1663. Source1648: pdfcomment.doc.tar.xz
  1664. Source1649: pdfcomment.tar.xz
  1665. Source1650: pdfcprot.doc.tar.xz
  1666. Source1651: pdfcprot.source.tar.xz
  1667. Source1652: pdfcprot.tar.xz
  1668. Source1653: pdfmarginpar.doc.tar.xz
  1669. Source1654: pdfmarginpar.tar.xz
  1670. Source1655: pdfscreen.doc.tar.xz
  1671. Source1656: pdfscreen.tar.xz
  1672. Source1657: pdfslide.doc.tar.xz
  1673. Source1658: pdfslide.tar.xz
  1674. Source1659: pdfsync.doc.tar.xz
  1675. Source1660: pdfsync.tar.xz
  1676. Source1661: pdfwin.doc.tar.xz
  1677. Source1662: pdfwin.tar.xz
  1678. Source1663: pdfx.doc.tar.xz
  1679. Source1664: pdfx.source.tar.xz
  1680. Source1665: pdfx.tar.xz
  1681. Source1666: pecha.doc.tar.xz
  1682. Source1667: pecha.tar.xz
  1683. Source1668: perfectcut.doc.tar.xz
  1684. Source1669: perfectcut.tar.xz
  1685. Source1670: perltex.doc.tar.xz
  1686. Source1671: perltex.source.tar.xz
  1687. Source1672: perltex.tar.xz
  1688. Source1673: permute.doc.tar.xz
  1689. Source1674: permute.source.tar.xz
  1690. Source1675: permute.tar.xz
  1691. Source1676: petiteannonce.doc.tar.xz
  1692. Source1677: petiteannonce.tar.xz
  1693. Source1678: philex.doc.tar.xz
  1694. Source1679: philex.tar.xz
  1695. Source1680: photo.doc.tar.xz
  1696. Source1681: photo.source.tar.xz
  1697. Source1682: photo.tar.xz
  1698. Source1683: piff.doc.tar.xz
  1699. Source1684: piff.tar.xz
  1700. Source1685: pkgloader.doc.tar.xz
  1701. Source1686: pkgloader.tar.xz
  1702. Source1687: placeins.doc.tar.xz
  1703. Source1688: placeins.tar.xz
  1704. Source1689: plates.doc.tar.xz
  1705. Source1690: plates.tar.xz
  1706. Source1691: plantslabels.doc.tar.xz
  1707. Source1692: plantslabels.tar.xz
  1708. Source1693: plweb.doc.tar.xz
  1709. Source1694: plweb.source.tar.xz
  1710. Source1695: plweb.tar.xz
  1711. Source1696: polynom.doc.tar.xz
  1712. Source1697: polynom.source.tar.xz
  1713. Source1698: polynom.tar.xz
  1714. Source1699: polynomial.doc.tar.xz
  1715. Source1700: polynomial.source.tar.xz
  1716. Source1701: polynomial.tar.xz
  1717. Source1702: polytable.doc.tar.xz
  1718. Source1703: polytable.source.tar.xz
  1719. Source1704: polytable.tar.xz
  1720. Source1705: postcards.doc.tar.xz
  1721. Source1706: postcards.tar.xz
  1722. Source1707: poster-mac.doc.tar.xz
  1723. Source1708: poster-mac.tar.xz
  1724. Source1709: ppr-prv.doc.tar.xz
  1725. Source1710: ppr-prv.source.tar.xz
  1726. Source1711: ppr-prv.tar.xz
  1727. Source1712: preprint.doc.tar.xz
  1728. Source1713: preprint.source.tar.xz
  1729. Source1714: preprint.tar.xz
  1730. Source1715: pressrelease.doc.tar.xz
  1731. Source1716: pressrelease.source.tar.xz
  1732. Source1717: pressrelease.tar.xz
  1733. Source1718: prettyref.doc.tar.xz
  1734. Source1719: prettyref.source.tar.xz
  1735. Source1720: prettyref.tar.xz
  1736. Source1721: preview.doc.tar.xz
  1737. Source1722: preview.source.tar.xz
  1738. Source1723: preview.tar.xz
  1739. Source1724: printlen.doc.tar.xz
  1740. Source1725: printlen.tar.xz
  1741. Source1726: probsoln.doc.tar.xz
  1742. Source1727: probsoln.source.tar.xz
  1743. Source1728: probsoln.tar.xz
  1744. Source1729: program.doc.tar.xz
  1745. Source1730: program.tar.xz
  1746. Source1731: progress.doc.tar.xz
  1747. Source1732: progress.tar.xz
  1748. Source1733: progressbar.doc.tar.xz
  1749. Source1734: progressbar.tar.xz
  1750. Source1735: properties.doc.tar.xz
  1751. Source1736: properties.tar.xz
  1752. Source1737: prosper.doc.tar.xz
  1753. Source1738: prosper.tar.xz
  1754. Source1739: protex.doc.tar.xz
  1755. Source1740: protex.tar.xz
  1756. Source1741: protocol.doc.tar.xz
  1757. Source1742: protocol.source.tar.xz
  1758. Source1743: protocol.tar.xz
  1759. Source1744: psfragx.doc.tar.xz
  1760. Source1745: psfragx.source.tar.xz
  1761. Source1746: psfragx.tar.xz
  1762. Source1747: pst-pdf.doc.tar.xz
  1763. Source1748: pst-pdf.source.tar.xz
  1764. Source1749: pst-pdf.tar.xz
  1765. Source1750: pstool.doc.tar.xz
  1766. Source1751: pstool.source.tar.xz
  1767. Source1752: pstool.tar.xz
  1768. Source1753: pxgreeks.doc.tar.xz
  1769. Source1754: pxgreeks.source.tar.xz
  1770. Source1755: pxgreeks.tar.xz
  1771. Source1756: python.doc.tar.xz
  1772. Source1757: python.tar.xz
  1773. Source1758: qcm.doc.tar.xz
  1774. Source1759: qcm.source.tar.xz
  1775. Source1760: qcm.tar.xz
  1776. Source1761: quoting.doc.tar.xz
  1777. Source1762: quoting.source.tar.xz
  1778. Source1763: quoting.tar.xz
  1779. Source1764: qstest.doc.tar.xz
  1780. Source1765: qstest.source.tar.xz
  1781. Source1766: qstest.tar.xz
  1782. Source1767: qsymbols.doc.tar.xz
  1783. Source1768: qsymbols.source.tar.xz
  1784. Source1769: qsymbols.tar.xz
  1785. Source1770: quotchap.doc.tar.xz
  1786. Source1771: quotchap.source.tar.xz
  1787. Source1772: quotchap.tar.xz
  1788. Source1773: quotmark.doc.tar.xz
  1789. Source1774: quotmark.source.tar.xz
  1790. Source1775: quotmark.tar.xz
  1791. Source1776: ran_toks.doc.tar.xz
  1792. Source1777: ran_toks.source.tar.xz
  1793. Source1778: ran_toks.tar.xz
  1794. Source1779: randtext.doc.tar.xz
  1795. Source1780: randtext.tar.xz
  1796. Source1781: rccol.doc.tar.xz
  1797. Source1782: rccol.source.tar.xz
  1798. Source1783: rccol.tar.xz
  1799. Source1784: rcs-multi.doc.tar.xz
  1800. Source1785: rcs-multi.source.tar.xz
  1801. Source1786: rcs-multi.tar.xz
  1802. Source1787: rcsinfo.doc.tar.xz
  1803. Source1788: rcsinfo.source.tar.xz
  1804. Source1789: rcsinfo.tar.xz
  1805. Source1790: readarray.doc.tar.xz
  1806. Source1791: readarray.tar.xz
  1807. Source1792: realboxes.doc.tar.xz
  1808. Source1793: realboxes.source.tar.xz
  1809. Source1794: realboxes.tar.xz
  1810. Source1795: recipe.doc.tar.xz
  1811. Source1796: recipe.tar.xz
  1812. Source1797: recipecard.doc.tar.xz
  1813. Source1798: recipecard.source.tar.xz
  1814. Source1799: recipecard.tar.xz
  1815. Source1800: rectopma.doc.tar.xz
  1816. Source1801: rectopma.tar.xz
  1817. Source1802: refcheck.doc.tar.xz
  1818. Source1803: refcheck.tar.xz
  1819. Source1804: refenums.doc.tar.xz
  1820. Source1805: refenums.tar.xz
  1821. Source1806: reflectgraphics.doc.tar.xz
  1822. Source1807: reflectgraphics.source.tar.xz
  1823. Source1808: reflectgraphics.tar.xz
  1824. Source1809: refman.doc.tar.xz
  1825. Source1810: refman.source.tar.xz
  1826. Source1811: refman.tar.xz
  1827. Source1812: refstyle.doc.tar.xz
  1828. Source1813: refstyle.source.tar.xz
  1829. Source1814: refstyle.tar.xz
  1830. Source1815: regcount.doc.tar.xz
  1831. Source1816: regcount.source.tar.xz
  1832. Source1817: regcount.tar.xz
  1833. Source1818: regexpatch.doc.tar.xz
  1834. Source1819: regexpatch.source.tar.xz
  1835. Source1820: regexpatch.tar.xz
  1836. Source1821: register.doc.tar.xz
  1837. Source1822: register.source.tar.xz
  1838. Source1823: register.tar.xz
  1839. Source1824: regstats.doc.tar.xz
  1840. Source1825: regstats.source.tar.xz
  1841. Source1826: regstats.tar.xz
  1842. Source1827: relenc.doc.tar.xz
  1843. Source1828: relenc.source.tar.xz
  1844. Source1829: relenc.tar.xz
  1845. Source1830: relsize.doc.tar.xz
  1846. Source1831: relsize.tar.xz
  1847. Source1832: repeatindex.doc.tar.xz
  1848. Source1833: repeatindex.tar.xz
  1849. Source1834: repltext.doc.tar.xz
  1850. Source1835: repltext.source.tar.xz
  1851. Source1836: repltext.tar.xz
  1852. Source1837: rjlparshap.doc.tar.xz
  1853. Source1838: rjlparshap.source.tar.xz
  1854. Source1839: rjlparshap.tar.xz
  1855. Source1840: rlepsf.doc.tar.xz
  1856. Source1841: rlepsf.tar.xz
  1857. Source1842: rmpage.doc.tar.xz
  1858. Source1843: rmpage.tar.xz
  1859. Source1844: robustcommand.doc.tar.xz
  1860. Source1845: robustcommand.source.tar.xz
  1861. Source1846: robustcommand.tar.xz
  1862. Source1847: robustindex.doc.tar.xz
  1863. Source1848: robustindex.tar.xz
  1864. Source1849: romanbar.doc.tar.xz
  1865. Source1850: romanbar.source.tar.xz
  1866. Source1851: romanbar.tar.xz
  1867. Source1852: romanneg.doc.tar.xz
  1868. Source1853: romanneg.tar.xz
  1869. Source1854: romannum.doc.tar.xz
  1870. Source1855: romannum.source.tar.xz
  1871. Source1856: romannum.tar.xz
  1872. Source1857: rotfloat.doc.tar.xz
  1873. Source1858: rotfloat.source.tar.xz
  1874. Source1859: rotfloat.tar.xz
  1875. Source1860: rotpages.doc.tar.xz
  1876. Source1861: rotpages.tar.xz
  1877. Source1862: roundbox.doc.tar.xz
  1878. Source1863: roundbox.tar.xz
  1879. Source1864: rterface.doc.tar.xz
  1880. Source1865: rterface.tar.xz
  1881. Source1866: rtkinenc.doc.tar.xz
  1882. Source1867: rtkinenc.source.tar.xz
  1883. Source1868: rtkinenc.tar.xz
  1884. Source1869: rulercompass.doc.tar.xz
  1885. Source1870: rulercompass.source.tar.xz
  1886. Source1871: rulercompass.tar.xz
  1887. Source1872: rvwrite.doc.tar.xz
  1888. Source1873: rvwrite.tar.xz
  1889. Source1874: sauerj.doc.tar.xz
  1890. Source1875: sauerj.source.tar.xz
  1891. Source1876: sauerj.tar.xz
  1892. Source1877: savefnmark.doc.tar.xz
  1893. Source1878: savefnmark.source.tar.xz
  1894. Source1879: savefnmark.tar.xz
  1895. Source1880: savesym.tar.xz
  1896. Source1881: savetrees.doc.tar.xz
  1897. Source1882: savetrees.source.tar.xz
  1898. Source1883: savetrees.tar.xz
  1899. Source1884: scale.doc.tar.xz
  1900. Source1885: scale.source.tar.xz
  1901. Source1886: scale.tar.xz
  1902. Source1887: scalebar.doc.tar.xz
  1903. Source1888: scalebar.source.tar.xz
  1904. Source1889: scalebar.tar.xz
  1905. Source1890: scalerel.doc.tar.xz
  1906. Source1891: scalerel.tar.xz
  1907. Source1892: scanpages.doc.tar.xz
  1908. Source1893: scanpages.tar.xz
  1909. Source1894: sdrt.doc.tar.xz
  1910. Source1895: sdrt.tar.xz
  1911. Source1896: secdot.doc.tar.xz
  1912. Source1897: secdot.tar.xz
  1913. Source1898: sectionbox.doc.tar.xz
  1914. Source1899: sectionbox.tar.xz
  1915. Source1900: sectsty.doc.tar.xz
  1916. Source1901: sectsty.source.tar.xz
  1917. Source1902: sectsty.tar.xz
  1918. Source1903: seealso.doc.tar.xz
  1919. Source1904: seealso.source.tar.xz
  1920. Source1905: seealso.tar.xz
  1921. Source1906: selectp.doc.tar.xz
  1922. Source1907: selectp.tar.xz
  1923. Source1908: semantic.doc.tar.xz
  1924. Source1909: semantic.source.tar.xz
  1925. Source1910: semantic.tar.xz
  1926. Source1911: semioneside.doc.tar.xz
  1927. Source1912: semioneside.source.tar.xz
  1928. Source1913: semioneside.tar.xz
  1929. Source1914: sepfootnotes.doc.tar.xz
  1930. Source1915: sepfootnotes.tar.xz
  1931. Source1916: seqsplit.doc.tar.xz
  1932. Source1917: seqsplit.source.tar.xz
  1933. Source1918: seqsplit.tar.xz
  1934. Source1919: sf298.doc.tar.xz
  1935. Source1920: sf298.source.tar.xz
  1936. Source1921: sf298.tar.xz
  1937. Source1922: sffms.doc.tar.xz
  1938. Source1923: sffms.source.tar.xz
  1939. Source1924: sffms.tar.xz
  1940. Source1925: sfmath.tar.xz
  1941. Source1926: shadow.doc.tar.xz
  1942. Source1927: shadow.tar.xz
  1943. Source1928: shadowtext.doc.tar.xz
  1944. Source1929: shadowtext.tar.xz
  1945. Source1930: shadethm.doc.tar.xz
  1946. Source1931: shadethm.tar.xz
  1947. Source1932: shapepar.doc.tar.xz
  1948. Source1933: shapepar.tar.xz
  1949. Source1934: shipunov.doc.tar.xz
  1950. Source1935: shipunov.tar.xz
  1951. Source1936: shorttoc.doc.tar.xz
  1952. Source1937: shorttoc.source.tar.xz
  1953. Source1938: shorttoc.tar.xz
  1954. Source1939: show2e.doc.tar.xz
  1955. Source1940: show2e.source.tar.xz
  1956. Source1941: show2e.tar.xz
  1957. Source1942: showcharinbox.doc.tar.xz
  1958. Source1943: showcharinbox.source.tar.xz
  1959. Source1944: showcharinbox.tar.xz
  1960. Source1945: showdim.doc.tar.xz
  1961. Source1946: showdim.tar.xz
  1962. Source1947: showexpl.doc.tar.xz
  1963. Source1948: showexpl.source.tar.xz
  1964. Source1949: showexpl.tar.xz
  1965. Source1950: showlabels.doc.tar.xz
  1966. Source1951: showlabels.source.tar.xz
  1967. Source1952: showlabels.tar.xz
  1968. Source1953: sidecap.doc.tar.xz
  1969. Source1954: sidecap.source.tar.xz
  1970. Source1955: sidecap.tar.xz
  1971. Source1956: sidenotes.doc.tar.xz
  1972. Source1957: sidenotes.source.tar.xz
  1973. Source1958: sidenotes.tar.xz
  1974. Source1959: silence.doc.tar.xz
  1975. Source1960: silence.source.tar.xz
  1976. Source1961: silence.tar.xz
  1977. Source1962: simplecd.doc.tar.xz
  1978. Source1963: simplecd.source.tar.xz
  1979. Source1964: simplecd.tar.xz
  1980. Source1965: simplecv.doc.tar.xz
  1981. Source1966: simplecv.source.tar.xz
  1982. Source1967: simplecv.tar.xz
  1983. Source1968: simplewick.doc.tar.xz
  1984. Source1969: simplewick.source.tar.xz
  1985. Source1970: simplewick.tar.xz
  1986. Source1971: sitem.doc.tar.xz
  1987. Source1972: sitem.source.tar.xz
  1988. Source1973: sitem.tar.xz
  1989. Source1974: skb.doc.tar.xz
  1990. Source1975: skb.source.tar.xz
  1991. Source1976: skb.tar.xz
  1992. Source1977: skdoc.doc.tar.xz
  1993. Source1978: skdoc.source.tar.xz
  1994. Source1979: skdoc.tar.xz
  1995. Source1980: skeycommand.doc.tar.xz
  1996. Source1981: skeycommand.tar.xz
  1997. Source1982: skeyval.doc.tar.xz
  1998. Source1983: skeyval.tar.xz
  1999. Source1984: skrapport.doc.tar.xz
  2000. Source1985: skrapport.source.tar.xz
  2001. Source1986: skrapport.tar.xz
  2002. Source1987: slantsc.doc.tar.xz
  2003. Source1988: slantsc.source.tar.xz
  2004. Source1989: slantsc.tar.xz
  2005. Source1990: smalltableof.doc.tar.xz
  2006. Source1991: smalltableof.tar.xz
  2007. Source1992: smartref.doc.tar.xz
  2008. Source1993: smartref.tar.xz
  2009. Source1994: snapshot.doc.tar.xz
  2010. Source1995: snapshot.source.tar.xz
  2011. Source1996: snapshot.tar.xz
  2012. Source1997: snotez.doc.tar.xz
  2013. Source1998: snotez.tar.xz
  2014. Source1999: soul.doc.tar.xz
  2015. Source2000: soul.source.tar.xz
  2016. Source2001: soul.tar.xz
  2017. Source2002: spanglish.doc.tar.xz
  2018. Source2003: spanglish.tar.xz
  2019. Source2004: sparklines.doc.tar.xz
  2020. Source2005: sparklines.tar.xz
  2021. Source2006: sphack.doc.tar.xz
  2022. Source2007: sphack.tar.xz
  2023. Source2008: spreadtab.doc.tar.xz
  2024. Source2009: spreadtab.tar.xz
  2025. Source2010: spverbatim.doc.tar.xz
  2026. Source2011: spverbatim.source.tar.xz
  2027. Source2012: spverbatim.tar.xz
  2028. Source2013: splitindex.doc.tar.xz
  2029. Source2014: splitindex.source.tar.xz
  2030. Source2015: splitindex.tar.xz
  2031. Source2016: spot.doc.tar.xz
  2032. Source2017: spot.source.tar.xz
  2033. Source2018: spot.tar.xz
  2034. Source2019: spotcolor.doc.tar.xz
  2035. Source2020: spotcolor.tar.xz
  2036. Source2021: srbook-mem.doc.tar.xz
  2037. Source2022: srbook-mem.tar.xz
  2038. Source2023: srcltx.doc.tar.xz
  2039. Source2024: srcltx.source.tar.xz
  2040. Source2025: srcltx.tar.xz
  2041. Source2026: sseq.doc.tar.xz
  2042. Source2027: sseq.source.tar.xz
  2043. Source2028: sseq.tar.xz
  2044. Source2029: sslides.doc.tar.xz
  2045. Source2030: sslides.tar.xz
  2046. Source2031: stack.source.tar.xz
  2047. Source2032: stack.tar.xz
  2048. Source2033: stackengine.doc.tar.xz
  2049. Source2034: stackengine.tar.xz
  2050. Source2035: standalone.doc.tar.xz
  2051. Source2036: standalone.source.tar.xz
  2052. Source2037: standalone.tar.xz
  2053. Source2038: statistik.doc.tar.xz
  2054. Source2039: statistik.source.tar.xz
  2055. Source2040: statistik.tar.xz
  2056. Source2041: stdclsdv.doc.tar.xz
  2057. Source2042: stdclsdv.source.tar.xz
  2058. Source2043: stdclsdv.tar.xz
  2059. Source2044: stdpage.doc.tar.xz
  2060. Source2045: stdpage.source.tar.xz
  2061. Source2046: stdpage.tar.xz
  2062. Source2047: stex.doc.tar.xz
  2063. Source2048: stex.source.tar.xz
  2064. Source2049: stex.tar.xz
  2065. Source2050: storebox.doc.tar.xz
  2066. Source2051: storebox.source.tar.xz
  2067. Source2052: storebox.tar.xz
  2068. Source2053: storecmd.doc.tar.xz
  2069. Source2054: storecmd.tar.xz
  2070. Source2055: stringstrings.doc.tar.xz
  2071. Source2056: stringstrings.source.tar.xz
  2072. Source2057: stringstrings.tar.xz
  2073. Source2058: sttools.doc.tar.xz
  2074. Source2059: sttools.source.tar.xz
  2075. Source2060: sttools.tar.xz
  2076. Source2061: stubs.doc.tar.xz
  2077. Source2062: stubs.tar.xz
  2078. Source2063: subdepth.doc.tar.xz
  2079. Source2064: subdepth.source.tar.xz
  2080. Source2065: subdepth.tar.xz
  2081. Source2066: subeqn.doc.tar.xz
  2082. Source2067: subeqn.source.tar.xz
  2083. Source2068: subeqn.tar.xz
  2084. Source2069: subeqnarray.doc.tar.xz
  2085. Source2070: subeqnarray.source.tar.xz
  2086. Source2071: subeqnarray.tar.xz
  2087. Source2072: subfigmat.doc.tar.xz
  2088. Source2073: subfigmat.tar.xz
  2089. Source2074: subfigure.doc.tar.xz
  2090. Source2075: subfigure.source.tar.xz
  2091. Source2076: subfigure.tar.xz
  2092. Source2077: subfiles.doc.tar.xz
  2093. Source2078: subfiles.source.tar.xz
  2094. Source2079: subfiles.tar.xz
  2095. Source2080: subfloat.doc.tar.xz
  2096. Source2081: subfloat.source.tar.xz
  2097. Source2082: subfloat.tar.xz
  2098. Source2083: substitutefont.doc.tar.xz
  2099. Source2084: substitutefont.tar.xz
  2100. Source2085: substr.doc.tar.xz
  2101. Source2086: substr.tar.xz
  2102. Source2087: supertabular.doc.tar.xz
  2103. Source2088: supertabular.source.tar.xz
  2104. Source2089: supertabular.tar.xz
  2105. Source2090: svg.doc.tar.xz
  2106. Source2091: svg.source.tar.xz
  2107. Source2092: svg.tar.xz
  2108. Source2093: svgcolor.doc.tar.xz
  2109. Source2094: svgcolor.tar.xz
  2110. Source2095: svn.doc.tar.xz
  2111. Source2096: svn.source.tar.xz
  2112. Source2097: svn.tar.xz
  2113. Source2098: svn-multi.doc.tar.xz
  2114. Source2099: svn-multi.source.tar.xz
  2115. Source2100: svn-multi.tar.xz
  2116. Source2101: svn-prov.doc.tar.xz
  2117. Source2102: svn-prov.source.tar.xz
  2118. Source2103: svn-prov.tar.xz
  2119. Source2104: svninfo.doc.tar.xz
  2120. Source2105: svninfo.source.tar.xz
  2121. Source2106: svninfo.tar.xz
  2122. Source2107: syntax.doc.tar.xz
  2123. Source2108: syntax.tar.xz
  2124. Source2109: syntrace.doc.tar.xz
  2125. Source2110: syntrace.source.tar.xz
  2126. Source2111: syntrace.tar.xz
  2127. Source2112: synttree.doc.tar.xz
  2128. Source2113: synttree.source.tar.xz
  2129. Source2114: synttree.tar.xz
  2130. Source2115: tabfigures.doc.tar.xz
  2131. Source2116: tabfigures.source.tar.xz
  2132. Source2117: tabfigures.tar.xz
  2133. Source2118: tableaux.doc.tar.xz
  2134. Source2119: tableaux.tar.xz
  2135. Source2120: tablefootnote.doc.tar.xz
  2136. Source2121: tablefootnote.source.tar.xz
  2137. Source2122: tablefootnote.tar.xz
  2138. Source2123: tableof.doc.tar.xz
  2139. Source2124: tableof.source.tar.xz
  2140. Source2125: tableof.tar.xz
  2141. Source2126: tablestyles.doc.tar.xz
  2142. Source2127: tablestyles.source.tar.xz
  2143. Source2128: tablestyles.tar.xz
  2144. Source2129: tablists.doc.tar.xz
  2145. Source2130: tablists.source.tar.xz
  2146. Source2131: tablists.tar.xz
  2147. Source2132: tabls.doc.tar.xz
  2148. Source2133: tabls.tar.xz
  2149. Source2134: tabstackengine.doc.tar.xz
  2150. Source2135: tabstackengine.tar.xz
  2151. Source2136: tabto-ltx.doc.tar.xz
  2152. Source2137: tabto-ltx.tar.xz
  2153. Source2138: tabu.doc.tar.xz
  2154. Source2139: tabu.source.tar.xz
  2155. Source2140: tabu.tar.xz
  2156. Source2141: tabularborder.doc.tar.xz
  2157. Source2142: tabularborder.source.tar.xz
  2158. Source2143: tabularborder.tar.xz
  2159. Source2144: tabularcalc.doc.tar.xz
  2160. Source2145: tabularcalc.tar.xz
  2161. Source2146: tabularew.doc.tar.xz
  2162. Source2147: tabularew.source.tar.xz
  2163. Source2148: tabularew.tar.xz
  2164. Source2149: tabulary.doc.tar.xz
  2165. Source2150: tabulary.source.tar.xz
  2166. Source2151: tabulary.tar.xz
  2167. Source2152: tagging.doc.tar.xz
  2168. Source2153: tagging.tar.xz
  2169. Source2154: talk.doc.tar.xz
  2170. Source2155: talk.source.tar.xz
  2171. Source2156: talk.tar.xz
  2172. Source2157: tamefloats.doc.tar.xz
  2173. Source2158: tamefloats.tar.xz
  2174. Source2159: tasks.doc.tar.xz
  2175. Source2160: tasks.tar.xz
  2176. Source2161: tcldoc.doc.tar.xz
  2177. Source2162: tcldoc.source.tar.xz
  2178. Source2163: tcldoc.tar.xz
  2179. Source2164: tcolorbox.doc.tar.xz
  2180. Source2165: tcolorbox.tar.xz
  2181. Source2166: tdclock.doc.tar.xz
  2182. Source2167: tdclock.tar.xz
  2183. Source2168: technics.doc.tar.xz
  2184. Source2169: technics.tar.xz
  2185. Source2170: ted.doc.tar.xz
  2186. Source2171: ted.source.tar.xz
  2187. Source2172: ted.tar.xz
  2188. Source2173: templatetools.doc.tar.xz
  2189. Source2174: templatetools.source.tar.xz
  2190. Source2175: templatetools.tar.xz
  2191. Source2176: termcal.doc.tar.xz
  2192. Source2177: termcal.source.tar.xz
  2193. Source2178: termcal.tar.xz
  2194. Source2179: termlist.doc.tar.xz
  2195. Source2180: termlist.source.tar.xz
  2196. Source2181: termlist.tar.xz
  2197. Source2182: testhyphens.doc.tar.xz
  2198. Source2183: testhyphens.source.tar.xz
  2199. Source2184: testhyphens.tar.xz
  2200. Source2185: tex-label.doc.tar.xz
  2201. Source2186: tex-label.source.tar.xz
  2202. Source2187: tex-label.tar.xz
  2203. Source2188: texlogos.tar.xz
  2204. Source2189: texmate.doc.tar.xz
  2205. Source2190: texmate.source.tar.xz
  2206. Source2191: texmate.tar.xz
  2207. Source2192: texments.doc.tar.xz
  2208. Source2193: texments.source.tar.xz
  2209. Source2194: texments.tar.xz
  2210. Source2195: texpower.doc.tar.xz
  2211. Source2196: texpower.source.tar.xz
  2212. Source2197: texpower.tar.xz
  2213. Source2198: texshade.doc.tar.xz
  2214. Source2199: texshade.source.tar.xz
  2215. Source2200: texshade.tar.xz
  2216. Source2201: textfit.doc.tar.xz
  2217. Source2202: textfit.source.tar.xz
  2218. Source2203: textfit.tar.xz
  2219. Source2204: textgreek.doc.tar.xz
  2220. Source2205: textgreek.source.tar.xz
  2221. Source2206: textgreek.tar.xz
  2222. Source2207: textmerg.doc.tar.xz
  2223. Source2208: textmerg.source.tar.xz
  2224. Source2209: textmerg.tar.xz
  2225. Source2210: textpos.doc.tar.xz
  2226. Source2211: textpos.source.tar.xz
  2227. Source2212: textpos.tar.xz
  2228. Source2213: theoremref.doc.tar.xz
  2229. Source2214: theoremref.tar.xz
  2230. Source2215: threadcol.doc.tar.xz
  2231. Source2216: threadcol.source.tar.xz
  2232. Source2217: threadcol.tar.xz
  2233. Source2218: threeparttable.doc.tar.xz
  2234. Source2219: threeparttable.tar.xz
  2235. Source2220: threeparttablex.doc.tar.xz
  2236. Source2221: threeparttablex.tar.xz
  2237. Source2222: thinsp.doc.tar.xz
  2238. Source2223: thinsp.tar.xz
  2239. Source2224: thmtools.doc.tar.xz
  2240. Source2225: thmtools.source.tar.xz
  2241. Source2226: thmtools.tar.xz
  2242. Source2227: thumb.doc.tar.xz
  2243. Source2228: thumb.source.tar.xz
  2244. Source2229: thumb.tar.xz
  2245. Source2230: thumbs.doc.tar.xz
  2246. Source2231: thumbs.source.tar.xz
  2247. Source2232: thumbs.tar.xz
  2248. Source2233: thumby.doc.tar.xz
  2249. Source2234: thumby.tar.xz
  2250. Source2235: ticket.doc.tar.xz
  2251. Source2236: ticket.tar.xz
  2252. Source2237: titlecaps.doc.tar.xz
  2253. Source2238: titlecaps.tar.xz
  2254. Source2239: titlefoot.tar.xz
  2255. Source2240: titlepic.doc.tar.xz
  2256. Source2241: titlepic.tar.xz
  2257. Source2242: titleref.doc.tar.xz
  2258. Source2243: titleref.tar.xz
  2259. Source2244: titlesec.doc.tar.xz
  2260. Source2245: titlesec.tar.xz
  2261. Source2246: titling.doc.tar.xz
  2262. Source2247: titling.source.tar.xz
  2263. Source2248: titling.tar.xz
  2264. Source2249: tocbibind.doc.tar.xz
  2265. Source2250: tocbibind.source.tar.xz
  2266. Source2251: tocbibind.tar.xz
  2267. Source2252: tocloft.doc.tar.xz
  2268. Source2253: tocloft.source.tar.xz
  2269. Source2254: tocloft.tar.xz
  2270. Source2255: tocvsec2.doc.tar.xz
  2271. Source2256: tocvsec2.source.tar.xz
  2272. Source2257: tocvsec2.tar.xz
  2273. Source2258: todo.doc.tar.xz
  2274. Source2259: todo.source.tar.xz
  2275. Source2260: todo.tar.xz
  2276. Source2261: todonotes.doc.tar.xz
  2277. Source2262: todonotes.source.tar.xz
  2278. Source2263: todonotes.tar.xz
  2279. Source2264: tokenizer.doc.tar.xz
  2280. Source2265: tokenizer.tar.xz
  2281. Source2266: toolbox.doc.tar.xz
  2282. Source2267: toolbox.source.tar.xz
  2283. Source2268: toolbox.tar.xz
  2284. Source2269: topfloat.doc.tar.xz
  2285. Source2270: topfloat.tar.xz
  2286. Source2271: totcount.doc.tar.xz
  2287. Source2272: totcount.source.tar.xz
  2288. Source2273: totcount.tar.xz
  2289. Source2274: totpages.doc.tar.xz
  2290. Source2275: totpages.source.tar.xz
  2291. Source2276: totpages.tar.xz
  2292. Source2277: translations.doc.tar.xz
  2293. Source2278: translations.tar.xz
  2294. Source2279: trfsigns.doc.tar.xz
  2295. Source2280: trfsigns.source.tar.xz
  2296. Source2281: trfsigns.tar.xz
  2297. Source2282: trimspaces.doc.tar.xz
  2298. Source2283: trimspaces.source.tar.xz
  2299. Source2284: trimspaces.tar.xz
  2300. Source2285: trsym.doc.tar.xz
  2301. Source2286: trsym.source.tar.xz
  2302. Source2287: trsym.tar.xz
  2303. Source2288: trivfloat.doc.tar.xz
  2304. Source2289: trivfloat.source.tar.xz
  2305. Source2290: trivfloat.tar.xz
  2306. Source2291: truncate.doc.tar.xz
  2307. Source2292: truncate.tar.xz
  2308. Source2293: tucv.doc.tar.xz
  2309. Source2294: tucv.source.tar.xz
  2310. Source2295: tucv.tar.xz
  2311. Source2296: turnthepage.doc.tar.xz
  2312. Source2297: turnthepage.tar.xz
  2313. Source2298: twoinone.doc.tar.xz
  2314. Source2299: twoinone.tar.xz
  2315. Source2300: twoup.doc.tar.xz
  2316. Source2301: twoup.source.tar.xz
  2317. Source2302: twoup.tar.xz
  2318. Source2303: txgreeks.doc.tar.xz
  2319. Source2304: txgreeks.source.tar.xz
  2320. Source2305: txgreeks.tar.xz
  2321. Source2306: type1cm.doc.tar.xz
  2322. Source2307: type1cm.source.tar.xz
  2323. Source2308: type1cm.tar.xz
  2324. Source2309: typeface.doc.tar.xz
  2325. Source2310: typeface.source.tar.xz
  2326. Source2311: typeface.tar.xz
  2327. Source2312: typogrid.doc.tar.xz
  2328. Source2313: typogrid.source.tar.xz
  2329. Source2314: typogrid.tar.xz
  2330. Source2315: ucs.doc.tar.xz
  2331. Source2316: ucs.tar.xz
  2332. Source2317: uebungsblatt.doc.tar.xz
  2333. Source2318: uebungsblatt.tar.xz
  2334. Source2319: umoline.doc.tar.xz
  2335. Source2320: umoline.source.tar.xz
  2336. Source2321: umoline.tar.xz
  2337. Source2322: underlin.doc.tar.xz
  2338. Source2323: underlin.source.tar.xz
  2339. Source2324: underlin.tar.xz
  2340. Source2325: underoverlap.doc.tar.xz
  2341. Source2326: underoverlap.tar.xz
  2342. Source2327: undolabl.doc.tar.xz
  2343. Source2328: undolabl.source.tar.xz
  2344. Source2329: undolabl.tar.xz
  2345. Source2330: units.doc.tar.xz
  2346. Source2331: units.source.tar.xz
  2347. Source2332: units.tar.xz
  2348. Source2333: unravel.doc.tar.xz
  2349. Source2334: unravel.source.tar.xz
  2350. Source2335: unravel.tar.xz
  2351. Source2336: upmethodology.doc.tar.xz
  2352. Source2337: upmethodology.tar.xz
  2353. Source2338: upquote.doc.tar.xz
  2354. Source2339: upquote.source.tar.xz
  2355. Source2340: upquote.tar.xz
  2356. Source2341: uri.doc.tar.xz
  2357. Source2342: uri.source.tar.xz
  2358. Source2343: uri.tar.xz
  2359. Source2344: ushort.doc.tar.xz
  2360. Source2345: ushort.source.tar.xz
  2361. Source2346: ushort.tar.xz
  2362. Source2347: uwmslide.doc.tar.xz
  2363. Source2348: uwmslide.tar.xz
  2364. Source2349: varindex.doc.tar.xz
  2365. Source2350: varindex.source.tar.xz
  2366. Source2351: varindex.tar.xz
  2367. Source2352: varsfromjobname.doc.tar.xz
  2368. Source2353: varsfromjobname.tar.xz
  2369. Source2354: varwidth.doc.tar.xz
  2370. Source2355: varwidth.tar.xz
  2371. Source2356: vdmlisting.doc.tar.xz
  2372. Source2357: vdmlisting.tar.xz
  2373. Source2358: verbasef.doc.tar.xz
  2374. Source2359: verbasef.tar.xz
  2375. Source2360: verbatimbox.doc.tar.xz
  2376. Source2361: verbatimbox.tar.xz
  2377. Source2362: verbatimcopy.doc.tar.xz
  2378. Source2363: verbatimcopy.tar.xz
  2379. Source2364: verbdef.doc.tar.xz
  2380. Source2365: verbdef.tar.xz
  2381. Source2366: verbments.doc.tar.xz
  2382. Source2367: verbments.tar.xz
  2383. Source2368: version.doc.tar.xz
  2384. Source2369: version.tar.xz
  2385. Source2370: versions.doc.tar.xz
  2386. Source2371: versions.tar.xz
  2387. Source2372: vertbars.doc.tar.xz
  2388. Source2373: vertbars.source.tar.xz
  2389. Source2374: vertbars.tar.xz
  2390. Source2375: vgrid.doc.tar.xz
  2391. Source2376: vgrid.source.tar.xz
  2392. Source2377: vgrid.tar.xz
  2393. Source2378: vhistory.doc.tar.xz
  2394. Source2379: vhistory.tar.xz
  2395. Source2380: vmargin.doc.tar.xz
  2396. Source2381: vmargin.source.tar.xz
  2397. Source2382: vmargin.tar.xz
  2398. Source2383: volumes.doc.tar.xz
  2399. Source2384: volumes.source.tar.xz
  2400. Source2385: volumes.tar.xz
  2401. Source2386: vpe.doc.tar.xz
  2402. Source2387: vpe.tar.xz
  2403. Source2388: vruler.doc.tar.xz
  2404. Source2389: vruler.tar.xz
  2405. Source2390: vwcol.doc.tar.xz
  2406. Source2391: vwcol.source.tar.xz
  2407. Source2392: vwcol.tar.xz
  2408. Source2393: wallpaper.doc.tar.xz
  2409. Source2394: wallpaper.tar.xz
  2410. Source2395: warning.doc.tar.xz
  2411. Source2396: warning.tar.xz
  2412. Source2397: warpcol.doc.tar.xz
  2413. Source2398: warpcol.source.tar.xz
  2414. Source2399: warpcol.tar.xz
  2415. Source2400: was.doc.tar.xz
  2416. Source2401: was.source.tar.xz
  2417. Source2402: was.tar.xz
  2418. Source2403: widetable.doc.tar.xz
  2419. Source2404: widetable.source.tar.xz
  2420. Source2405: widetable.tar.xz
  2421. Source2406: williams.doc.tar.xz
  2422. Source2407: williams.tar.xz
  2423. Source2408: withargs.doc.tar.xz
  2424. Source2409: withargs.tar.xz
  2425. Source2410: wordlike.doc.tar.xz
  2426. Source2411: wordlike.source.tar.xz
  2427. Source2412: wordlike.tar.xz
  2428. Source2413: wrapfig.doc.tar.xz
  2429. Source2414: wrapfig.tar.xz
  2430. Source2415: xargs.doc.tar.xz
  2431. Source2416: xargs.source.tar.xz
  2432. Source2417: xargs.tar.xz
  2433. Source2418: xcomment.doc.tar.xz
  2434. Source2419: xcomment.tar.xz
  2435. Source2420: xhfill.doc.tar.xz
  2436. Source2421: xhfill.tar.xz
  2437. Source2422: xtab.doc.tar.xz
  2438. Source2423: xtab.source.tar.xz
  2439. Source2424: xtab.tar.xz
  2440. Source2425: xdoc.doc.tar.xz
  2441. Source2426: xdoc.source.tar.xz
  2442. Source2427: xdoc.tar.xz
  2443. Source2428: xfor.doc.tar.xz
  2444. Source2429: xfor.source.tar.xz
  2445. Source2430: xfor.tar.xz
  2446. Source2431: xifthen.doc.tar.xz
  2447. Source2432: xifthen.tar.xz
  2448. Source2433: xint.doc.tar.xz
  2449. Source2434: xint.source.tar.xz
  2450. Source2435: xint.tar.xz
  2451. Source2436: xmpincl.doc.tar.xz
  2452. Source2437: xmpincl.source.tar.xz
  2453. Source2438: xmpincl.tar.xz
  2454. Source2439: xnewcommand.doc.tar.xz
  2455. Source2440: xnewcommand.tar.xz
  2456. Source2441: xoptarg.doc.tar.xz
  2457. Source2442: xoptarg.tar.xz
  2458. Source2443: xpatch.doc.tar.xz
  2459. Source2444: xpatch.source.tar.xz
  2460. Source2445: xpatch.tar.xz
  2461. Source2446: xpeek.doc.tar.xz
  2462. Source2447: xpeek.source.tar.xz
  2463. Source2448: xpeek.tar.xz
  2464. Source2449: xpunctuate.doc.tar.xz
  2465. Source2450: xpunctuate.source.tar.xz
  2466. Source2451: xpunctuate.tar.xz
  2467. Source2452: xstring.doc.tar.xz
  2468. Source2453: xstring.tar.xz
  2469. Source2454: xwatermark.doc.tar.xz
  2470. Source2455: xwatermark.tar.xz
  2471. Source2456: xytree.doc.tar.xz
  2472. Source2457: xytree.tar.xz
  2473. Source2458: yafoot.doc.tar.xz
  2474. Source2459: yafoot.source.tar.xz
  2475. Source2460: yafoot.tar.xz
  2476. Source2461: yagusylo.doc.tar.xz
  2477. Source2462: yagusylo.source.tar.xz
  2478. Source2463: yagusylo.tar.xz
  2479. Source2464: ydoc.doc.tar.xz
  2480. Source2465: ydoc.source.tar.xz
  2481. Source2466: ydoc.tar.xz
  2482. Source2467: yplan.doc.tar.xz
  2483. Source2468: yplan.tar.xz
  2484. Source2469: zed-csp.doc.tar.xz
  2485. Source2470: zed-csp.tar.xz
  2486. Source2471: ziffer.doc.tar.xz
  2487. Source2472: ziffer.tar.xz
  2488. Source2473: zwgetfdate.doc.tar.xz
  2489. Source2474: zwgetfdate.tar.xz
  2490. Source2475: zwpagelayout.doc.tar.xz
  2491. Source2476: zwpagelayout.tar.xz
  2492. Requires: texlive = %{version}
  2493. Requires: texlive-collection-latexrecommended = %{version}
  2494. Requires: texlive-collection-pictures = %{version}
  2495. Requires(post): texlive = %{version}
  2496. Requires(postun): texlive = %{version}
  2497. BuildArch: noarch
  2498. Buildroot: %{_tmppath}/%{name}-%{version}-root
  2499. Vendor: Project Vine
  2500. Distribution: Vine Linux
  2501. Packager: munepi
  2502. %description
  2503. The TeX Live software distribution offers a complete TeX system for a
  2504. variety of Unix, Macintosh, Windows and other platforms. It
  2505. encompasses programs for editing, typesetting, previewing and printing
  2506. of TeX documents in many different languages, and a large collection
  2507. of TeX macros and font libraries.
  2508. The distribution includes extensive general documentation about TeX,
  2509. as well as the documentation for the included software packages.
  2510. This package is a collection of LaTeX additional packages:
  2511. A very large collection of add-on packages for LaTeX.
  2512. This package contains the following CTAN packages:
  2513. 2up:
  2514. ESIEEcv: Curriculum vitae for French use.
  2515. GS1: Typeset EAN barcodes using TeX rules, only.
  2516. HA-prosper: Patches and improvements for prosper.
  2517. Tabbing: Tabbing with accented letters.
  2518. a0poster: Support for designing posters on large paper.
  2519. a4wide: "Wide" a4 layout.
  2520. a5comb: Support for a5 paper sizes.
  2521. abraces: Asymmetric over-/underbraces in maths.
  2522. abstract: Control the typesetting of the abstract environment.
  2523. achemso: Support for American Chemical Society journal submissions.
  2524. acro: Typeset acronyms.
  2525. acronym: Expand acronyms at least once.
  2526. acroterm: Manage and index acronyms and terms.
  2527. actuarialangle: Symbol for use in "present value" statements of an annuity.
  2528. addlines: A user-friendly wrapper around enlargethispage.
  2529. adjmulticol: Adjusting margins for multicolumn and single column output.
  2530. adjustbox: Graphics package-alike macros for "general" boxes.
  2531. adrconv: BibTeX styles to implement an address database.
  2532. advdate: Print a date relative to "today".
  2533. akktex: A collection of packages and classes.
  2534. akletter: Comprehensive letter support.
  2535. alnumsec: Alphanumeric section numbering.
  2536. alterqcm: Multiple choice questionnaires in two column tables.
  2537. altfont: Alternative font handling in LaTeX.
  2538. amsaddr: Alter the position of affiliations in amsart.
  2539. animate: Create PDF animations from graphics files and inline graphics.
  2540. anonchap: Make chapters be typeset like sections.
  2541. answers: Setting questions (or exercises) and answers.
  2542. anyfontsize: Select any font size in LaTeX.
  2543. appendix: Extra control of appendices.
  2544. appendixnumberbeamer: Manage frame numbering in appendixes in beamer.
  2545. apptools: Tools for customising appendices.
  2546. arcs: Draw arcs over and under text
  2547. arrayjobx: Array data structures for (La)TeX.
  2548. arraysort: Sort arrays (or portions of them).
  2549. arydshln: Horizontal and vertical dashed lines in arrays and tabulars.
  2550. assignment: A class file for typesetting homework and lab assignments
  2551. assoccnt: Associate counters, making them step when a master steps.
  2552. attachfile: Attach arbitrary files to a PDF document
  2553. autopdf: Conversion of graphics to pdfLaTeX-compatible formats.
  2554. authoraftertitle: Make author, etc., available after maketitle.
  2555. authorindex: Index citations by author names.
  2556. autonum: Automatic equation references.
  2557. avremu: An 8-Bit Microcontroller Simulator written in LaTeX.
  2558. background: Placement of background material on pages of a document.
  2559. bashful: Invoke bash commands from within LaTeX.
  2560. basicarith: Macros for typesetting basic arithmetic.
  2561. bchart: Draw simple bar charts in LaTeX.
  2562. beamer2thesis: Thesis presentations using beamer.
  2563. beameraudience: Assembling beamer frames according to audience
  2564. beamerdarkthemes: Dark color themes for beamer.
  2565. beamerposter: Extend beamer and a0poster for custom sized posters.
  2566. beamersubframe: Reorder frames in the PDF file.
  2567. beamertheme-upenn-bc: Beamer themies for Boston College and the University of Pennsylvania.
  2568. beamerthemejltree: Contributed beamer theme.
  2569. beamerthemenirma: A Beamer theme for academic presentations.
  2570. beamerthemephnompenh:
  2571. beton: Use Concrete fonts.
  2572. bez123: Support for Bezier curves.
  2573. bezos: Packages by Javier Bezos.
  2574. bhcexam: An exam class designed for Mathematics Teachers in China.
  2575. bigfoot: Footnotes for critical editions.
  2576. bigints: Writing big integrals.
  2577. bizcard: Typeset business cards.
  2578. blindtext: Producing 'blind' text for testing.
  2579. blkarray: Extended array and tabular.
  2580. block: A block letter style for the letter class.
  2581. blowup: Upscale or downscale all pages of a document.
  2582. bnumexpr: Extends eTeX's numexpr...relax construct to big integers.
  2583. boites: Boxes that may break across pages
  2584. bold-extra: Use bold small caps and typewriter fonts.
  2585. bookest: Extended book class.
  2586. booklet: Aids for printing simple booklets.
  2587. boolexpr: A boolean expression evaluator and a switch command.
  2588. bophook: Provides an At-Begin-Page hook.
  2589. boxedminipage: A package for producing framed minipages.
  2590. boxhandler: Flexible Captioning and Deferred Box/List Printing.
  2591. bracketkey: Produce bracketed identification keys.
  2592. braket: Dirac bra-ket and set notations.
  2593. breakurl: Line-breakable url-like links in hyperref when compiling via dvips/ps2pdf.
  2594. bullcntr: Display list item counter as regular pattern of bullets.
  2595. bussproofs: Proof trees in the style of the sequent calculus.
  2596. bxdpx-beamer: Dvipdfmx extras for use with beamer.
  2597. calcage: Calculate the age of something, in years.
  2598. calctab: Language for numeric tables.
  2599. calculator: Use LaTeX as a scientific calculator.
  2600. calrsfs: Copperplate calligraphic letters in LaTeX.
  2601. cals: Multipage tables with wide range of features.
  2602. calxxxx-yyyy: Print a calendar for a group of years.
  2603. cancel: Place lines through maths formulae.
  2604. canoniclayout: Create canonical page layouts with memoir.
  2605. capt-of: Captions on more than floats.
  2606. captcont: Retain float number across several floats.
  2607. captdef: Declare free-standing caption commands.
  2608. cases: Numbered cases environment
  2609. casyl: Typeset Cree/Inuktitut in Canadian Aboriginal Syllabics.
  2610. catchfilebetweentags: Catch text delimited by docstrip tags.
  2611. catechis: Macros for typesetting catechisms.
  2612. catoptions: Preserving and recalling standard catcodes.
  2613. cbcoptic: Coptic fonts and LaTeX macros for general usage and for philology.
  2614. ccaption: Continuation headings and legends for floats.
  2615. cclicenses: Typeset Creative Commons licence logos.
  2616. cd: Typeset CD covers.
  2617. cd-cover: Typeset CD covers.
  2618. cdpbundl: Business letters in the Italian style.
  2619. cellspace: Ensure minimal spacing of table cells.
  2620. censor: Facilities for controlling restricted text in a document.
  2621. changebar: Generate changebars in LaTeX documents.
  2622. changelayout: Change the layout of individual pages and their text.
  2623. changepage: Margin adjustment and detection of odd/even pages.
  2624. changes: Manual change markup.
  2625. chappg: Page numbering by chapter.
  2626. chapterfolder: Package for working with complicated folder structures.
  2627. chet: LaTeX layout inspired by harvmac.
  2628. chextras: A companion package for the Swiss typesetter.
  2629. chkfloat: Warn whenever a float is placed "to far away".
  2630. chletter: Class for typesetting letters to Swiss rules.
  2631. chngcntr: Change the resetting of counters.
  2632. chronology: Provides a horizontal timeline.
  2633. circ: Macros for typesetting circuit diagrams.
  2634. classics: Cite classic works.
  2635. clefval: Key/value support with a hash.
  2636. cleveref: Intelligent cross-referencing.
  2637. clipboard: Copy and paste into and across documents.
  2638. clock: Graphical and textual clocks for TeX and LaTeX.
  2639. cmdstring: Get command name reliably.
  2640. cmdtrack: Check used commands.
  2641. cmsd: Interfaces to the CM Sans Serif Bold fonts.
  2642. cnltx: LaTeX tools and documenting facilities.
  2643. cntformats: A different way to read counters.
  2644. codedoc: LaTeX code and documentation in LaTeX-format file.
  2645. codepage: Support for variant code pages.
  2646. codesection: Provides an environment that may be conditionally included.
  2647. collcell: Collect contents of a tabular cell as argument to a macro.
  2648. collectbox: Collect and process macro arguments as boxes.
  2649. colordoc: Coloured syntax highlights in documentation.
  2650. colorinfo: Retrieve colour model and values for defined colours.
  2651. colortab: Shade cells of tables and halign.
  2652. colorwav: Colours by wavelength of visible light.
  2653. colorweb: Extend the color package colour space.
  2654. colourchange: colourchange
  2655. combelow: Typeset "comma-below" letters, as in Romanian.
  2656. combine: Bundle individual documents into a single document.
  2657. comma: Formats a number by inserting commas.
  2658. commado: Expandable iteration on comma-separated and filename lists.
  2659. comment: Selectively include/excludes portions of text.
  2660. concepts: Keeping track of formal 'concepts' for a particular field.
  2661. concprog: Concert programmes.
  2662. constants: Automatic numbering of constants.
  2663. contour: Print a coloured contour around text.
  2664. contracard: Generate calling cards for dances.
  2665. cooking: Typeset recipes.
  2666. cool: COntent-Oriented LaTeX.
  2667. coollist: Manipulate COntent Oriented LaTeX Lists.
  2668. coolstr: String manipulation in LaTeX.
  2669. coolthms: Reference items in a theorem environment.
  2670. cooltooltips: Associate a pop-up window and tooltip with PDF hyperlinks.
  2671. coordsys: Draw cartesian coordinate systems.
  2672. copyrightbox: Provide copyright notices for images in a document.
  2673. coseoul: Context sensitive outline elements
  2674. counttexruns: Count compilations of a document.
  2675. courseoutline: Prepare university course outlines.
  2676. coursepaper: Prepare university course papers.
  2677. coverpage: Automatic cover page creation for scientific papers.
  2678. cprotect: Allow verbatim, etc., in macro arguments.
  2679. crbox: Boxes with crossed corners.
  2680. crossreference: Crossreferences within documents.
  2681. csquotes: Context sensitive quotation facilities.
  2682. csvsimple: Simple CSV file processing.
  2683. csvtools: Reading data from CSV files.
  2684. cuisine: Typeset recipes.
  2685. currfile: Provide file name and path of input files.
  2686. currvita: Typeset a curriculum vitae.
  2687. cutwin: Cut a window in a paragraph, typeset material in it.
  2688. cv: A package for creating a curriculum vitae.
  2689. cv4tw: LaTeX CV class, with extended details.
  2690. cweb-latex: A LaTeX version of CWEB.
  2691. dashbox: Draw dashed boxes.
  2692. dashrule: Draw dashed rules.
  2693. dashundergaps: Underline with dotted or dashed lines.
  2694. dataref: Manage references to experimental data.
  2695. datatool: Tools to load and manipulate data.
  2696. dateiliste: Extensions of the listfiles concept.
  2697. datenumber: Convert a date into a number and vice versa.
  2698. datetime: Change format of today with commands for current time.
  2699. dblfloatfix: Fixes for twocolumn floats.
  2700. decimal: LaTeX package for the English raised decimal point.
  2701. decorule: Decorative swelled rule using font character.
  2702. delim: Simplify typesetting mathematical delimiters.
  2703. delimtxt: Read and parse text tables.
  2704. detlev-cm:
  2705. diagbox: Table heads with diagonal lines.
  2706. diagnose: A diagnostic tool for a TeX installation.
  2707. dialogl: Macros for constructing interactive LaTeX scripts.
  2708. dichokey: Construct dichotomous identification keys.
  2709. dinbrief: German letter DIN style.
  2710. directory: An address book using BibTeX.
  2711. dirtytalk: A package to typeset quotations easier.
  2712. dlfltxb: Macros related to "Introdktion til LaTeX".
  2713. dnaseq: Format DNA base sequences.
  2714. docmfp: Document non-LaTeX code.
  2715. docmute: Input files ignoring LaTeX preamble, etc.
  2716. doctools: Tools for the documentation of LaTeX code.
  2717. documentation: Documentation support for C, Java and assembler code.
  2718. doi: Create correct hyperlinks for DOI numbers.
  2719. dotarrow: Extendable dotted arrows.
  2720. dotseqn: Flush left equations with dotted leaders to the numbers.
  2721. download: Allow LaTeX to download files using an external process.
  2722. dox: Extend the doc package.
  2723. dpfloat: Support for double-page floats.
  2724. dprogress: LaTeX-relevant log information for debugging.
  2725. drac: Declare active character substitution, robustly.
  2726. draftcopy: Identify draft copies.
  2727. draftwatermark: Put a grey textual watermark on document pages.
  2728. dtk: Document class for the journal of DANTE.
  2729. dtxgallery: A small collection of minimal DTX examples.
  2730. dvdcoll: A class for typesetting DVD archives
  2731. dynblocks: A simple way to create dynamic blocks for Beamer.
  2732. easy: A collection of easy-to-use macros.
  2733. easy-todo: To-do notes in a document.
  2734. easyfig: Simplifying the use of common figures.
  2735. easylist: Lists using a single active character.
  2736. ean13isbn: Print EAN13 for ISBN.
  2737. ebezier: Device independent picture environment enhancement.
  2738. ecclesiastic: Typesetting Ecclesiastic Latin.
  2739. ecv: A fancy Curriculum Vitae class.
  2740. ed: Editorial Notes for LaTeX documents.
  2741. edmargin: Multiple series of endnotes for critical editions.
  2742. eemeir: Adjust the gender of words in a document.
  2743. efbox: Extension of fbox, with controllable frames and colours.
  2744. egplot: Encapsulate Gnuplot sources in LaTeX documents.
  2745. ellipsis: Fix uneven spacing around ellipses in LaTeX text mode.
  2746. elmath: Mathematics in Greek texts.
  2747. elpres: A simple class for electronic presentations
  2748. emarks: Named mark registers with e-TeX.
  2749. embedall: Embed source files into the generated PDF.
  2750. embrac: Upright brackets in emphasised text.
  2751. emptypage: Make empty pages really empty.
  2752. emulateapj: Produce output similar to that of APJ.
  2753. endfloat: Move floats to the end, leaving markers where they belong.
  2754. endheads: Running headers of the form "Notes to pp.xx-yy"
  2755. endnotes: Place footnotes at the end.
  2756. engpron: Helps to type the pronunciation of English words.
  2757. engrec: Enumerate with lower- or uppercase Greek letters.
  2758. enotez: Support for end-notes.
  2759. enumitem: Control layout of itemize, enumerate, description.
  2760. enumitem-zref: Extended references to items for enumitem package.
  2761. envbig: Printing addresses on envelopes.
  2762. environ: A new interface for environments in LaTeX.
  2763. envlab: Addresses on envelopes or mailing labels.
  2764. epigraph: A package for typesetting epigraphs.
  2765. epiolmec: Typesetting the Epi-Olmec Language.
  2766. eqell: Sympathetically spaced ellipsis after punctuation.
  2767. eqlist: Description lists with equal indentation.
  2768. eqname: Name tags for equations.
  2769. eqparbox: Create equal-widthed parboxes.
  2770. errata: Error markup for LaTeX documents.
  2771. esami: Typeset exams with scrambled questions and answers.
  2772. esdiff: Simplify typesetting of derivatives.
  2773. esint: Extended set of integrals for Computer Modern.
  2774. esint-type1: Font esint10 in Type 1 format
  2775. etaremune: Reverse-counting enumerate environment.
  2776. etextools: e-TeX tools for LaTeX users and package writers.
  2777. etoc: Completely customisable TOCs.
  2778. etoolbox: Tool-box for LaTeX programmers using e-TeX.
  2779. eukdate: UK format dates, with weekday.
  2780. europecv: Unofficial class for European curricula vitae.
  2781. everyhook: Hooks for standard TeX token lists.
  2782. everypage: Provide hooks to be run on every page of a document.
  2783. exam: Package for typesetting exam scripts.
  2784. exam-n: Exam class, focused on collaborative authoring.
  2785. examdesign: LaTeX class for typesetting exams.
  2786. example: Typeset examples for TeX courses.
  2787. examplep: Verbatim phrases and listings in LaTeX.
  2788. exceltex: Get data from Excel files into LaTeX.
  2789. excludeonly: Prevent files being include-ed.
  2790. exercise: Typeset exercises, problems, etc. and their answers
  2791. exp-testopt: Expandable @testopt (and related) macros.
  2792. expdlist: Expanded description environments.
  2793. export: Import and export values of LaTeX registers.
  2794. exsheets: Create exercise sheets and exams.
  2795. exsol: Exercises and solutions from the same source, into a book.
  2796. extract: Extract parts of a document and write to another document.
  2797. facsimile: Document class for preparing faxes.
  2798. factura: Write invoices according to Venezuelan law.
  2799. fancylabel: Complex labelling with LaTeX.
  2800. fancynum: Typeset numbers.
  2801. fancypar: Decoration of individual paragraphs.
  2802. fancytabs: Fancy page border tabs.
  2803. fancytooltips: Include a wide range of material in PDF tooltips.
  2804. fifo-stack: FIFO and stack implementation for package writers
  2805. figsize: Auto-size graphics.
  2806. filecontents: Extended filecontents and filecontents* environments
  2807. filedate: Access and compare info and modification dates.
  2808. filehook: Hooks for input files.
  2809. fileinfo: Enhanced display of LaTeX File Information.
  2810. filemod: Provide file modification times, and compare them.
  2811. fink: The LaTeX2e File Name Keeper.
  2812. finstrut: Adjust behaviour of the ends of footnotes.
  2813. fixfoot: Multiple use of the same footnote text.
  2814. fixme: Insert "fixme" notes into draft documents.
  2815. fixmetodonotes: Add notes on document development.
  2816. fjodor: A selection of layout styles.
  2817. flabels: Labels for files and folders.
  2818. flacards: Generate flashcards for printing.
  2819. flagderiv: Flag style derivation package
  2820. flashcards: A class for typesetting flashcards.
  2821. flashmovie: Directly embed flash movies into PDF files.
  2822. flipbook: Typeset flipbook animations, in the corners of documents.
  2823. flippdf: Horizontal flipping of pages with pdfLaTeX.
  2824. floatflt: Wrap text around floats.
  2825. floatrow: Modifying the layout of floats.
  2826. flowfram: Create text frames for posters, brochures or magazines.
  2827. fmp: Include Functional MetaPost in LaTeX.
  2828. fmtcount: Display the value of a LaTeX counter in a variety of formats.
  2829. fn2end: Convert footnotes to endnotes.
  2830. fnbreak: Warn for split footnotes.
  2831. fncychap: Seven predefined chapter heading styles.
  2832. fncylab: Alter the format of label references.
  2833. fnpara: Footnotes in paragraphs.
  2834. fnpct: Manage footnote marks' interaction with punctuation.
  2835. fnumprint: Print a number in 'appropriate' format.
  2836. foilhtml: Interface between foiltex and LaTeX2HTML.
  2837. fontaxes: Additional font axes for LaTeX.
  2838. fonttable: Print font tables from a LaTeX document.
  2839. footmisc: A range of footnote options.
  2840. footnotebackref: Back-references from footnotes.
  2841. footnoterange: References to ranges of footnotes.
  2842. footnpag: Per-page numbering of footnotes.
  2843. forarray: Using array structures in LaTeX.
  2844. foreign: Systematic treatment of 'foreign' words in documents.
  2845. forloop: Iteration in LaTeX.
  2846. formlett: Letters to multiple recipients.
  2847. formular: Create forms containing field for manual entry.
  2848. fragments: Fragments of LaTeX code.
  2849. frame: Framed boxes for Plain TeX.
  2850. framed: Framed or shaded regions that can break across pages.
  2851. frankenstein: A collection of LaTeX packages.
  2852. frege: Typeset fregean Begriffsschrift.
  2853. ftcap: Allows caption at the beginning of a table-environment.
  2854. ftnxtra: Extend the applicability of the footnote command.
  2855. fullblck: Left-blocking for letter class.
  2856. fullminipage: Minipage spanning a complete page
  2857. fullwidth: Adjust margins of text block.
  2858. fundus-calligra: Support for the calligra font in LaTeX documents.
  2859. fundus-cyr: Support for Washington University Cyrillic fonts.
  2860. fundus-sueterlin: Sutterlin
  2861. fwlw: Get first and last words of a page.
  2862. g-brief: Letter document class.
  2863. gauss: A package for Gaussian operations.
  2864. gcard: Arrange text on a sheet to fold into a greeting card.
  2865. gcite: Citations in a reader-friendly style.
  2866. genmpage: Generalization of LaTeX's minipages.
  2867. getfiledate: Find the date of last modification of a file.
  2868. ginpenc: Modification of inputenc for German.
  2869. gitinfo: Access metadata from the git distributed version control system.
  2870. gitinfo2: Access metadata from the git distributed version control system.
  2871. gloss: Create glossaries using BibTeX.
  2872. glossaries: Create glossaries and lists of acronyms.
  2873. gmdoc: Documentation of LaTeX packages.
  2874. gmdoc-enhance: Some enhancements to the gmdoc package.
  2875. gmiflink: Simplify usage of hypertarget and hyperlink.
  2876. gmutils: Support macros for other packages.
  2877. gmverb: A variant of LaTeX verb, verbatim and shortvrb.
  2878. graphbox: Extend graphicx to improve placement of graphics.
  2879. graphicx-psmin: Reduce size of PostScript files by not repeating images.
  2880. graphicxbox: Insert a graphical image as a background.
  2881. grfpaste: Include fragments of a dvi file.
  2882. grid: Grid typesetting in LaTeX.
  2883. grid-system: Page organisation, modelled on CSS facilities.
  2884. gridset: Grid, a.k.a. in-register, setting.
  2885. gtl: Manipulating generalized token lists.
  2886. guitlogo: Macros for typesetting the GuIT logo.
  2887. handout: Create handout for auditors of a talk
  2888. hanging: Hanging paragraphs.
  2889. hardwrap: Hard wrap text to a certain character length.
  2890. harnon-cv: A CV document class with a vertical timeline for experience.
  2891. harpoon: Extra harpoons, using the graphics package.
  2892. hc: Replacement for the LaTeX classes.
  2893. he-she: Alternating pronouns to aid gender-neutral writing.
  2894. hhtensor: Print vectors, matrices, and tensors.
  2895. histogr: Draw histograms with the LaTeX picture environment.
  2896. hitec: Class for documentation.
  2897. hletter: Flexible letter typesetting with flexible page headings.
  2898. hpsdiss: A dissertation class.
  2899. hrefhide: Suppress hyper links when printing.
  2900. hvindex: Support for indexing.
  2901. hypdvips: Hyperref extensions for use with dvips.
  2902. hyper: Hypertext cross referencing.
  2903. hypernat: Allow hyperref and natbib to work together.
  2904. hyperref-docsrc:
  2905. hyperxmp: Embed XMP metadata within a LaTeX document.
  2906. hyphenat: Disable/enable hypenation.
  2907. idxcmds: Semantic commands for adding formatted index entries.
  2908. idxlayout: Configurable index layout, responsive to KOMA-Script and memoir.
  2909. ifmslide: Presentation slides for screen and printouts.
  2910. ifmtarg: If-then-else command for processing potentially empty arguments.
  2911. ifnextok: Utility macro: peek ahead without ignoring spaces.
  2912. ifoddpage: Determine if the current page is odd or even.
  2913. ifplatform: Conditionals to test which platform is being used.
  2914. ifthenx: Extra tests for ifthenelse.
  2915. iitem: Multiple level of lists in one list-like environment.
  2916. image-gallery: Create an overview of pictures from a digital camera or from other sources.
  2917. imakeidx: A package for producing multiple indexes.
  2918. import: Establish input relative to a directory.
  2919. incgraph: Sophisticated graphics inclusion in a PDF document.
  2920. inlinedef: Inline expansions within definitions.
  2921. inputtrc: Trace which file loads which.
  2922. interactiveworkbook: LaTeX-based interactive PDF on the Web.
  2923. interfaces: Set parameters for other packages, conveniently.
  2924. inversepath: Calculate inverse file paths.
  2925. invoice: Generate invoices.
  2926. iso: Generic ISO standards typesetting macros.
  2927. iso10303: Typesetting the STEP standards.
  2928. isodate: Tune the output format of dates according to language.
  2929. isonums: Display numbers in maths mode according to ISO 31-0.
  2930. isodoc: A LaTeX class for typesetting letters and invoices.
  2931. isorot: Rotation of document elements.
  2932. isotope: A package for typesetting isotopes
  2933. issuulinks: Produce external links instead of internal ones.
  2934. iwhdp: Halle Institute for Economic Research (IWH) Discussion Papers.
  2935. jlabels: Make letter-sized pages of labels.
  2936. jvlisting: A replacement for LaTeX's verbatim package.
  2937. kantlipsum: Generate sentences in Kant's style.
  2938. kerntest: Print tables and generate control files to adjust kernings.
  2939. keycommand: Simple creation of commands with key-value arguments.
  2940. keyreader: A robust interface to xkeyval.
  2941. keystroke: Graphical representation of keys on keyboard.
  2942. keyval2e: A lightweight and robust key-value parser.
  2943. kix: Typeset KIX codes.
  2944. koma-moderncvclassic: Makes the style and command of moderncv (style classic) available for koma-classes and thus compatible with biblatex.
  2945. koma-script-sfs: Koma-script letter class option for Finnish.
  2946. komacv: Typesetting a beuatiful CV with various style options.
  2947. ktv-texdata: Extract subsets of documents.
  2948. l3build: A testing and building system for (La)TeX.
  2949. labbook: Typeset laboratory journals.
  2950. labelcas: Check the existence of labels, and fork accordingly.
  2951. labels: Print sheets of sticky labels.
  2952. lastpackage: Indicates the last loaded package.
  2953. lastpage: Reference last page for Page N of M type footers.
  2954. latexdemo: Demonstrate LaTeX code with its resulting output.
  2955. latex-tds: A structured copy of the LaTeX distribution.
  2956. layouts: Display various elements of a document's layout.
  2957. lazylist: Lists in TeX's "mouth".
  2958. lcd: Alphanumerical LCD-style displays.
  2959. lcg: Generate random integers.
  2960. leading: Define leading with a length.
  2961. leaflet: Create small handouts (flyers).
  2962. leftidx: Left and right subscripts and superscripts in math mode.
  2963. lengthconvert: Express lengths in arbitrary units.
  2964. lettre: Letters and faxes in French.
  2965. lettrine: Typeset dropped capitals.
  2966. lewis: Draw Lewis structures.
  2967. lhelp: Miscellaneous helper packages.
  2968. libgreek: Use Libertine or Biolinum Greek glyphs in mathematics.
  2969. limap: Typeset maps and blocks according to the Information Mapping method.
  2970. linegoal: A "dimen" that returns the space left on the line.
  2971. lipsum: Easy access to the Lorem Ipsum dummy text.
  2972. lisp-on-tex: Execute LISP code in a LaTeX document.
  2973. listing: Produce formatted program listings.
  2974. listlbls: Creates a list of all labels used throughout a document
  2975. listofsymbols: Create and manipulate lists of symbols
  2976. listliketab: Typeset lists as tables.
  2977. lkproof: LK Proof figure macros.
  2978. lmake: Process lists to do repetitive actions.
  2979. locality: Various macros for keeping things local.
  2980. localloc: Macros for localizing TeX register allocations.
  2981. logbox: e-TeX showbox facilities for exploration purposes.
  2982. logical-markup-utils: Packages for language-dependent inline quotes and dashes.
  2983. logpap: Generate logarithmic graph paper with LaTeX.
  2984. longfigure: Provides a figure-like environment that break over pages.
  2985. longnamefilelist: Tidy listfiles with long file names.
  2986. loops: General looping macros for use with LaTeX.
  2987. lsc: Typesetting Live Sequence Charts.
  2988. lstaddons: Add-on packages for listings: autogobble and line background.
  2989. lt3graph: Provide a graph datastructure for experimental LaTeX3.
  2990. ltablex: Table package extensions.
  2991. ltabptch: Bug fix for longtable.
  2992. ltxdockit: Documentation support.
  2993. ltxindex: A LaTeX package to typeset indices with GNU's Texindex.
  2994. ltxkeys: A robust key parser for LaTeX.
  2995. ltxnew: A simple means of creating commands.
  2996. ltxtools: A collection of LaTeX API macros.
  2997. macroswap: Swap the definitions of two LaTeX macros.
  2998. magaz: Magazine layout.
  2999. mailing: Macros for mail merging.
  3000. mailmerge: Repeating text field substitution.
  3001. makebarcode: Print various kinds 2/5 and Code 39 bar codes.
  3002. makebox: Defines a makebox* command.
  3003. makecell: Tabular column heads and multilined cells.
  3004. makecirc: A MetaPost library for drawing electrical circuit diagrams.
  3005. makecmds: The new makecommand command always (re)defines a command.
  3006. makedtx: Perl script to help generate dtx and ins files
  3007. makeglos: Include a glossary into a document.
  3008. mandi: Macros for introductory physics and astronomy.
  3009. manfnt: LaTeX support for the TeX book symbols.
  3010. manuscript: Emulate look of a document typed on a typewriter.
  3011. marginfix: Patch marginpar to avoid overfull margins.
  3012. marginnote: Notes in the margin, even where marginpar fails
  3013. mathalfa: General package for loading maths alphabets in LaTeX.
  3014. mathastext: Use the text font in maths mode.
  3015. mathexam: Package for typesetting exams.
  3016. maybemath: Make math bold or italic according to context.
  3017. mbenotes: Notes in tables or images.
  3018. mcaption: Put captions in the margin.
  3019. mceinleger: Creating covers for music cassettes.
  3020. mcite: Multiple items in a single citation.
  3021. mciteplus: Enhanced multiple citations.
  3022. mdframed: Framed environments that can split at page boundaries.
  3023. media9: Multimedia inclusion package with Adobe Reader-9/X compatibility.
  3024. meetingmins: Format written minutes of meetings.
  3025. memexsupp: Experimental memoir support.
  3026. memory: Containers for data in LaTeX.
  3027. menu: Typesetting menus.
  3028. menukeys: Format menu sequences, paths and keystrokes from lists.
  3029. method: Typeset method and variable declarations.
  3030. metre: Support for the work of classicists
  3031. mftinc: Pretty-print Metafont source.
  3032. midpage: Environment for vertical centring.
  3033. minibox: A simple type of box for LaTeX.
  3034. minifp: Fixed-point real computations to 8 decimals.
  3035. minipage-marginpar: Minipages with marginal notes.
  3036. minitoc: Produce a table of contents for each chapter, part or section.
  3037. minorrevision: Quote and refer to a manuscript for minor revisions.
  3038. minted: Highlighted source code for LaTeX.
  3039. minutes: Typeset the minutes of meetings.
  3040. mla-paper: Proper MLA formatting.
  3041. mlist: Logical markup for lists.
  3042. mmap: Include CMap resources in PDF files from PDFTeX.
  3043. mnotes: Margin annotation for collaborative writing.
  3044. moderncv: A modern curriculum vitae class.
  3045. moderntimeline: Timelines for use with moderncv.
  3046. modref: Customisation of cross-references in LaTeX.
  3047. modroman: Write numbers in lower case roman numerals.
  3048. monofill: Alignment of plain text.
  3049. moreenum: More enumeration options.
  3050. morefloats: Increase the number of simultaneous LaTeX floats.
  3051. morehype: Hypertext tools for use with LaTeX.
  3052. moresize: Allows font sizes up to 35.83pt.
  3053. moreverb: Extended verbatim.
  3054. morewrites: Always room for a new write stream.
  3055. movie15: Multimedia inclusion package.
  3056. mparhack: Work around a LaTeX bug in marginpars.
  3057. msc: Draw MSC diagrams.
  3058. msg: A package for LaTeX localisation.
  3059. mslapa: Michael Landy's APA citation style.
  3060. mtgreek: Use italic and upright greek letters with mathtime.
  3061. multenum: Multi-column enumerated lists.
  3062. multibbl: Multiple bibliographies.
  3063. multicap: Format captions inside multicols
  3064. multienv: Multiple environments using a "key=value" syntax.
  3065. multiexpand: Variations on the primitive command expandafter.
  3066. multirow: Create tabular cells spanning multiple rows.
  3067. mversion: Keeping track of document versions.
  3068. mwe: Packages and image files for MWEs.
  3069. mweights: Support for multiple-weight font packages.
  3070. mycv: A list-driven CV class, allowing TikZ decorations.
  3071. mylatexformat: Build a format based on the preamble of a LaTeX file.
  3072. nag: Detecting and warning about obsolete LaTeX commands
  3073. nameauth: Name authority mechanism for consistency in body text and index.
  3074. namespc: Rudimentary C++-like namespaces in LaTeX.
  3075. ncclatex: An extended general-purpose class
  3076. ncctools: A collection of general packages for LaTeX
  3077. needspace: Insert pagebreak if not enough space.
  3078. nestquot: Alternate quotes between double and single with nesting.
  3079. newcommand: Generate new LaTeX command definitions.
  3080. newenviron: Processing an environment's body.
  3081. newfile: User level management of LaTeX input and output.
  3082. newlfm: Write letters, facsimiles, and memos.
  3083. newspaper: Typeset newsletters to resemble newspapers.
  3084. newunicodechar: Definitions of the meaning of Unicode characters.
  3085. newvbtm: Define your own verbatim-like environment.
  3086. newverbs: Define new versions of verb, including short verb versions.
  3087. nextpage: Generalisations of the page advance commands.
  3088. nfssext-cfr: Extensions to the LaTeX NFSS.
  3089. nicefilelist: Provide listfiles alignment.
  3090. niceframe: Support for fancy frames.
  3091. nicetext: Minimal markup for simple text (Wikipedia style) and documentation.
  3092. nlctdoc: Package documentation class.
  3093. noconflict: Resolve macro name conflict between packages.
  3094. noindentafter: Tool to prevent paragraph indentation after environments/macros.
  3095. noitcrul: Improved underlines in mathematics.
  3096. nolbreaks: No line breaks in text.
  3097. nomencl: Produce lists of symbols as in nomenclature.
  3098. nomentbl: Nomenclature typeset in a longtable
  3099. nonfloat: Non-floating table and figure captions.
  3100. nonumonpart: Prevent page numbers on part pages.
  3101. nopageno: No page numbers in LaTeX documents.
  3102. notes: Mark sections of a document.
  3103. notoccite: Prevent trouble from citations in table of contents, etc.
  3104. nowidow: Avoid widows.
  3105. nox: Adaptable tables.
  3106. ntheorem: Enhanced theorem environment.
  3107. numberedblock: Print a block of code, with unique index number.
  3108. numname: Convert a number to its English expression.
  3109. numprint: Print numbers with separators and exponent if necessary.
  3110. ocg-p: PDF OCG support in LaTeX.
  3111. ocgx: Use OCGs within a PDF document without JavaScript.
  3112. ocr-latex: LaTeX support for ocr fonts.
  3113. octavo: Typeset books following classical design and layout.
  3114. oldstyle: Old style numbers in OT1 encoding.
  3115. onlyamsmath: Inhibit use of non-amsmath mathematics markup when using amsmath.
  3116. opcit: Footnote-style bibliographical references.
  3117. optional: Facilitate optional printing of parts of a document.
  3118. outline: List environment for making outlines.
  3119. outliner: Change section levels easily.
  3120. outlines: Produce "outline" lists.
  3121. overpic: Combine LaTeX commands over included graphics.
  3122. pagecolor: Interrogate page colour.
  3123. pagecont: Page numbering that continues between documents.
  3124. pagenote: Notes at end of document.
  3125. pagerange: Flexible and configurable page range typesetting.
  3126. pageslts: Variants of last page labels.
  3127. paper: Versions of article class, tuned for scholarly publications.
  3128. papercdcase: Origami-style folding paper CD case.
  3129. papermas: Compute the mass of a printed version of a document.
  3130. papertex: Class for newspapers, etc.
  3131. paracol: Multiple columns with texts "in parallel".
  3132. paralist: Enumerate and itemize within paragraphs.
  3133. paresse: Define simple macros for greek letters.
  3134. parnotes: Notes after every paragraph (or elsewhere).
  3135. parselines: Apply a macro to each line of an environment.
  3136. pas-cours: Macros useful in preparing teaching material.
  3137. pas-cv: Flexible typesetting of Curricula Vitae.
  3138. pas-tableur: Create a spreadsheet layout.
  3139. patch: Patch loaded packages, etc..
  3140. patchcmd: Change the definition of an existing command.
  3141. pauldoc: German LaTeX package documentation.
  3142. pawpict: Using graphics from PAW.
  3143. pax: Extract and reinsert PDF annotations with pdfTeX.
  3144. pbox: A variable-width parbox command.
  3145. pbsheet: Problem sheet class.
  3146. pdf14: Restore PDF 1.4 to a TeX live 2010 format.
  3147. pdfcomment: A user-friendly interface to pdf annotations.
  3148. pdfcprot: Activating and setting of character protruding using pdflatex.
  3149. pdfmarginpar: Generate marginpar-equivalent PDF annotations.
  3150. pdfscreen: Support screen-based document design.
  3151. pdfslide: Presentation slides using pdftex.
  3152. pdfsync: Provide links between source and PDF.
  3153. pdfwin:
  3154. pdfx: PDF/X-1a and PDF/A-1b support for pdfTeX.
  3155. pecha: Print Tibetan text in the classic pecha layout style.
  3156. perfectcut: Brackets whose size adjusts to the nesting.
  3157. perltex: Define LaTeX macros in terms of Perl code
  3158. permute: Support for symmetric groups.
  3159. petiteannonce: A class for small advertisements.
  3160. philex: Cross references for named and numbered environments.
  3161. photo: A float environment for photographs.
  3162. piff: Macro tools by Mike Piff.
  3163. pkgloader: Managing the options and loading order of other packages.
  3164. placeins: Control float placement.
  3165. plates: Arrange for "plates" sections of documents.
  3166. plantslabels: Write labels for plants.
  3167. plweb: Literate Programming for Prolog with LaTeX.
  3168. polynom: Macros for manipulating polynomials.
  3169. polynomial: Typeset (univariate) polynomials.
  3170. polytable: Tabular-like environments with named columns.
  3171. postcards: Facilitates mass-mailing of postcards (junkmail).
  3172. poster-mac: Make posters and banners with TeX.
  3173. ppr-prv: Prosper preview.
  3174. preprint: A bundle of packages provided "as is".
  3175. pressrelease: A class for typesetting press releases.
  3176. prettyref: Make label references "self-identify".
  3177. preview: Extract bits of a LaTeX source for output.
  3178. printlen: Print lengths using specified units.
  3179. probsoln: Generate problem sheets and their solution sheets.
  3180. program: Typesetting programs and algorithms.
  3181. progress: Creates an overview of a document's state.
  3182. progressbar: Visualize shares of total amounts in the form of a (progress-)bar.
  3183. properties: Load properties from a file.
  3184. prosper: LaTeX class for high quality slides.
  3185. protex: Literate programming package.
  3186. protocol: A class for minutes of meetings.
  3187. psfragx: A psfrag eXtension.
  3188. pst-pdf: Make PDF versions of graphics by processing between runs.
  3189. pstool: Support for psfrag within pdfLaTeX.
  3190. pxgreeks: Shape selection for PX fonts Greek letters.
  3191. python: Embed Python code in LaTeX.
  3192. qcm: A LaTeX2e class for making multiple choice questionnaires
  3193. quoting: Consolidated environment for displayed text.
  3194. qstest: Bundle for unit tests and pattern matching.
  3195. qsymbols: Maths symbol abbreviations.
  3196. quotchap: Decorative chapter headings.
  3197. quotmark: Consistent quote marks.
  3198. ran_toks: Randomise token strings.
  3199. randtext: Randomise the order of characters in strings.
  3200. rccol: Decimal-centered optionally rounded numbers in tabular.
  3201. rcs-multi: Typeset RCS version control in multiple-file documents.
  3202. rcsinfo: Support for the revision control system.
  3203. readarray: Read, store and recall array-formatted data.
  3204. realboxes: Variants of common box-commands that read their content as real box and not as macro argument.
  3205. recipe: A LaTeX class to typeset recipes.
  3206. recipecard: Typeset recipes in note-card-sized boxes.
  3207. rectopma: Recycle top matter.
  3208. refcheck: Check references (in figures, table, equations, etc).
  3209. refenums: Define reference labels items with names of their own.
  3210. reflectgraphics: Techniques for reflecting graphics.
  3211. refman: Format technical reference manuals.
  3212. refstyle: Advanced formatting of cross references.
  3213. regcount: Display the allocation status of the TeX registers.
  3214. regexpatch: High level patching of commands.
  3215. register: Typeset programmable elements in digital hardware (registers).
  3216. regstats: Information about register use.
  3217. relenc: A "relaxed" font encoding.
  3218. relsize: Set the font size relative to the current font size.
  3219. repeatindex: Repeat items in an index after a page or column break
  3220. repltext: Control how text gets copied from a PDF file.
  3221. rjlparshap: Support for use of parshape in LaTeX.
  3222. rlepsf: Rewrite labels in EPS graphics.
  3223. rmpage: A package to help change page layout parameters in LaTeX.
  3224. robustcommand: Declare robust command, with newcommand checks.
  3225. robustindex: Create index with pagerefs.
  3226. romanbar: Write roman number with "bars".
  3227. romanneg: Roman page numbers negative.
  3228. romannum: Generate roman numerals instead of arabic digits.
  3229. rotfloat: Rotate floats.
  3230. rotpages: Typeset sets of pages upside-down and backwards.
  3231. roundbox: Round boxes in LaTeX.
  3232. rterface: Access to R analysis from within a document.
  3233. rtkinenc: Input encoding with fallback procedures.
  3234. rulercompass: A TikZ library for straight-edge and compass diagrams.
  3235. rvwrite: Increase the number of available output streams in LaTeX.
  3236. sauerj: A bundle of utilities by Jonathan Sauer.
  3237. savefnmark: Save name of the footnote mark for reuse.
  3238. savesym: Redefine symbols where names conflict.
  3239. savetrees: Optimise the use of each page of a LaTeX document.
  3240. scale: Scale document by sqrt(2) or magstep(2).
  3241. scalebar: Create scalebars for maps, diagrams or photos.
  3242. scalerel: Constrained scaling and stretching of objects.
  3243. scanpages: Support importing and embellishing scanned documents.
  3244. sdrt: Macros for Segmented Discourse Representation Theory.
  3245. secdot: Section numbers with trailing dots.
  3246. sectionbox: Create fancy boxed ((sub)sub)sections.
  3247. sectsty: Control sectional headers.
  3248. seealso: Improve the performance of see macros with makeindex.
  3249. selectp: Select pages to be output.
  3250. semantic: Help for writing programming language semantics.
  3251. semioneside: Put only special contents on left-hand pages in two sided layout.
  3252. sepfootnotes: Support footnotes and endnotes from separate files.
  3253. seqsplit: Split long sequences of characters in a neutral way.
  3254. sf298: Standard form 298.
  3255. sffms: Typesetting science fiction/fantasy manuscripts.
  3256. sfmath: Sans-serif mathematics.
  3257. shadow: Shadow boxes.
  3258. shadowtext: shadowtext
  3259. shadethm: Theorem environments that are shaded
  3260. shapepar: A macro to typeset paragraphs in specific shapes.
  3261. shipunov: A collection of LaTeX packages and classes.
  3262. shorttoc: Table of contents with different depths.
  3263. show2e: Variants of show for LaTeX2e.
  3264. showcharinbox: Show characters inside a box.
  3265. showdim: Variants on printing dimensions.
  3266. showexpl: Typesetting LaTeX source code.
  3267. showlabels: Show label commands in the margin.
  3268. sidecap: Typeset captions sideways.
  3269. sidenotes: Typeset notes containing rich content, in the margin.
  3270. silence: Selective filtering of error messages and warnings.
  3271. simplecd: Simple CD, DVD covers for printing.
  3272. simplecv: A simple class for writing curricula vitae.
  3273. simplewick: Simple Wick contractions.
  3274. sitem: Save the optional argument of item.
  3275. skb: Tools for a repository of long-living documents.
  3276. skdoc: Documentation and extraction for packages and document classes.
  3277. skeycommand: Create commands using parameters and keyval in parallel.
  3278. skeyval: Key-value parsing combining features of xkeyval and pgfkeys.
  3279. skrapport: 'Simple' class for reports, etc.
  3280. slantsc: Access different-shaped small-caps fonts.
  3281. smalltableof: Create listoffigures etc. in a single chapter.
  3282. smartref: Extend LaTeX's ref capability.
  3283. snapshot: List the external dependencies of a LaTeX document.
  3284. snotez: Typeset notes, in the margin.
  3285. soul: Hyphenation for letterspacing, underlining, and more.
  3286. spanglish: Simplified Spanish support for Babel.
  3287. sparklines: Drawing sparklines: intense, simple, wordlike graphics.
  3288. sphack: Patch LaTeX kernel spacing macros.
  3289. spreadtab: Spreadsheet features for LaTeX tabular environments.
  3290. spverbatim: Allow line breaks within verb and verbatim output.
  3291. splitindex: Unlimited number of indexes.
  3292. spot: Spotlight highlighting for Beamer.
  3293. spotcolor: Spot colours for pdfLaTeX.
  3294. srbook-mem:
  3295. srcltx: Jump between DVI and TeX files.
  3296. sseq: Typesetting spectral sequence charts.
  3297. sslides: Slides with headers and footers.
  3298. stack: Tools to define and use stacks.
  3299. stackengine: Highly customised stacking of objects, insets, baseline changes, etc.
  3300. standalone: Compile TeX pictures stand-alone or as part of a document.
  3301. statistik: Store statistics of a document.
  3302. stdclsdv: Provide sectioning information for package writers.
  3303. stdpage: Standard pages with n lines of at most m characters each.
  3304. stex: An Infrastructure for Semantic Preloading of LaTeX Documents.
  3305. storebox: Storing information for reuse.
  3306. storecmd: Store the name of a defined command in a container.
  3307. stringstrings: String manipulation for cosmetic and programming application.
  3308. sttools: Various macros.
  3309. stubs: Create tear-off stubs at the bottom of a page.
  3310. subdepth: Unify maths subscript height.
  3311. subeqn: Package for subequation numbering.
  3312. subeqnarray: Equation array with sub numbering.
  3313. subfigmat: Automates layout when using the subfigure package.
  3314. subfigure: Deprecated: Figures divided into subfigures.
  3315. subfiles: Individual typesetting of subfiles of a "main" document.
  3316. subfloat: Sub-numbering for figures and tables.
  3317. substitutefont: Easy font substitution.
  3318. substr: Deal with substrings in strings.
  3319. supertabular: A multi-page tables package.
  3320. svg: Include and extract SVG pictures using Inkscape.
  3321. svgcolor: Define SVG named colours.
  3322. svn: Typeset Subversion keywords.
  3323. svn-multi: Subversion keywords in multi-file LaTeX documents
  3324. svn-prov: Subversion variants of Provides... macros.
  3325. svninfo: Typeset Subversion keywords.
  3326. syntax: Creation of syntax diagrams.
  3327. syntrace: Labels for tracing in a syntax tree.
  3328. synttree: Typeset syntactic trees.
  3329. tabfigures: Maintain vertical alignment of figures.
  3330. tableaux: Construct tables of signs and variations.
  3331. tablefootnote: Permit footnotes in tables.
  3332. tableof: Tagging tables of contents.
  3333. tablestyles:
  3334. tablists: Tabulated lists of short items.
  3335. tabls: Better vertical spacing in tables and arrays.
  3336. tabstackengine: "Tabbing" front-end to stackengine.
  3337. tabto-ltx: "Tab" to a measured position in the line.
  3338. tabu: Flexible LaTeX tabulars.
  3339. tabularborder: Remove excess space at left and right of tabular.
  3340. tabularcalc: Calculate formulas in a tabular environment.
  3341. tabularew: A variation on the tabular environment.
  3342. tabulary: Tabular with variable width columns balanced.
  3343. tagging: Document configuration with tags.
  3344. talk: A LaTeX class for presentations.
  3345. tamefloats: Experimentally use holdinginserts with LaTeX floats.
  3346. tasks: Horizontally columned lists.
  3347. tcldoc: Doc/docstrip for tcl.
  3348. tcolorbox: Coloured boxes, for LaTeX examples and theorems, etc.
  3349. tdclock: A ticking digital clock package for PDF output.
  3350. technics: A package to format technical documents.
  3351. ted: A (primitive) token list editor.
  3352. templatetools: Commands useful in LaTeX templates.
  3353. termcal: Print a class calendar.
  3354. termlist: Label any kind of term with a continuous counter.
  3355. testhyphens: Testing hyphenation patterns
  3356. tex-label: Place a classification on each page of a document
  3357. texlogos: Ready-to-use LaTeX logos.
  3358. texmate: Comprehensive chess annotation in LaTeX.
  3359. texments: Using the Pygments highlighter in LaTeX.
  3360. texpower: Create dynamic online presentations with LaTeX.
  3361. texshade: Package for setting nucleotide and peptide alignments.
  3362. textfit: Fit text to a desired size.
  3363. textgreek: Upright greek letters in text.
  3364. textmerg: Merge text in TeX and LaTeX.
  3365. textpos: Place boxes at arbitrary positions on the LaTeX page.
  3366. theoremref: References with automatic theorem names.
  3367. threadcol: Organize document columns into PDF "article thread".
  3368. threeparttable: Tables with captions and notes all the same width.
  3369. threeparttablex: Notes in longtables.
  3370. thinsp: A stretchable thinspace for LaTeX.
  3371. thmtools: Extensions to theorem environments.
  3372. thumb: Thumb marks in documents.
  3373. thumbs: Create thumb indexes.
  3374. thumby: Create thumb indexes for printed books.
  3375. ticket: Make labels, visiting-cards, pins with LaTeX.
  3376. titlecaps: Setting rich-text input into Titling Caps.
  3377. titlefoot: Add special material to footer of title page.
  3378. titlepic: Add picture to title page of a document.
  3379. titleref: A "titleref" command to cross-reference section titles.
  3380. titlesec: Select alternative section titles.
  3381. titling: Control over the typesetting of the maketitle command.
  3382. tocbibind: Add bibliography/index/contents to Table of Contents.
  3383. tocloft: Control table of contents, figures, etc.
  3384. tocvsec2: Section numbering and table of contents control.
  3385. todo: Make a to-do list for a document.
  3386. todonotes: Marking things to do in a LaTeX document.
  3387. tokenizer: A tokenizer.
  3388. toolbox: Tool macros.
  3389. topfloat: Move floats to the top of the page.
  3390. totcount: Find the last value of a counter.
  3391. totpages: Count pages in a document, and report last page number.
  3392. translations: Internationalisation of LaTeX2e packages.
  3393. trfsigns: Typeset transform signs.
  3394. trimspaces: Trim spaces around an argument or within a macro.
  3395. trsym: Symbols for transformations.
  3396. trivfloat: Quick float definitions in LaTeX.
  3397. truncate: Truncate text to a specified width.
  3398. tucv: Support for typesetting a CV or resumee.
  3399. turnthepage: Provide "turn page" instructions.
  3400. twoinone: Print two pages on a single page.
  3401. twoup: Print two virtual pages on each physical page.
  3402. txgreeks: Shape selection for TX fonts Greek letters.
  3403. type1cm: Arbitrary size font selection in LaTeX.
  3404. typeface: Select a balanced set of fonts.
  3405. typogrid: Print a typographic grid.
  3406. ucs: Extended UTF-8 input encoding support for LaTeX.
  3407. uebungsblatt: A LaTeX class for writing exercise sheets.
  3408. umoline: Underline text allowing line breaking.
  3409. underlin: Underlined running heads.
  3410. underoverlap: Position decorations over and under expressions.
  3411. undolabl: Override existing labels.
  3412. units: Typeset units.
  3413. unravel: Watching TeX digest tokens.
  3414. upmethodology: Writing specifications such as for UP-based methodologies.
  3415. upquote: Show "realistic" quotes in verbatim.
  3416. uri: Hyperlinks for a wide range of URIs.
  3417. ushort: Shorter (and longer) underlines and underbars.
  3418. uwmslide: Slides with a simple Power Point like appearance.
  3419. varindex: Luxury frontend to the index command.
  3420. varsfromjobname: Extract variables from the name of the LaTeX file.
  3421. varwidth: A variable-width minipage.
  3422. vdmlisting: Typesetting VDM in ASCII syntax.
  3423. verbasef: VERBatim Automatic Splitting of External Files.
  3424. verbatimbox: Deposit verbatim text in a box.
  3425. verbatimcopy: Make copies of text documents from within LaTeX.
  3426. verbdef: Define commands which expand to verbatim text
  3427. verbments: Syntax highlighting of source code in LaTeX documents.
  3428. version: Conditionally include text.
  3429. versions: Optionally omit pieces of text.
  3430. vertbars: Mark vertical rules in margin of text.
  3431. vgrid: Overlay a grid on the printed page.
  3432. vhistory: Support for creating a change log.
  3433. vmargin: Set various page dimensions.
  3434. volumes: Typeset only parts of a document, with complete indexes etc.
  3435. vpe: Source specials for PDF output.
  3436. vruler: Numbering text.
  3437. vwcol: Variable-width multiple text columns.
  3438. wallpaper: Easy addition of wallpapers (background images) to LaTeX documents, including tiling.
  3439. warning: Global warnings at the end of the logfile.
  3440. warpcol: Relative alignment of rows in numeric columns in tabulars.
  3441. was: A collection of small packages by Walter Schmidt.
  3442. widetable: An environment for typesetting tables of specified width
  3443. williams: Miscellaneous macros by Peter Williams.
  3444. withargs: Ephemeral macro use.
  3445. wordlike: Simulating word processor layout.
  3446. wrapfig: Produces figures which text can flow around.
  3447. xargs: Define commands with many optional arguments.
  3448. xcomment: Allows selected environments to be included/excluded.
  3449. xhfill: Extending hrulefill.
  3450. xtab: Break tables across pages.
  3451. xdoc: Extending the LaTeX doc system.
  3452. xfor: A reimplementation of the LaTeX for-loop macro.
  3453. xifthen: Extended conditional commands.
  3454. xint: Expandable operations on long numbers.
  3455. xmpincl: Include eXtensible Metadata Platform data in PDFLaTeX.
  3456. xnewcommand: Define global and protected commands with newcommand.
  3457. xoptarg: Expandable macros that take an optional argument.
  3458. xpatch: Extending etoolbox patching commands.
  3459. xpeek: Define commands that peek ahead in the input stream.
  3460. xpunctuate: Process trailing punctuation which may be redundant.
  3461. xstring: String manipulation for (La)TeX.
  3462. xwatermark: Graphics and text watermarks on selected pages.
  3463. xytree: Tree macros using XY-Pic.
  3464. yafoot: A bundle of miscellaneous footnote packages.
  3465. yagusylo: A symbol loader.
  3466. ydoc: Macros for documentation of LaTeX classes and packages.
  3467. yplan: Daily planner type calendar.
  3468. zed-csp: Typesetting Z and CSP format specifications.
  3469. ziffer: Conversion of punctuation in maths mode.
  3470. zwgetfdate: Get package or file date.
  3471. zwpagelayout: Page layout and crop-marks.
  3472. %description -l ja
  3473. TeX Live ソフトウェアディストリビューションは、
  3474. さまざまな Unix, Macintosh, Windows、および
  3475. 他のプラットホームに対して完全な TeX システムを提供します。
  3476. 多くの異なった言語を含む TeX ドキュメントの
  3477. 編集、組版、閲覧、印刷するためのプログラム、
  3478. そして、TeX マクロやフォントライブラリの大きなコレクションを
  3479. 同梱しています。
  3480. このディストリビューションは
  3481. 同梱しているソフトウェアパッケージのためのドキュメントばかりでなく、
  3482. TeX に関するたくさんの一般的なドキュメントを含んでいます。
  3483. このパッケージは以下のようなパッケージ集です。
  3484. LaTeX additional packages:
  3485. A very large collection of add-on packages for LaTeX.
  3486. このパッケージは以下の CTAN パッケージを含んでいます:
  3487. 2up:
  3488. ESIEEcv: Curriculum vitae for French use.
  3489. GS1: Typeset EAN barcodes using TeX rules, only.
  3490. HA-prosper: Patches and improvements for prosper.
  3491. Tabbing: Tabbing with accented letters.
  3492. a0poster: Support for designing posters on large paper.
  3493. a4wide: "Wide" a4 layout.
  3494. a5comb: Support for a5 paper sizes.
  3495. abraces: Asymmetric over-/underbraces in maths.
  3496. abstract: Control the typesetting of the abstract environment.
  3497. achemso: Support for American Chemical Society journal submissions.
  3498. acro: Typeset acronyms.
  3499. acronym: Expand acronyms at least once.
  3500. acroterm: Manage and index acronyms and terms.
  3501. actuarialangle: Symbol for use in "present value" statements of an annuity.
  3502. addlines: A user-friendly wrapper around enlargethispage.
  3503. adjmulticol: Adjusting margins for multicolumn and single column output.
  3504. adjustbox: Graphics package-alike macros for "general" boxes.
  3505. adrconv: BibTeX styles to implement an address database.
  3506. advdate: Print a date relative to "today".
  3507. akktex: A collection of packages and classes.
  3508. akletter: Comprehensive letter support.
  3509. alnumsec: Alphanumeric section numbering.
  3510. alterqcm: Multiple choice questionnaires in two column tables.
  3511. altfont: Alternative font handling in LaTeX.
  3512. amsaddr: Alter the position of affiliations in amsart.
  3513. animate: Create PDF animations from graphics files and inline graphics.
  3514. anonchap: Make chapters be typeset like sections.
  3515. answers: Setting questions (or exercises) and answers.
  3516. anyfontsize: Select any font size in LaTeX.
  3517. appendix: Extra control of appendices.
  3518. appendixnumberbeamer: Manage frame numbering in appendixes in beamer.
  3519. apptools: Tools for customising appendices.
  3520. arcs: Draw arcs over and under text
  3521. arrayjobx: Array data structures for (La)TeX.
  3522. arraysort: Sort arrays (or portions of them).
  3523. arydshln: Horizontal and vertical dashed lines in arrays and tabulars.
  3524. assignment: A class file for typesetting homework and lab assignments
  3525. assoccnt: Associate counters, making them step when a master steps.
  3526. attachfile: Attach arbitrary files to a PDF document
  3527. autopdf: Conversion of graphics to pdfLaTeX-compatible formats.
  3528. authoraftertitle: Make author, etc., available after maketitle.
  3529. authorindex: Index citations by author names.
  3530. autonum: Automatic equation references.
  3531. avremu: An 8-Bit Microcontroller Simulator written in LaTeX.
  3532. background: Placement of background material on pages of a document.
  3533. bashful: Invoke bash commands from within LaTeX.
  3534. basicarith: Macros for typesetting basic arithmetic.
  3535. bchart: Draw simple bar charts in LaTeX.
  3536. beamer2thesis: Thesis presentations using beamer.
  3537. beameraudience: Assembling beamer frames according to audience
  3538. beamerdarkthemes: Dark color themes for beamer.
  3539. beamerposter: Extend beamer and a0poster for custom sized posters.
  3540. beamersubframe: Reorder frames in the PDF file.
  3541. beamertheme-upenn-bc: Beamer themies for Boston College and the University of Pennsylvania.
  3542. beamerthemejltree: Contributed beamer theme.
  3543. beamerthemenirma: A Beamer theme for academic presentations.
  3544. beamerthemephnompenh:
  3545. beton: Use Concrete fonts.
  3546. bez123: Support for Bezier curves.
  3547. bezos: Packages by Javier Bezos.
  3548. bhcexam: An exam class designed for Mathematics Teachers in China.
  3549. bigfoot: Footnotes for critical editions.
  3550. bigints: Writing big integrals.
  3551. bizcard: Typeset business cards.
  3552. blindtext: Producing 'blind' text for testing.
  3553. blkarray: Extended array and tabular.
  3554. block: A block letter style for the letter class.
  3555. blowup: Upscale or downscale all pages of a document.
  3556. bnumexpr: Extends eTeX's numexpr...relax construct to big integers.
  3557. boites: Boxes that may break across pages
  3558. bold-extra: Use bold small caps and typewriter fonts.
  3559. bookest: Extended book class.
  3560. booklet: Aids for printing simple booklets.
  3561. boolexpr: A boolean expression evaluator and a switch command.
  3562. bophook: Provides an At-Begin-Page hook.
  3563. boxedminipage: A package for producing framed minipages.
  3564. boxhandler: Flexible Captioning and Deferred Box/List Printing.
  3565. bracketkey: Produce bracketed identification keys.
  3566. braket: Dirac bra-ket and set notations.
  3567. breakurl: Line-breakable url-like links in hyperref when compiling via dvips/ps2pdf.
  3568. bullcntr: Display list item counter as regular pattern of bullets.
  3569. bussproofs: Proof trees in the style of the sequent calculus.
  3570. bxdpx-beamer: Dvipdfmx extras for use with beamer.
  3571. calcage: Calculate the age of something, in years.
  3572. calctab: Language for numeric tables.
  3573. calculator: Use LaTeX as a scientific calculator.
  3574. calrsfs: Copperplate calligraphic letters in LaTeX.
  3575. cals: Multipage tables with wide range of features.
  3576. calxxxx-yyyy: Print a calendar for a group of years.
  3577. cancel: Place lines through maths formulae.
  3578. canoniclayout: Create canonical page layouts with memoir.
  3579. capt-of: Captions on more than floats.
  3580. captcont: Retain float number across several floats.
  3581. captdef: Declare free-standing caption commands.
  3582. cases: Numbered cases environment
  3583. casyl: Typeset Cree/Inuktitut in Canadian Aboriginal Syllabics.
  3584. catchfilebetweentags: Catch text delimited by docstrip tags.
  3585. catechis: Macros for typesetting catechisms.
  3586. catoptions: Preserving and recalling standard catcodes.
  3587. cbcoptic: Coptic fonts and LaTeX macros for general usage and for philology.
  3588. ccaption: Continuation headings and legends for floats.
  3589. cclicenses: Typeset Creative Commons licence logos.
  3590. cd: Typeset CD covers.
  3591. cd-cover: Typeset CD covers.
  3592. cdpbundl: Business letters in the Italian style.
  3593. cellspace: Ensure minimal spacing of table cells.
  3594. censor: Facilities for controlling restricted text in a document.
  3595. changebar: Generate changebars in LaTeX documents.
  3596. changelayout: Change the layout of individual pages and their text.
  3597. changepage: Margin adjustment and detection of odd/even pages.
  3598. changes: Manual change markup.
  3599. chappg: Page numbering by chapter.
  3600. chapterfolder: Package for working with complicated folder structures.
  3601. chet: LaTeX layout inspired by harvmac.
  3602. chextras: A companion package for the Swiss typesetter.
  3603. chkfloat: Warn whenever a float is placed "to far away".
  3604. chletter: Class for typesetting letters to Swiss rules.
  3605. chngcntr: Change the resetting of counters.
  3606. chronology: Provides a horizontal timeline.
  3607. circ: Macros for typesetting circuit diagrams.
  3608. classics: Cite classic works.
  3609. clefval: Key/value support with a hash.
  3610. cleveref: Intelligent cross-referencing.
  3611. clipboard: Copy and paste into and across documents.
  3612. clock: Graphical and textual clocks for TeX and LaTeX.
  3613. cmdstring: Get command name reliably.
  3614. cmdtrack: Check used commands.
  3615. cmsd: Interfaces to the CM Sans Serif Bold fonts.
  3616. cnltx: LaTeX tools and documenting facilities.
  3617. cntformats: A different way to read counters.
  3618. codedoc: LaTeX code and documentation in LaTeX-format file.
  3619. codepage: Support for variant code pages.
  3620. codesection: Provides an environment that may be conditionally included.
  3621. collcell: Collect contents of a tabular cell as argument to a macro.
  3622. collectbox: Collect and process macro arguments as boxes.
  3623. colordoc: Coloured syntax highlights in documentation.
  3624. colorinfo: Retrieve colour model and values for defined colours.
  3625. colortab: Shade cells of tables and halign.
  3626. colorwav: Colours by wavelength of visible light.
  3627. colorweb: Extend the color package colour space.
  3628. colourchange: colourchange
  3629. combelow: Typeset "comma-below" letters, as in Romanian.
  3630. combine: Bundle individual documents into a single document.
  3631. comma: Formats a number by inserting commas.
  3632. commado: Expandable iteration on comma-separated and filename lists.
  3633. comment: Selectively include/excludes portions of text.
  3634. concepts: Keeping track of formal 'concepts' for a particular field.
  3635. concprog: Concert programmes.
  3636. constants: Automatic numbering of constants.
  3637. contour: Print a coloured contour around text.
  3638. contracard: Generate calling cards for dances.
  3639. cooking: Typeset recipes.
  3640. cool: COntent-Oriented LaTeX.
  3641. coollist: Manipulate COntent Oriented LaTeX Lists.
  3642. coolstr: String manipulation in LaTeX.
  3643. coolthms: Reference items in a theorem environment.
  3644. cooltooltips: Associate a pop-up window and tooltip with PDF hyperlinks.
  3645. coordsys: Draw cartesian coordinate systems.
  3646. copyrightbox: Provide copyright notices for images in a document.
  3647. coseoul: Context sensitive outline elements
  3648. counttexruns: Count compilations of a document.
  3649. courseoutline: Prepare university course outlines.
  3650. coursepaper: Prepare university course papers.
  3651. coverpage: Automatic cover page creation for scientific papers.
  3652. cprotect: Allow verbatim, etc., in macro arguments.
  3653. crbox: Boxes with crossed corners.
  3654. crossreference: Crossreferences within documents.
  3655. csquotes: Context sensitive quotation facilities.
  3656. csvsimple: Simple CSV file processing.
  3657. csvtools: Reading data from CSV files.
  3658. cuisine: Typeset recipes.
  3659. currfile: Provide file name and path of input files.
  3660. currvita: Typeset a curriculum vitae.
  3661. cutwin: Cut a window in a paragraph, typeset material in it.
  3662. cv: A package for creating a curriculum vitae.
  3663. cv4tw: LaTeX CV class, with extended details.
  3664. cweb-latex: A LaTeX version of CWEB.
  3665. dashbox: Draw dashed boxes.
  3666. dashrule: Draw dashed rules.
  3667. dashundergaps: Underline with dotted or dashed lines.
  3668. dataref: Manage references to experimental data.
  3669. datatool: Tools to load and manipulate data.
  3670. dateiliste: Extensions of the listfiles concept.
  3671. datenumber: Convert a date into a number and vice versa.
  3672. datetime: Change format of today with commands for current time.
  3673. dblfloatfix: Fixes for twocolumn floats.
  3674. decimal: LaTeX package for the English raised decimal point.
  3675. decorule: Decorative swelled rule using font character.
  3676. delim: Simplify typesetting mathematical delimiters.
  3677. delimtxt: Read and parse text tables.
  3678. detlev-cm:
  3679. diagbox: Table heads with diagonal lines.
  3680. diagnose: A diagnostic tool for a TeX installation.
  3681. dialogl: Macros for constructing interactive LaTeX scripts.
  3682. dichokey: Construct dichotomous identification keys.
  3683. dinbrief: German letter DIN style.
  3684. directory: An address book using BibTeX.
  3685. dirtytalk: A package to typeset quotations easier.
  3686. dlfltxb: Macros related to "Introdktion til LaTeX".
  3687. dnaseq: Format DNA base sequences.
  3688. docmfp: Document non-LaTeX code.
  3689. docmute: Input files ignoring LaTeX preamble, etc.
  3690. doctools: Tools for the documentation of LaTeX code.
  3691. documentation: Documentation support for C, Java and assembler code.
  3692. doi: Create correct hyperlinks for DOI numbers.
  3693. dotarrow: Extendable dotted arrows.
  3694. dotseqn: Flush left equations with dotted leaders to the numbers.
  3695. download: Allow LaTeX to download files using an external process.
  3696. dox: Extend the doc package.
  3697. dpfloat: Support for double-page floats.
  3698. dprogress: LaTeX-relevant log information for debugging.
  3699. drac: Declare active character substitution, robustly.
  3700. draftcopy: Identify draft copies.
  3701. draftwatermark: Put a grey textual watermark on document pages.
  3702. dtk: Document class for the journal of DANTE.
  3703. dtxgallery: A small collection of minimal DTX examples.
  3704. dvdcoll: A class for typesetting DVD archives
  3705. dynblocks: A simple way to create dynamic blocks for Beamer.
  3706. easy: A collection of easy-to-use macros.
  3707. easy-todo: To-do notes in a document.
  3708. easyfig: Simplifying the use of common figures.
  3709. easylist: Lists using a single active character.
  3710. ean13isbn: Print EAN13 for ISBN.
  3711. ebezier: Device independent picture environment enhancement.
  3712. ecclesiastic: Typesetting Ecclesiastic Latin.
  3713. ecv: A fancy Curriculum Vitae class.
  3714. ed: Editorial Notes for LaTeX documents.
  3715. edmargin: Multiple series of endnotes for critical editions.
  3716. eemeir: Adjust the gender of words in a document.
  3717. efbox: Extension of fbox, with controllable frames and colours.
  3718. egplot: Encapsulate Gnuplot sources in LaTeX documents.
  3719. ellipsis: Fix uneven spacing around ellipses in LaTeX text mode.
  3720. elmath: Mathematics in Greek texts.
  3721. elpres: A simple class for electronic presentations
  3722. emarks: Named mark registers with e-TeX.
  3723. embedall: Embed source files into the generated PDF.
  3724. embrac: Upright brackets in emphasised text.
  3725. emptypage: Make empty pages really empty.
  3726. emulateapj: Produce output similar to that of APJ.
  3727. endfloat: Move floats to the end, leaving markers where they belong.
  3728. endheads: Running headers of the form "Notes to pp.xx-yy"
  3729. endnotes: Place footnotes at the end.
  3730. engpron: Helps to type the pronunciation of English words.
  3731. engrec: Enumerate with lower- or uppercase Greek letters.
  3732. enotez: Support for end-notes.
  3733. enumitem: Control layout of itemize, enumerate, description.
  3734. enumitem-zref: Extended references to items for enumitem package.
  3735. envbig: Printing addresses on envelopes.
  3736. environ: A new interface for environments in LaTeX.
  3737. envlab: Addresses on envelopes or mailing labels.
  3738. epigraph: A package for typesetting epigraphs.
  3739. epiolmec: Typesetting the Epi-Olmec Language.
  3740. eqell: Sympathetically spaced ellipsis after punctuation.
  3741. eqlist: Description lists with equal indentation.
  3742. eqname: Name tags for equations.
  3743. eqparbox: Create equal-widthed parboxes.
  3744. errata: Error markup for LaTeX documents.
  3745. esami: Typeset exams with scrambled questions and answers.
  3746. esdiff: Simplify typesetting of derivatives.
  3747. esint: Extended set of integrals for Computer Modern.
  3748. esint-type1: Font esint10 in Type 1 format
  3749. etaremune: Reverse-counting enumerate environment.
  3750. etextools: e-TeX tools for LaTeX users and package writers.
  3751. etoc: Completely customisable TOCs.
  3752. etoolbox: Tool-box for LaTeX programmers using e-TeX.
  3753. eukdate: UK format dates, with weekday.
  3754. europecv: Unofficial class for European curricula vitae.
  3755. everyhook: Hooks for standard TeX token lists.
  3756. everypage: Provide hooks to be run on every page of a document.
  3757. exam: Package for typesetting exam scripts.
  3758. exam-n: Exam class, focused on collaborative authoring.
  3759. examdesign: LaTeX class for typesetting exams.
  3760. example: Typeset examples for TeX courses.
  3761. examplep: Verbatim phrases and listings in LaTeX.
  3762. exceltex: Get data from Excel files into LaTeX.
  3763. excludeonly: Prevent files being include-ed.
  3764. exercise: Typeset exercises, problems, etc. and their answers
  3765. exp-testopt: Expandable @testopt (and related) macros.
  3766. expdlist: Expanded description environments.
  3767. export: Import and export values of LaTeX registers.
  3768. exsheets: Create exercise sheets and exams.
  3769. exsol: Exercises and solutions from the same source, into a book.
  3770. extract: Extract parts of a document and write to another document.
  3771. facsimile: Document class for preparing faxes.
  3772. factura: Write invoices according to Venezuelan law.
  3773. fancylabel: Complex labelling with LaTeX.
  3774. fancynum: Typeset numbers.
  3775. fancypar: Decoration of individual paragraphs.
  3776. fancytabs: Fancy page border tabs.
  3777. fancytooltips: Include a wide range of material in PDF tooltips.
  3778. fifo-stack: FIFO and stack implementation for package writers
  3779. figsize: Auto-size graphics.
  3780. filecontents: Extended filecontents and filecontents* environments
  3781. filedate: Access and compare info and modification dates.
  3782. filehook: Hooks for input files.
  3783. fileinfo: Enhanced display of LaTeX File Information.
  3784. filemod: Provide file modification times, and compare them.
  3785. fink: The LaTeX2e File Name Keeper.
  3786. finstrut: Adjust behaviour of the ends of footnotes.
  3787. fixfoot: Multiple use of the same footnote text.
  3788. fixme: Insert "fixme" notes into draft documents.
  3789. fixmetodonotes: Add notes on document development.
  3790. fjodor: A selection of layout styles.
  3791. flabels: Labels for files and folders.
  3792. flacards: Generate flashcards for printing.
  3793. flagderiv: Flag style derivation package
  3794. flashcards: A class for typesetting flashcards.
  3795. flashmovie: Directly embed flash movies into PDF files.
  3796. flipbook: Typeset flipbook animations, in the corners of documents.
  3797. flippdf: Horizontal flipping of pages with pdfLaTeX.
  3798. floatflt: Wrap text around floats.
  3799. floatrow: Modifying the layout of floats.
  3800. flowfram: Create text frames for posters, brochures or magazines.
  3801. fmp: Include Functional MetaPost in LaTeX.
  3802. fmtcount: Display the value of a LaTeX counter in a variety of formats.
  3803. fn2end: Convert footnotes to endnotes.
  3804. fnbreak: Warn for split footnotes.
  3805. fncychap: Seven predefined chapter heading styles.
  3806. fncylab: Alter the format of label references.
  3807. fnpara: Footnotes in paragraphs.
  3808. fnpct: Manage footnote marks' interaction with punctuation.
  3809. fnumprint: Print a number in 'appropriate' format.
  3810. foilhtml: Interface between foiltex and LaTeX2HTML.
  3811. fontaxes: Additional font axes for LaTeX.
  3812. fonttable: Print font tables from a LaTeX document.
  3813. footmisc: A range of footnote options.
  3814. footnotebackref: Back-references from footnotes.
  3815. footnoterange: References to ranges of footnotes.
  3816. footnpag: Per-page numbering of footnotes.
  3817. forarray: Using array structures in LaTeX.
  3818. foreign: Systematic treatment of 'foreign' words in documents.
  3819. forloop: Iteration in LaTeX.
  3820. formlett: Letters to multiple recipients.
  3821. formular: Create forms containing field for manual entry.
  3822. fragments: Fragments of LaTeX code.
  3823. frame: Framed boxes for Plain TeX.
  3824. framed: Framed or shaded regions that can break across pages.
  3825. frankenstein: A collection of LaTeX packages.
  3826. frege: Typeset fregean Begriffsschrift.
  3827. ftcap: Allows caption at the beginning of a table-environment.
  3828. ftnxtra: Extend the applicability of the footnote command.
  3829. fullblck: Left-blocking for letter class.
  3830. fullminipage: Minipage spanning a complete page
  3831. fullwidth: Adjust margins of text block.
  3832. fundus-calligra: Support for the calligra font in LaTeX documents.
  3833. fundus-cyr: Support for Washington University Cyrillic fonts.
  3834. fundus-sueterlin: Sutterlin
  3835. fwlw: Get first and last words of a page.
  3836. g-brief: Letter document class.
  3837. gauss: A package for Gaussian operations.
  3838. gcard: Arrange text on a sheet to fold into a greeting card.
  3839. gcite: Citations in a reader-friendly style.
  3840. genmpage: Generalization of LaTeX's minipages.
  3841. getfiledate: Find the date of last modification of a file.
  3842. ginpenc: Modification of inputenc for German.
  3843. gitinfo: Access metadata from the git distributed version control system.
  3844. gitinfo2: Access metadata from the git distributed version control system.
  3845. gloss: Create glossaries using BibTeX.
  3846. glossaries: Create glossaries and lists of acronyms.
  3847. gmdoc: Documentation of LaTeX packages.
  3848. gmdoc-enhance: Some enhancements to the gmdoc package.
  3849. gmiflink: Simplify usage of hypertarget and hyperlink.
  3850. gmutils: Support macros for other packages.
  3851. gmverb: A variant of LaTeX verb, verbatim and shortvrb.
  3852. graphbox: Extend graphicx to improve placement of graphics.
  3853. graphicx-psmin: Reduce size of PostScript files by not repeating images.
  3854. graphicxbox: Insert a graphical image as a background.
  3855. grfpaste: Include fragments of a dvi file.
  3856. grid: Grid typesetting in LaTeX.
  3857. grid-system: Page organisation, modelled on CSS facilities.
  3858. gridset: Grid, a.k.a. in-register, setting.
  3859. gtl: Manipulating generalized token lists.
  3860. guitlogo: Macros for typesetting the GuIT logo.
  3861. handout: Create handout for auditors of a talk
  3862. hanging: Hanging paragraphs.
  3863. hardwrap: Hard wrap text to a certain character length.
  3864. harnon-cv: A CV document class with a vertical timeline for experience.
  3865. harpoon: Extra harpoons, using the graphics package.
  3866. hc: Replacement for the LaTeX classes.
  3867. he-she: Alternating pronouns to aid gender-neutral writing.
  3868. hhtensor: Print vectors, matrices, and tensors.
  3869. histogr: Draw histograms with the LaTeX picture environment.
  3870. hitec: Class for documentation.
  3871. hletter: Flexible letter typesetting with flexible page headings.
  3872. hpsdiss: A dissertation class.
  3873. hrefhide: Suppress hyper links when printing.
  3874. hvindex: Support for indexing.
  3875. hypdvips: Hyperref extensions for use with dvips.
  3876. hyper: Hypertext cross referencing.
  3877. hypernat: Allow hyperref and natbib to work together.
  3878. hyperref-docsrc:
  3879. hyperxmp: Embed XMP metadata within a LaTeX document.
  3880. hyphenat: Disable/enable hypenation.
  3881. idxcmds: Semantic commands for adding formatted index entries.
  3882. idxlayout: Configurable index layout, responsive to KOMA-Script and memoir.
  3883. ifmslide: Presentation slides for screen and printouts.
  3884. ifmtarg: If-then-else command for processing potentially empty arguments.
  3885. ifnextok: Utility macro: peek ahead without ignoring spaces.
  3886. ifoddpage: Determine if the current page is odd or even.
  3887. ifplatform: Conditionals to test which platform is being used.
  3888. ifthenx: Extra tests for ifthenelse.
  3889. iitem: Multiple level of lists in one list-like environment.
  3890. image-gallery: Create an overview of pictures from a digital camera or from other sources.
  3891. imakeidx: A package for producing multiple indexes.
  3892. import: Establish input relative to a directory.
  3893. incgraph: Sophisticated graphics inclusion in a PDF document.
  3894. inlinedef: Inline expansions within definitions.
  3895. inputtrc: Trace which file loads which.
  3896. interactiveworkbook: LaTeX-based interactive PDF on the Web.
  3897. interfaces: Set parameters for other packages, conveniently.
  3898. inversepath: Calculate inverse file paths.
  3899. invoice: Generate invoices.
  3900. iso: Generic ISO standards typesetting macros.
  3901. iso10303: Typesetting the STEP standards.
  3902. isodate: Tune the output format of dates according to language.
  3903. isonums: Display numbers in maths mode according to ISO 31-0.
  3904. isodoc: A LaTeX class for typesetting letters and invoices.
  3905. isorot: Rotation of document elements.
  3906. isotope: A package for typesetting isotopes
  3907. issuulinks: Produce external links instead of internal ones.
  3908. iwhdp: Halle Institute for Economic Research (IWH) Discussion Papers.
  3909. jlabels: Make letter-sized pages of labels.
  3910. jvlisting: A replacement for LaTeX's verbatim package.
  3911. kantlipsum: Generate sentences in Kant's style.
  3912. kerntest: Print tables and generate control files to adjust kernings.
  3913. keycommand: Simple creation of commands with key-value arguments.
  3914. keyreader: A robust interface to xkeyval.
  3915. keystroke: Graphical representation of keys on keyboard.
  3916. keyval2e: A lightweight and robust key-value parser.
  3917. kix: Typeset KIX codes.
  3918. koma-moderncvclassic: Makes the style and command of moderncv (style classic) available for koma-classes and thus compatible with biblatex.
  3919. koma-script-sfs: Koma-script letter class option for Finnish.
  3920. komacv: Typesetting a beuatiful CV with various style options.
  3921. ktv-texdata: Extract subsets of documents.
  3922. l3build: A testing and building system for (La)TeX.
  3923. labbook: Typeset laboratory journals.
  3924. labelcas: Check the existence of labels, and fork accordingly.
  3925. labels: Print sheets of sticky labels.
  3926. lastpackage: Indicates the last loaded package.
  3927. lastpage: Reference last page for Page N of M type footers.
  3928. latexdemo: Demonstrate LaTeX code with its resulting output.
  3929. latex-tds: A structured copy of the LaTeX distribution.
  3930. layouts: Display various elements of a document's layout.
  3931. lazylist: Lists in TeX's "mouth".
  3932. lcd: Alphanumerical LCD-style displays.
  3933. lcg: Generate random integers.
  3934. leading: Define leading with a length.
  3935. leaflet: Create small handouts (flyers).
  3936. leftidx: Left and right subscripts and superscripts in math mode.
  3937. lengthconvert: Express lengths in arbitrary units.
  3938. lettre: Letters and faxes in French.
  3939. lettrine: Typeset dropped capitals.
  3940. lewis: Draw Lewis structures.
  3941. lhelp: Miscellaneous helper packages.
  3942. libgreek: Use Libertine or Biolinum Greek glyphs in mathematics.
  3943. limap: Typeset maps and blocks according to the Information Mapping method.
  3944. linegoal: A "dimen" that returns the space left on the line.
  3945. lipsum: Easy access to the Lorem Ipsum dummy text.
  3946. lisp-on-tex: Execute LISP code in a LaTeX document.
  3947. listing: Produce formatted program listings.
  3948. listlbls: Creates a list of all labels used throughout a document
  3949. listofsymbols: Create and manipulate lists of symbols
  3950. listliketab: Typeset lists as tables.
  3951. lkproof: LK Proof figure macros.
  3952. lmake: Process lists to do repetitive actions.
  3953. locality: Various macros for keeping things local.
  3954. localloc: Macros for localizing TeX register allocations.
  3955. logbox: e-TeX showbox facilities for exploration purposes.
  3956. logical-markup-utils: Packages for language-dependent inline quotes and dashes.
  3957. logpap: Generate logarithmic graph paper with LaTeX.
  3958. longfigure: Provides a figure-like environment that break over pages.
  3959. longnamefilelist: Tidy listfiles with long file names.
  3960. loops: General looping macros for use with LaTeX.
  3961. lsc: Typesetting Live Sequence Charts.
  3962. lstaddons: Add-on packages for listings: autogobble and line background.
  3963. lt3graph: Provide a graph datastructure for experimental LaTeX3.
  3964. ltablex: Table package extensions.
  3965. ltabptch: Bug fix for longtable.
  3966. ltxdockit: Documentation support.
  3967. ltxindex: A LaTeX package to typeset indices with GNU's Texindex.
  3968. ltxkeys: A robust key parser for LaTeX.
  3969. ltxnew: A simple means of creating commands.
  3970. ltxtools: A collection of LaTeX API macros.
  3971. macroswap: Swap the definitions of two LaTeX macros.
  3972. magaz: Magazine layout.
  3973. mailing: Macros for mail merging.
  3974. mailmerge: Repeating text field substitution.
  3975. makebarcode: Print various kinds 2/5 and Code 39 bar codes.
  3976. makebox: Defines a makebox* command.
  3977. makecell: Tabular column heads and multilined cells.
  3978. makecirc: A MetaPost library for drawing electrical circuit diagrams.
  3979. makecmds: The new makecommand command always (re)defines a command.
  3980. makedtx: Perl script to help generate dtx and ins files
  3981. makeglos: Include a glossary into a document.
  3982. mandi: Macros for introductory physics and astronomy.
  3983. manfnt: LaTeX support for the TeX book symbols.
  3984. manuscript: Emulate look of a document typed on a typewriter.
  3985. marginfix: Patch marginpar to avoid overfull margins.
  3986. marginnote: Notes in the margin, even where marginpar fails
  3987. mathalfa: General package for loading maths alphabets in LaTeX.
  3988. mathastext: Use the text font in maths mode.
  3989. mathexam: Package for typesetting exams.
  3990. maybemath: Make math bold or italic according to context.
  3991. mbenotes: Notes in tables or images.
  3992. mcaption: Put captions in the margin.
  3993. mceinleger: Creating covers for music cassettes.
  3994. mcite: Multiple items in a single citation.
  3995. mciteplus: Enhanced multiple citations.
  3996. mdframed: Framed environments that can split at page boundaries.
  3997. media9: Multimedia inclusion package with Adobe Reader-9/X compatibility.
  3998. meetingmins: Format written minutes of meetings.
  3999. memexsupp: Experimental memoir support.
  4000. memory: Containers for data in LaTeX.
  4001. menu: Typesetting menus.
  4002. menukeys: Format menu sequences, paths and keystrokes from lists.
  4003. method: Typeset method and variable declarations.
  4004. metre: Support for the work of classicists
  4005. mftinc: Pretty-print Metafont source.
  4006. midpage: Environment for vertical centring.
  4007. minibox: A simple type of box for LaTeX.
  4008. minifp: Fixed-point real computations to 8 decimals.
  4009. minipage-marginpar: Minipages with marginal notes.
  4010. minitoc: Produce a table of contents for each chapter, part or section.
  4011. minorrevision: Quote and refer to a manuscript for minor revisions.
  4012. minted: Highlighted source code for LaTeX.
  4013. minutes: Typeset the minutes of meetings.
  4014. mla-paper: Proper MLA formatting.
  4015. mlist: Logical markup for lists.
  4016. mmap: Include CMap resources in PDF files from PDFTeX.
  4017. mnotes: Margin annotation for collaborative writing.
  4018. moderncv: A modern curriculum vitae class.
  4019. moderntimeline: Timelines for use with moderncv.
  4020. modref: Customisation of cross-references in LaTeX.
  4021. modroman: Write numbers in lower case roman numerals.
  4022. monofill: Alignment of plain text.
  4023. moreenum: More enumeration options.
  4024. morefloats: Increase the number of simultaneous LaTeX floats.
  4025. morehype: Hypertext tools for use with LaTeX.
  4026. moresize: Allows font sizes up to 35.83pt.
  4027. moreverb: Extended verbatim.
  4028. morewrites: Always room for a new write stream.
  4029. movie15: Multimedia inclusion package.
  4030. mparhack: Work around a LaTeX bug in marginpars.
  4031. msc: Draw MSC diagrams.
  4032. msg: A package for LaTeX localisation.
  4033. mslapa: Michael Landy's APA citation style.
  4034. mtgreek: Use italic and upright greek letters with mathtime.
  4035. multenum: Multi-column enumerated lists.
  4036. multibbl: Multiple bibliographies.
  4037. multicap: Format captions inside multicols
  4038. multienv: Multiple environments using a "key=value" syntax.
  4039. multiexpand: Variations on the primitive command expandafter.
  4040. multirow: Create tabular cells spanning multiple rows.
  4041. mversion: Keeping track of document versions.
  4042. mwe: Packages and image files for MWEs.
  4043. mweights: Support for multiple-weight font packages.
  4044. mycv: A list-driven CV class, allowing TikZ decorations.
  4045. mylatexformat: Build a format based on the preamble of a LaTeX file.
  4046. nag: Detecting and warning about obsolete LaTeX commands
  4047. nameauth: Name authority mechanism for consistency in body text and index.
  4048. namespc: Rudimentary C++-like namespaces in LaTeX.
  4049. ncclatex: An extended general-purpose class
  4050. ncctools: A collection of general packages for LaTeX
  4051. needspace: Insert pagebreak if not enough space.
  4052. nestquot: Alternate quotes between double and single with nesting.
  4053. newcommand: Generate new LaTeX command definitions.
  4054. newenviron: Processing an environment's body.
  4055. newfile: User level management of LaTeX input and output.
  4056. newlfm: Write letters, facsimiles, and memos.
  4057. newspaper: Typeset newsletters to resemble newspapers.
  4058. newunicodechar: Definitions of the meaning of Unicode characters.
  4059. newvbtm: Define your own verbatim-like environment.
  4060. newverbs: Define new versions of verb, including short verb versions.
  4061. nextpage: Generalisations of the page advance commands.
  4062. nfssext-cfr: Extensions to the LaTeX NFSS.
  4063. nicefilelist: Provide listfiles alignment.
  4064. niceframe: Support for fancy frames.
  4065. nicetext: Minimal markup for simple text (Wikipedia style) and documentation.
  4066. nlctdoc: Package documentation class.
  4067. noconflict: Resolve macro name conflict between packages.
  4068. noindentafter: Tool to prevent paragraph indentation after environments/macros.
  4069. noitcrul: Improved underlines in mathematics.
  4070. nolbreaks: No line breaks in text.
  4071. nomencl: Produce lists of symbols as in nomenclature.
  4072. nomentbl: Nomenclature typeset in a longtable
  4073. nonfloat: Non-floating table and figure captions.
  4074. nonumonpart: Prevent page numbers on part pages.
  4075. nopageno: No page numbers in LaTeX documents.
  4076. notes: Mark sections of a document.
  4077. notoccite: Prevent trouble from citations in table of contents, etc.
  4078. nowidow: Avoid widows.
  4079. nox: Adaptable tables.
  4080. ntheorem: Enhanced theorem environment.
  4081. numberedblock: Print a block of code, with unique index number.
  4082. numname: Convert a number to its English expression.
  4083. numprint: Print numbers with separators and exponent if necessary.
  4084. ocg-p: PDF OCG support in LaTeX.
  4085. ocgx: Use OCGs within a PDF document without JavaScript.
  4086. ocr-latex: LaTeX support for ocr fonts.
  4087. octavo: Typeset books following classical design and layout.
  4088. oldstyle: Old style numbers in OT1 encoding.
  4089. onlyamsmath: Inhibit use of non-amsmath mathematics markup when using amsmath.
  4090. opcit: Footnote-style bibliographical references.
  4091. optional: Facilitate optional printing of parts of a document.
  4092. outline: List environment for making outlines.
  4093. outliner: Change section levels easily.
  4094. outlines: Produce "outline" lists.
  4095. overpic: Combine LaTeX commands over included graphics.
  4096. pagecolor: Interrogate page colour.
  4097. pagecont: Page numbering that continues between documents.
  4098. pagenote: Notes at end of document.
  4099. pagerange: Flexible and configurable page range typesetting.
  4100. pageslts: Variants of last page labels.
  4101. paper: Versions of article class, tuned for scholarly publications.
  4102. papercdcase: Origami-style folding paper CD case.
  4103. papermas: Compute the mass of a printed version of a document.
  4104. papertex: Class for newspapers, etc.
  4105. paracol: Multiple columns with texts "in parallel".
  4106. paralist: Enumerate and itemize within paragraphs.
  4107. paresse: Define simple macros for greek letters.
  4108. parnotes: Notes after every paragraph (or elsewhere).
  4109. parselines: Apply a macro to each line of an environment.
  4110. pas-cours: Macros useful in preparing teaching material.
  4111. pas-cv: Flexible typesetting of Curricula Vitae.
  4112. pas-tableur: Create a spreadsheet layout.
  4113. patch: Patch loaded packages, etc..
  4114. patchcmd: Change the definition of an existing command.
  4115. pauldoc: German LaTeX package documentation.
  4116. pawpict: Using graphics from PAW.
  4117. pax: Extract and reinsert PDF annotations with pdfTeX.
  4118. pbox: A variable-width parbox command.
  4119. pbsheet: Problem sheet class.
  4120. pdf14: Restore PDF 1.4 to a TeX live 2010 format.
  4121. pdfcomment: A user-friendly interface to pdf annotations.
  4122. pdfcprot: Activating and setting of character protruding using pdflatex.
  4123. pdfmarginpar: Generate marginpar-equivalent PDF annotations.
  4124. pdfscreen: Support screen-based document design.
  4125. pdfslide: Presentation slides using pdftex.
  4126. pdfsync: Provide links between source and PDF.
  4127. pdfwin:
  4128. pdfx: PDF/X-1a and PDF/A-1b support for pdfTeX.
  4129. pecha: Print Tibetan text in the classic pecha layout style.
  4130. perfectcut: Brackets whose size adjusts to the nesting.
  4131. perltex: Define LaTeX macros in terms of Perl code
  4132. permute: Support for symmetric groups.
  4133. petiteannonce: A class for small advertisements.
  4134. philex: Cross references for named and numbered environments.
  4135. photo: A float environment for photographs.
  4136. piff: Macro tools by Mike Piff.
  4137. pkgloader: Managing the options and loading order of other packages.
  4138. placeins: Control float placement.
  4139. plates: Arrange for "plates" sections of documents.
  4140. plantslabels: Write labels for plants.
  4141. plweb: Literate Programming for Prolog with LaTeX.
  4142. polynom: Macros for manipulating polynomials.
  4143. polynomial: Typeset (univariate) polynomials.
  4144. polytable: Tabular-like environments with named columns.
  4145. postcards: Facilitates mass-mailing of postcards (junkmail).
  4146. poster-mac: Make posters and banners with TeX.
  4147. ppr-prv: Prosper preview.
  4148. preprint: A bundle of packages provided "as is".
  4149. pressrelease: A class for typesetting press releases.
  4150. prettyref: Make label references "self-identify".
  4151. preview: Extract bits of a LaTeX source for output.
  4152. printlen: Print lengths using specified units.
  4153. probsoln: Generate problem sheets and their solution sheets.
  4154. program: Typesetting programs and algorithms.
  4155. progress: Creates an overview of a document's state.
  4156. progressbar: Visualize shares of total amounts in the form of a (progress-)bar.
  4157. properties: Load properties from a file.
  4158. prosper: LaTeX class for high quality slides.
  4159. protex: Literate programming package.
  4160. protocol: A class for minutes of meetings.
  4161. psfragx: A psfrag eXtension.
  4162. pst-pdf: Make PDF versions of graphics by processing between runs.
  4163. pstool: Support for psfrag within pdfLaTeX.
  4164. pxgreeks: Shape selection for PX fonts Greek letters.
  4165. python: Embed Python code in LaTeX.
  4166. qcm: A LaTeX2e class for making multiple choice questionnaires
  4167. quoting: Consolidated environment for displayed text.
  4168. qstest: Bundle for unit tests and pattern matching.
  4169. qsymbols: Maths symbol abbreviations.
  4170. quotchap: Decorative chapter headings.
  4171. quotmark: Consistent quote marks.
  4172. ran_toks: Randomise token strings.
  4173. randtext: Randomise the order of characters in strings.
  4174. rccol: Decimal-centered optionally rounded numbers in tabular.
  4175. rcs-multi: Typeset RCS version control in multiple-file documents.
  4176. rcsinfo: Support for the revision control system.
  4177. readarray: Read, store and recall array-formatted data.
  4178. realboxes: Variants of common box-commands that read their content as real box and not as macro argument.
  4179. recipe: A LaTeX class to typeset recipes.
  4180. recipecard: Typeset recipes in note-card-sized boxes.
  4181. rectopma: Recycle top matter.
  4182. refcheck: Check references (in figures, table, equations, etc).
  4183. refenums: Define reference labels items with names of their own.
  4184. reflectgraphics: Techniques for reflecting graphics.
  4185. refman: Format technical reference manuals.
  4186. refstyle: Advanced formatting of cross references.
  4187. regcount: Display the allocation status of the TeX registers.
  4188. regexpatch: High level patching of commands.
  4189. register: Typeset programmable elements in digital hardware (registers).
  4190. regstats: Information about register use.
  4191. relenc: A "relaxed" font encoding.
  4192. relsize: Set the font size relative to the current font size.
  4193. repeatindex: Repeat items in an index after a page or column break
  4194. repltext: Control how text gets copied from a PDF file.
  4195. rjlparshap: Support for use of parshape in LaTeX.
  4196. rlepsf: Rewrite labels in EPS graphics.
  4197. rmpage: A package to help change page layout parameters in LaTeX.
  4198. robustcommand: Declare robust command, with newcommand checks.
  4199. robustindex: Create index with pagerefs.
  4200. romanbar: Write roman number with "bars".
  4201. romanneg: Roman page numbers negative.
  4202. romannum: Generate roman numerals instead of arabic digits.
  4203. rotfloat: Rotate floats.
  4204. rotpages: Typeset sets of pages upside-down and backwards.
  4205. roundbox: Round boxes in LaTeX.
  4206. rterface: Access to R analysis from within a document.
  4207. rtkinenc: Input encoding with fallback procedures.
  4208. rulercompass: A TikZ library for straight-edge and compass diagrams.
  4209. rvwrite: Increase the number of available output streams in LaTeX.
  4210. sauerj: A bundle of utilities by Jonathan Sauer.
  4211. savefnmark: Save name of the footnote mark for reuse.
  4212. savesym: Redefine symbols where names conflict.
  4213. savetrees: Optimise the use of each page of a LaTeX document.
  4214. scale: Scale document by sqrt(2) or magstep(2).
  4215. scalebar: Create scalebars for maps, diagrams or photos.
  4216. scalerel: Constrained scaling and stretching of objects.
  4217. scanpages: Support importing and embellishing scanned documents.
  4218. sdrt: Macros for Segmented Discourse Representation Theory.
  4219. secdot: Section numbers with trailing dots.
  4220. sectionbox: Create fancy boxed ((sub)sub)sections.
  4221. sectsty: Control sectional headers.
  4222. seealso: Improve the performance of see macros with makeindex.
  4223. selectp: Select pages to be output.
  4224. semantic: Help for writing programming language semantics.
  4225. semioneside: Put only special contents on left-hand pages in two sided layout.
  4226. sepfootnotes: Support footnotes and endnotes from separate files.
  4227. seqsplit: Split long sequences of characters in a neutral way.
  4228. sf298: Standard form 298.
  4229. sffms: Typesetting science fiction/fantasy manuscripts.
  4230. sfmath: Sans-serif mathematics.
  4231. shadow: Shadow boxes.
  4232. shadowtext: shadowtext
  4233. shadethm: Theorem environments that are shaded
  4234. shapepar: A macro to typeset paragraphs in specific shapes.
  4235. shipunov: A collection of LaTeX packages and classes.
  4236. shorttoc: Table of contents with different depths.
  4237. show2e: Variants of show for LaTeX2e.
  4238. showcharinbox: Show characters inside a box.
  4239. showdim: Variants on printing dimensions.
  4240. showexpl: Typesetting LaTeX source code.
  4241. showlabels: Show label commands in the margin.
  4242. sidecap: Typeset captions sideways.
  4243. sidenotes: Typeset notes containing rich content, in the margin.
  4244. silence: Selective filtering of error messages and warnings.
  4245. simplecd: Simple CD, DVD covers for printing.
  4246. simplecv: A simple class for writing curricula vitae.
  4247. simplewick: Simple Wick contractions.
  4248. sitem: Save the optional argument of item.
  4249. skb: Tools for a repository of long-living documents.
  4250. skdoc: Documentation and extraction for packages and document classes.
  4251. skeycommand: Create commands using parameters and keyval in parallel.
  4252. skeyval: Key-value parsing combining features of xkeyval and pgfkeys.
  4253. skrapport: 'Simple' class for reports, etc.
  4254. slantsc: Access different-shaped small-caps fonts.
  4255. smalltableof: Create listoffigures etc. in a single chapter.
  4256. smartref: Extend LaTeX's ref capability.
  4257. snapshot: List the external dependencies of a LaTeX document.
  4258. snotez: Typeset notes, in the margin.
  4259. soul: Hyphenation for letterspacing, underlining, and more.
  4260. spanglish: Simplified Spanish support for Babel.
  4261. sparklines: Drawing sparklines: intense, simple, wordlike graphics.
  4262. sphack: Patch LaTeX kernel spacing macros.
  4263. spreadtab: Spreadsheet features for LaTeX tabular environments.
  4264. spverbatim: Allow line breaks within verb and verbatim output.
  4265. splitindex: Unlimited number of indexes.
  4266. spot: Spotlight highlighting for Beamer.
  4267. spotcolor: Spot colours for pdfLaTeX.
  4268. srbook-mem:
  4269. srcltx: Jump between DVI and TeX files.
  4270. sseq: Typesetting spectral sequence charts.
  4271. sslides: Slides with headers and footers.
  4272. stack: Tools to define and use stacks.
  4273. stackengine: Highly customised stacking of objects, insets, baseline changes, etc.
  4274. standalone: Compile TeX pictures stand-alone or as part of a document.
  4275. statistik: Store statistics of a document.
  4276. stdclsdv: Provide sectioning information for package writers.
  4277. stdpage: Standard pages with n lines of at most m characters each.
  4278. stex: An Infrastructure for Semantic Preloading of LaTeX Documents.
  4279. storebox: Storing information for reuse.
  4280. storecmd: Store the name of a defined command in a container.
  4281. stringstrings: String manipulation for cosmetic and programming application.
  4282. sttools: Various macros.
  4283. stubs: Create tear-off stubs at the bottom of a page.
  4284. subdepth: Unify maths subscript height.
  4285. subeqn: Package for subequation numbering.
  4286. subeqnarray: Equation array with sub numbering.
  4287. subfigmat: Automates layout when using the subfigure package.
  4288. subfigure: Deprecated: Figures divided into subfigures.
  4289. subfiles: Individual typesetting of subfiles of a "main" document.
  4290. subfloat: Sub-numbering for figures and tables.
  4291. substitutefont: Easy font substitution.
  4292. substr: Deal with substrings in strings.
  4293. supertabular: A multi-page tables package.
  4294. svg: Include and extract SVG pictures using Inkscape.
  4295. svgcolor: Define SVG named colours.
  4296. svn: Typeset Subversion keywords.
  4297. svn-multi: Subversion keywords in multi-file LaTeX documents
  4298. svn-prov: Subversion variants of Provides... macros.
  4299. svninfo: Typeset Subversion keywords.
  4300. syntax: Creation of syntax diagrams.
  4301. syntrace: Labels for tracing in a syntax tree.
  4302. synttree: Typeset syntactic trees.
  4303. tabfigures: Maintain vertical alignment of figures.
  4304. tableaux: Construct tables of signs and variations.
  4305. tablefootnote: Permit footnotes in tables.
  4306. tableof: Tagging tables of contents.
  4307. tablestyles:
  4308. tablists: Tabulated lists of short items.
  4309. tabls: Better vertical spacing in tables and arrays.
  4310. tabstackengine: "Tabbing" front-end to stackengine.
  4311. tabto-ltx: "Tab" to a measured position in the line.
  4312. tabu: Flexible LaTeX tabulars.
  4313. tabularborder: Remove excess space at left and right of tabular.
  4314. tabularcalc: Calculate formulas in a tabular environment.
  4315. tabularew: A variation on the tabular environment.
  4316. tabulary: Tabular with variable width columns balanced.
  4317. tagging: Document configuration with tags.
  4318. talk: A LaTeX class for presentations.
  4319. tamefloats: Experimentally use holdinginserts with LaTeX floats.
  4320. tasks: Horizontally columned lists.
  4321. tcldoc: Doc/docstrip for tcl.
  4322. tcolorbox: Coloured boxes, for LaTeX examples and theorems, etc.
  4323. tdclock: A ticking digital clock package for PDF output.
  4324. technics: A package to format technical documents.
  4325. ted: A (primitive) token list editor.
  4326. templatetools: Commands useful in LaTeX templates.
  4327. termcal: Print a class calendar.
  4328. termlist: Label any kind of term with a continuous counter.
  4329. testhyphens: Testing hyphenation patterns
  4330. tex-label: Place a classification on each page of a document
  4331. texlogos: Ready-to-use LaTeX logos.
  4332. texmate: Comprehensive chess annotation in LaTeX.
  4333. texments: Using the Pygments highlighter in LaTeX.
  4334. texpower: Create dynamic online presentations with LaTeX.
  4335. texshade: Package for setting nucleotide and peptide alignments.
  4336. textfit: Fit text to a desired size.
  4337. textgreek: Upright greek letters in text.
  4338. textmerg: Merge text in TeX and LaTeX.
  4339. textpos: Place boxes at arbitrary positions on the LaTeX page.
  4340. theoremref: References with automatic theorem names.
  4341. threadcol: Organize document columns into PDF "article thread".
  4342. threeparttable: Tables with captions and notes all the same width.
  4343. threeparttablex: Notes in longtables.
  4344. thinsp: A stretchable thinspace for LaTeX.
  4345. thmtools: Extensions to theorem environments.
  4346. thumb: Thumb marks in documents.
  4347. thumbs: Create thumb indexes.
  4348. thumby: Create thumb indexes for printed books.
  4349. ticket: Make labels, visiting-cards, pins with LaTeX.
  4350. titlecaps: Setting rich-text input into Titling Caps.
  4351. titlefoot: Add special material to footer of title page.
  4352. titlepic: Add picture to title page of a document.
  4353. titleref: A "titleref" command to cross-reference section titles.
  4354. titlesec: Select alternative section titles.
  4355. titling: Control over the typesetting of the maketitle command.
  4356. tocbibind: Add bibliography/index/contents to Table of Contents.
  4357. tocloft: Control table of contents, figures, etc.
  4358. tocvsec2: Section numbering and table of contents control.
  4359. todo: Make a to-do list for a document.
  4360. todonotes: Marking things to do in a LaTeX document.
  4361. tokenizer: A tokenizer.
  4362. toolbox: Tool macros.
  4363. topfloat: Move floats to the top of the page.
  4364. totcount: Find the last value of a counter.
  4365. totpages: Count pages in a document, and report last page number.
  4366. translations: Internationalisation of LaTeX2e packages.
  4367. trfsigns: Typeset transform signs.
  4368. trimspaces: Trim spaces around an argument or within a macro.
  4369. trsym: Symbols for transformations.
  4370. trivfloat: Quick float definitions in LaTeX.
  4371. truncate: Truncate text to a specified width.
  4372. tucv: Support for typesetting a CV or resumee.
  4373. turnthepage: Provide "turn page" instructions.
  4374. twoinone: Print two pages on a single page.
  4375. twoup: Print two virtual pages on each physical page.
  4376. txgreeks: Shape selection for TX fonts Greek letters.
  4377. type1cm: Arbitrary size font selection in LaTeX.
  4378. typeface: Select a balanced set of fonts.
  4379. typogrid: Print a typographic grid.
  4380. ucs: Extended UTF-8 input encoding support for LaTeX.
  4381. uebungsblatt: A LaTeX class for writing exercise sheets.
  4382. umoline: Underline text allowing line breaking.
  4383. underlin: Underlined running heads.
  4384. underoverlap: Position decorations over and under expressions.
  4385. undolabl: Override existing labels.
  4386. units: Typeset units.
  4387. unravel: Watching TeX digest tokens.
  4388. upmethodology: Writing specifications such as for UP-based methodologies.
  4389. upquote: Show "realistic" quotes in verbatim.
  4390. uri: Hyperlinks for a wide range of URIs.
  4391. ushort: Shorter (and longer) underlines and underbars.
  4392. uwmslide: Slides with a simple Power Point like appearance.
  4393. varindex: Luxury frontend to the index command.
  4394. varsfromjobname: Extract variables from the name of the LaTeX file.
  4395. varwidth: A variable-width minipage.
  4396. vdmlisting: Typesetting VDM in ASCII syntax.
  4397. verbasef: VERBatim Automatic Splitting of External Files.
  4398. verbatimbox: Deposit verbatim text in a box.
  4399. verbatimcopy: Make copies of text documents from within LaTeX.
  4400. verbdef: Define commands which expand to verbatim text
  4401. verbments: Syntax highlighting of source code in LaTeX documents.
  4402. version: Conditionally include text.
  4403. versions: Optionally omit pieces of text.
  4404. vertbars: Mark vertical rules in margin of text.
  4405. vgrid: Overlay a grid on the printed page.
  4406. vhistory: Support for creating a change log.
  4407. vmargin: Set various page dimensions.
  4408. volumes: Typeset only parts of a document, with complete indexes etc.
  4409. vpe: Source specials for PDF output.
  4410. vruler: Numbering text.
  4411. vwcol: Variable-width multiple text columns.
  4412. wallpaper: Easy addition of wallpapers (background images) to LaTeX documents, including tiling.
  4413. warning: Global warnings at the end of the logfile.
  4414. warpcol: Relative alignment of rows in numeric columns in tabulars.
  4415. was: A collection of small packages by Walter Schmidt.
  4416. widetable: An environment for typesetting tables of specified width
  4417. williams: Miscellaneous macros by Peter Williams.
  4418. withargs: Ephemeral macro use.
  4419. wordlike: Simulating word processor layout.
  4420. wrapfig: Produces figures which text can flow around.
  4421. xargs: Define commands with many optional arguments.
  4422. xcomment: Allows selected environments to be included/excluded.
  4423. xhfill: Extending hrulefill.
  4424. xtab: Break tables across pages.
  4425. xdoc: Extending the LaTeX doc system.
  4426. xfor: A reimplementation of the LaTeX for-loop macro.
  4427. xifthen: Extended conditional commands.
  4428. xint: Expandable operations on long numbers.
  4429. xmpincl: Include eXtensible Metadata Platform data in PDFLaTeX.
  4430. xnewcommand: Define global and protected commands with newcommand.
  4431. xoptarg: Expandable macros that take an optional argument.
  4432. xpatch: Extending etoolbox patching commands.
  4433. xpeek: Define commands that peek ahead in the input stream.
  4434. xpunctuate: Process trailing punctuation which may be redundant.
  4435. xstring: String manipulation for (La)TeX.
  4436. xwatermark: Graphics and text watermarks on selected pages.
  4437. xytree: Tree macros using XY-Pic.
  4438. yafoot: A bundle of miscellaneous footnote packages.
  4439. yagusylo: A symbol loader.
  4440. ydoc: Macros for documentation of LaTeX classes and packages.
  4441. yplan: Daily planner type calendar.
  4442. zed-csp: Typesetting Z and CSP format specifications.
  4443. ziffer: Conversion of punctuation in maths mode.
  4444. zwgetfdate: Get package or file date.
  4445. zwpagelayout: Page layout and crop-marks.
  4446. %package doc
  4447. Summary: TeX Live: Documentation files of %{name}
  4448. Group: Applications/Publishing
  4449. Requires: %{name} = %{version}-%{release}
  4450. %description doc
  4451. This package contains documentation files of %{name}.
  4452. %prep
  4453. %setup -c -n %{name}-%{version}
  4454. %__tar -xvf %{SOURCE1}
  4455. %__tar -xvf %{SOURCE2}
  4456. %__tar -xvf %{SOURCE3}
  4457. %__tar -xvf %{SOURCE4}
  4458. %__tar -xvf %{SOURCE5}
  4459. %__tar -xvf %{SOURCE6}
  4460. %__tar -xvf %{SOURCE7}
  4461. %__tar -xvf %{SOURCE8}
  4462. %__tar -xvf %{SOURCE9}
  4463. %__tar -xvf %{SOURCE10}
  4464. %__tar -xvf %{SOURCE11}
  4465. %__tar -xvf %{SOURCE12}
  4466. %__tar -xvf %{SOURCE13}
  4467. %__tar -xvf %{SOURCE14}
  4468. %__tar -xvf %{SOURCE15}
  4469. %__tar -xvf %{SOURCE16}
  4470. %__tar -xvf %{SOURCE17}
  4471. %__tar -xvf %{SOURCE18}
  4472. %__tar -xvf %{SOURCE19}
  4473. %__tar -xvf %{SOURCE20}
  4474. %__tar -xvf %{SOURCE21}
  4475. %__tar -xvf %{SOURCE22}
  4476. %__tar -xvf %{SOURCE23}
  4477. %__tar -xvf %{SOURCE24}
  4478. %__tar -xvf %{SOURCE25}
  4479. %__tar -xvf %{SOURCE26}
  4480. %__tar -xvf %{SOURCE27}
  4481. %__tar -xvf %{SOURCE28}
  4482. %__tar -xvf %{SOURCE29}
  4483. %__tar -xvf %{SOURCE30}
  4484. %__tar -xvf %{SOURCE31}
  4485. %__tar -xvf %{SOURCE32}
  4486. %__tar -xvf %{SOURCE33}
  4487. %__tar -xvf %{SOURCE34}
  4488. %__tar -xvf %{SOURCE35}
  4489. %__tar -xvf %{SOURCE36}
  4490. %__tar -xvf %{SOURCE37}
  4491. %__tar -xvf %{SOURCE38}
  4492. %__tar -xvf %{SOURCE39}
  4493. %__tar -xvf %{SOURCE40}
  4494. %__tar -xvf %{SOURCE41}
  4495. %__tar -xvf %{SOURCE42}
  4496. %__tar -xvf %{SOURCE43}
  4497. %__tar -xvf %{SOURCE44}
  4498. %__tar -xvf %{SOURCE45}
  4499. %__tar -xvf %{SOURCE46}
  4500. %__tar -xvf %{SOURCE47}
  4501. %__tar -xvf %{SOURCE48}
  4502. %__tar -xvf %{SOURCE49}
  4503. %__tar -xvf %{SOURCE50}
  4504. %__tar -xvf %{SOURCE51}
  4505. %__tar -xvf %{SOURCE52}
  4506. %__tar -xvf %{SOURCE53}
  4507. %__tar -xvf %{SOURCE54}
  4508. %__tar -xvf %{SOURCE55}
  4509. %__tar -xvf %{SOURCE56}
  4510. %__tar -xvf %{SOURCE57}
  4511. %__tar -xvf %{SOURCE58}
  4512. %__tar -xvf %{SOURCE59}
  4513. %__tar -xvf %{SOURCE60}
  4514. %__tar -xvf %{SOURCE61}
  4515. %__tar -xvf %{SOURCE62}
  4516. %__tar -xvf %{SOURCE63}
  4517. %__tar -xvf %{SOURCE64}
  4518. %__tar -xvf %{SOURCE65}
  4519. %__tar -xvf %{SOURCE66}
  4520. %__tar -xvf %{SOURCE67}
  4521. %__tar -xvf %{SOURCE68}
  4522. %__tar -xvf %{SOURCE69}
  4523. %__tar -xvf %{SOURCE70}
  4524. %__tar -xvf %{SOURCE71}
  4525. %__tar -xvf %{SOURCE72}
  4526. %__tar -xvf %{SOURCE73}
  4527. %__tar -xvf %{SOURCE74}
  4528. %__tar -xvf %{SOURCE75}
  4529. %__tar -xvf %{SOURCE76}
  4530. %__tar -xvf %{SOURCE77}
  4531. %__tar -xvf %{SOURCE78}
  4532. %__tar -xvf %{SOURCE79}
  4533. %__tar -xvf %{SOURCE80}
  4534. %__tar -xvf %{SOURCE81}
  4535. %__tar -xvf %{SOURCE82}
  4536. %__tar -xvf %{SOURCE83}
  4537. %__tar -xvf %{SOURCE84}
  4538. %__tar -xvf %{SOURCE85}
  4539. %__tar -xvf %{SOURCE86}
  4540. %__tar -xvf %{SOURCE87}
  4541. %__tar -xvf %{SOURCE88}
  4542. %__tar -xvf %{SOURCE89}
  4543. %__tar -xvf %{SOURCE90}
  4544. %__tar -xvf %{SOURCE91}
  4545. %__tar -xvf %{SOURCE92}
  4546. %__tar -xvf %{SOURCE93}
  4547. %__tar -xvf %{SOURCE94}
  4548. %__tar -xvf %{SOURCE95}
  4549. %__tar -xvf %{SOURCE96}
  4550. %__tar -xvf %{SOURCE97}
  4551. %__tar -xvf %{SOURCE98}
  4552. %__tar -xvf %{SOURCE99}
  4553. %__tar -xvf %{SOURCE100}
  4554. %__tar -xvf %{SOURCE101}
  4555. %__tar -xvf %{SOURCE102}
  4556. %__tar -xvf %{SOURCE103}
  4557. %__tar -xvf %{SOURCE104}
  4558. %__tar -xvf %{SOURCE105}
  4559. %__tar -xvf %{SOURCE106}
  4560. %__tar -xvf %{SOURCE107}
  4561. %__tar -xvf %{SOURCE108}
  4562. %__tar -xvf %{SOURCE109}
  4563. %__tar -xvf %{SOURCE110}
  4564. %__tar -xvf %{SOURCE111}
  4565. %__tar -xvf %{SOURCE112}
  4566. %__tar -xvf %{SOURCE113}
  4567. %__tar -xvf %{SOURCE114}
  4568. %__tar -xvf %{SOURCE115}
  4569. %__tar -xvf %{SOURCE116}
  4570. %__tar -xvf %{SOURCE117}
  4571. %__tar -xvf %{SOURCE118}
  4572. %__tar -xvf %{SOURCE119}
  4573. %__tar -xvf %{SOURCE120}
  4574. %__tar -xvf %{SOURCE121}
  4575. %__tar -xvf %{SOURCE122}
  4576. %__tar -xvf %{SOURCE123}
  4577. %__tar -xvf %{SOURCE124}
  4578. %__tar -xvf %{SOURCE125}
  4579. %__tar -xvf %{SOURCE126}
  4580. %__tar -xvf %{SOURCE127}
  4581. %__tar -xvf %{SOURCE128}
  4582. %__tar -xvf %{SOURCE129}
  4583. %__tar -xvf %{SOURCE130}
  4584. %__tar -xvf %{SOURCE131}
  4585. %__tar -xvf %{SOURCE132}
  4586. %__tar -xvf %{SOURCE133}
  4587. %__tar -xvf %{SOURCE134}
  4588. %__tar -xvf %{SOURCE135}
  4589. %__tar -xvf %{SOURCE136}
  4590. %__tar -xvf %{SOURCE137}
  4591. %__tar -xvf %{SOURCE138}
  4592. %__tar -xvf %{SOURCE139}
  4593. %__tar -xvf %{SOURCE140}
  4594. %__tar -xvf %{SOURCE141}
  4595. %__tar -xvf %{SOURCE142}
  4596. %__tar -xvf %{SOURCE143}
  4597. %__tar -xvf %{SOURCE144}
  4598. %__tar -xvf %{SOURCE145}
  4599. %__tar -xvf %{SOURCE146}
  4600. %__tar -xvf %{SOURCE147}
  4601. %__tar -xvf %{SOURCE148}
  4602. %__tar -xvf %{SOURCE149}
  4603. %__tar -xvf %{SOURCE150}
  4604. %__tar -xvf %{SOURCE151}
  4605. %__tar -xvf %{SOURCE152}
  4606. %__tar -xvf %{SOURCE153}
  4607. %__tar -xvf %{SOURCE154}
  4608. %__tar -xvf %{SOURCE155}
  4609. %__tar -xvf %{SOURCE156}
  4610. %__tar -xvf %{SOURCE157}
  4611. %__tar -xvf %{SOURCE158}
  4612. %__tar -xvf %{SOURCE159}
  4613. %__tar -xvf %{SOURCE160}
  4614. %__tar -xvf %{SOURCE161}
  4615. %__tar -xvf %{SOURCE162}
  4616. %__tar -xvf %{SOURCE163}
  4617. %__tar -xvf %{SOURCE164}
  4618. %__tar -xvf %{SOURCE165}
  4619. %__tar -xvf %{SOURCE166}
  4620. %__tar -xvf %{SOURCE167}
  4621. %__tar -xvf %{SOURCE168}
  4622. %__tar -xvf %{SOURCE169}
  4623. %__tar -xvf %{SOURCE170}
  4624. %__tar -xvf %{SOURCE171}
  4625. %__tar -xvf %{SOURCE172}
  4626. %__tar -xvf %{SOURCE173}
  4627. %__tar -xvf %{SOURCE174}
  4628. %__tar -xvf %{SOURCE175}
  4629. %__tar -xvf %{SOURCE176}
  4630. %__tar -xvf %{SOURCE177}
  4631. %__tar -xvf %{SOURCE178}
  4632. %__tar -xvf %{SOURCE179}
  4633. %__tar -xvf %{SOURCE180}
  4634. %__tar -xvf %{SOURCE181}
  4635. %__tar -xvf %{SOURCE182}
  4636. %__tar -xvf %{SOURCE183}
  4637. %__tar -xvf %{SOURCE184}
  4638. %__tar -xvf %{SOURCE185}
  4639. %__tar -xvf %{SOURCE186}
  4640. %__tar -xvf %{SOURCE187}
  4641. %__tar -xvf %{SOURCE188}
  4642. %__tar -xvf %{SOURCE189}
  4643. %__tar -xvf %{SOURCE190}
  4644. %__tar -xvf %{SOURCE191}
  4645. %__tar -xvf %{SOURCE192}
  4646. %__tar -xvf %{SOURCE193}
  4647. %__tar -xvf %{SOURCE194}
  4648. %__tar -xvf %{SOURCE195}
  4649. %__tar -xvf %{SOURCE196}
  4650. %__tar -xvf %{SOURCE197}
  4651. %__tar -xvf %{SOURCE198}
  4652. %__tar -xvf %{SOURCE199}
  4653. %__tar -xvf %{SOURCE200}
  4654. %__tar -xvf %{SOURCE201}
  4655. %__tar -xvf %{SOURCE202}
  4656. %__tar -xvf %{SOURCE203}
  4657. %__tar -xvf %{SOURCE204}
  4658. %__tar -xvf %{SOURCE205}
  4659. %__tar -xvf %{SOURCE206}
  4660. %__tar -xvf %{SOURCE207}
  4661. %__tar -xvf %{SOURCE208}
  4662. %__tar -xvf %{SOURCE209}
  4663. %__tar -xvf %{SOURCE210}
  4664. %__tar -xvf %{SOURCE211}
  4665. %__tar -xvf %{SOURCE212}
  4666. %__tar -xvf %{SOURCE213}
  4667. %__tar -xvf %{SOURCE214}
  4668. %__tar -xvf %{SOURCE215}
  4669. %__tar -xvf %{SOURCE216}
  4670. %__tar -xvf %{SOURCE217}
  4671. %__tar -xvf %{SOURCE218}
  4672. %__tar -xvf %{SOURCE219}
  4673. %__tar -xvf %{SOURCE220}
  4674. %__tar -xvf %{SOURCE221}
  4675. %__tar -xvf %{SOURCE222}
  4676. %__tar -xvf %{SOURCE223}
  4677. %__tar -xvf %{SOURCE224}
  4678. %__tar -xvf %{SOURCE225}
  4679. %__tar -xvf %{SOURCE226}
  4680. %__tar -xvf %{SOURCE227}
  4681. %__tar -xvf %{SOURCE228}
  4682. %__tar -xvf %{SOURCE229}
  4683. %__tar -xvf %{SOURCE230}
  4684. %__tar -xvf %{SOURCE231}
  4685. %__tar -xvf %{SOURCE232}
  4686. %__tar -xvf %{SOURCE233}
  4687. %__tar -xvf %{SOURCE234}
  4688. %__tar -xvf %{SOURCE235}
  4689. %__tar -xvf %{SOURCE236}
  4690. %__tar -xvf %{SOURCE237}
  4691. %__tar -xvf %{SOURCE238}
  4692. %__tar -xvf %{SOURCE239}
  4693. %__tar -xvf %{SOURCE240}
  4694. %__tar -xvf %{SOURCE241}
  4695. %__tar -xvf %{SOURCE242}
  4696. %__tar -xvf %{SOURCE243}
  4697. %__tar -xvf %{SOURCE244}
  4698. %__tar -xvf %{SOURCE245}
  4699. %__tar -xvf %{SOURCE246}
  4700. %__tar -xvf %{SOURCE247}
  4701. %__tar -xvf %{SOURCE248}
  4702. %__tar -xvf %{SOURCE249}
  4703. %__tar -xvf %{SOURCE250}
  4704. %__tar -xvf %{SOURCE251}
  4705. %__tar -xvf %{SOURCE252}
  4706. %__tar -xvf %{SOURCE253}
  4707. %__tar -xvf %{SOURCE254}
  4708. %__tar -xvf %{SOURCE255}
  4709. %__tar -xvf %{SOURCE256}
  4710. %__tar -xvf %{SOURCE257}
  4711. %__tar -xvf %{SOURCE258}
  4712. %__tar -xvf %{SOURCE259}
  4713. %__tar -xvf %{SOURCE260}
  4714. %__tar -xvf %{SOURCE261}
  4715. %__tar -xvf %{SOURCE262}
  4716. %__tar -xvf %{SOURCE263}
  4717. %__tar -xvf %{SOURCE264}
  4718. %__tar -xvf %{SOURCE265}
  4719. %__tar -xvf %{SOURCE266}
  4720. %__tar -xvf %{SOURCE267}
  4721. %__tar -xvf %{SOURCE268}
  4722. %__tar -xvf %{SOURCE269}
  4723. %__tar -xvf %{SOURCE270}
  4724. %__tar -xvf %{SOURCE271}
  4725. %__tar -xvf %{SOURCE272}
  4726. %__tar -xvf %{SOURCE273}
  4727. %__tar -xvf %{SOURCE274}
  4728. %__tar -xvf %{SOURCE275}
  4729. %__tar -xvf %{SOURCE276}
  4730. %__tar -xvf %{SOURCE277}
  4731. %__tar -xvf %{SOURCE278}
  4732. %__tar -xvf %{SOURCE279}
  4733. %__tar -xvf %{SOURCE280}
  4734. %__tar -xvf %{SOURCE281}
  4735. %__tar -xvf %{SOURCE282}
  4736. %__tar -xvf %{SOURCE283}
  4737. %__tar -xvf %{SOURCE284}
  4738. %__tar -xvf %{SOURCE285}
  4739. %__tar -xvf %{SOURCE286}
  4740. %__tar -xvf %{SOURCE287}
  4741. %__tar -xvf %{SOURCE288}
  4742. %__tar -xvf %{SOURCE289}
  4743. %__tar -xvf %{SOURCE290}
  4744. %__tar -xvf %{SOURCE291}
  4745. %__tar -xvf %{SOURCE292}
  4746. %__tar -xvf %{SOURCE293}
  4747. %__tar -xvf %{SOURCE294}
  4748. %__tar -xvf %{SOURCE295}
  4749. %__tar -xvf %{SOURCE296}
  4750. %__tar -xvf %{SOURCE297}
  4751. %__tar -xvf %{SOURCE298}
  4752. %__tar -xvf %{SOURCE299}
  4753. %__tar -xvf %{SOURCE300}
  4754. %__tar -xvf %{SOURCE301}
  4755. %__tar -xvf %{SOURCE302}
  4756. %__tar -xvf %{SOURCE303}
  4757. %__tar -xvf %{SOURCE304}
  4758. %__tar -xvf %{SOURCE305}
  4759. %__tar -xvf %{SOURCE306}
  4760. %__tar -xvf %{SOURCE307}
  4761. %__tar -xvf %{SOURCE308}
  4762. %__tar -xvf %{SOURCE309}
  4763. %__tar -xvf %{SOURCE310}
  4764. %__tar -xvf %{SOURCE311}
  4765. %__tar -xvf %{SOURCE312}
  4766. %__tar -xvf %{SOURCE313}
  4767. %__tar -xvf %{SOURCE314}
  4768. %__tar -xvf %{SOURCE315}
  4769. %__tar -xvf %{SOURCE316}
  4770. %__tar -xvf %{SOURCE317}
  4771. %__tar -xvf %{SOURCE318}
  4772. %__tar -xvf %{SOURCE319}
  4773. %__tar -xvf %{SOURCE320}
  4774. %__tar -xvf %{SOURCE321}
  4775. %__tar -xvf %{SOURCE322}
  4776. %__tar -xvf %{SOURCE323}
  4777. %__tar -xvf %{SOURCE324}
  4778. %__tar -xvf %{SOURCE325}
  4779. %__tar -xvf %{SOURCE326}
  4780. %__tar -xvf %{SOURCE327}
  4781. %__tar -xvf %{SOURCE328}
  4782. %__tar -xvf %{SOURCE329}
  4783. %__tar -xvf %{SOURCE330}
  4784. %__tar -xvf %{SOURCE331}
  4785. %__tar -xvf %{SOURCE332}
  4786. %__tar -xvf %{SOURCE333}
  4787. %__tar -xvf %{SOURCE334}
  4788. %__tar -xvf %{SOURCE335}
  4789. %__tar -xvf %{SOURCE336}
  4790. %__tar -xvf %{SOURCE337}
  4791. %__tar -xvf %{SOURCE338}
  4792. %__tar -xvf %{SOURCE339}
  4793. %__tar -xvf %{SOURCE340}
  4794. %__tar -xvf %{SOURCE341}
  4795. %__tar -xvf %{SOURCE342}
  4796. %__tar -xvf %{SOURCE343}
  4797. %__tar -xvf %{SOURCE344}
  4798. %__tar -xvf %{SOURCE345}
  4799. %__tar -xvf %{SOURCE346}
  4800. %__tar -xvf %{SOURCE347}
  4801. %__tar -xvf %{SOURCE348}
  4802. %__tar -xvf %{SOURCE349}
  4803. %__tar -xvf %{SOURCE350}
  4804. %__tar -xvf %{SOURCE351}
  4805. %__tar -xvf %{SOURCE352}
  4806. %__tar -xvf %{SOURCE353}
  4807. %__tar -xvf %{SOURCE354}
  4808. %__tar -xvf %{SOURCE355}
  4809. %__tar -xvf %{SOURCE356}
  4810. %__tar -xvf %{SOURCE357}
  4811. %__tar -xvf %{SOURCE358}
  4812. %__tar -xvf %{SOURCE359}
  4813. %__tar -xvf %{SOURCE360}
  4814. %__tar -xvf %{SOURCE361}
  4815. %__tar -xvf %{SOURCE362}
  4816. %__tar -xvf %{SOURCE363}
  4817. %__tar -xvf %{SOURCE364}
  4818. %__tar -xvf %{SOURCE365}
  4819. %__tar -xvf %{SOURCE366}
  4820. %__tar -xvf %{SOURCE367}
  4821. %__tar -xvf %{SOURCE368}
  4822. %__tar -xvf %{SOURCE369}
  4823. %__tar -xvf %{SOURCE370}
  4824. %__tar -xvf %{SOURCE371}
  4825. %__tar -xvf %{SOURCE372}
  4826. %__tar -xvf %{SOURCE373}
  4827. %__tar -xvf %{SOURCE374}
  4828. %__tar -xvf %{SOURCE375}
  4829. %__tar -xvf %{SOURCE376}
  4830. %__tar -xvf %{SOURCE377}
  4831. %__tar -xvf %{SOURCE378}
  4832. %__tar -xvf %{SOURCE379}
  4833. %__tar -xvf %{SOURCE380}
  4834. %__tar -xvf %{SOURCE381}
  4835. %__tar -xvf %{SOURCE382}
  4836. %__tar -xvf %{SOURCE383}
  4837. %__tar -xvf %{SOURCE384}
  4838. %__tar -xvf %{SOURCE385}
  4839. %__tar -xvf %{SOURCE386}
  4840. %__tar -xvf %{SOURCE387}
  4841. %__tar -xvf %{SOURCE388}
  4842. %__tar -xvf %{SOURCE389}
  4843. %__tar -xvf %{SOURCE390}
  4844. %__tar -xvf %{SOURCE391}
  4845. %__tar -xvf %{SOURCE392}
  4846. %__tar -xvf %{SOURCE393}
  4847. %__tar -xvf %{SOURCE394}
  4848. %__tar -xvf %{SOURCE395}
  4849. %__tar -xvf %{SOURCE396}
  4850. %__tar -xvf %{SOURCE397}
  4851. %__tar -xvf %{SOURCE398}
  4852. %__tar -xvf %{SOURCE399}
  4853. %__tar -xvf %{SOURCE400}
  4854. %__tar -xvf %{SOURCE401}
  4855. %__tar -xvf %{SOURCE402}
  4856. %__tar -xvf %{SOURCE403}
  4857. %__tar -xvf %{SOURCE404}
  4858. %__tar -xvf %{SOURCE405}
  4859. %__tar -xvf %{SOURCE406}
  4860. %__tar -xvf %{SOURCE407}
  4861. %__tar -xvf %{SOURCE408}
  4862. %__tar -xvf %{SOURCE409}
  4863. %__tar -xvf %{SOURCE410}
  4864. %__tar -xvf %{SOURCE411}
  4865. %__tar -xvf %{SOURCE412}
  4866. %__tar -xvf %{SOURCE413}
  4867. %__tar -xvf %{SOURCE414}
  4868. %__tar -xvf %{SOURCE415}
  4869. %__tar -xvf %{SOURCE416}
  4870. %__tar -xvf %{SOURCE417}
  4871. %__tar -xvf %{SOURCE418}
  4872. %__tar -xvf %{SOURCE419}
  4873. %__tar -xvf %{SOURCE420}
  4874. %__tar -xvf %{SOURCE421}
  4875. %__tar -xvf %{SOURCE422}
  4876. %__tar -xvf %{SOURCE423}
  4877. %__tar -xvf %{SOURCE424}
  4878. %__tar -xvf %{SOURCE425}
  4879. %__tar -xvf %{SOURCE426}
  4880. %__tar -xvf %{SOURCE427}
  4881. %__tar -xvf %{SOURCE428}
  4882. %__tar -xvf %{SOURCE429}
  4883. %__tar -xvf %{SOURCE430}
  4884. %__tar -xvf %{SOURCE431}
  4885. %__tar -xvf %{SOURCE432}
  4886. %__tar -xvf %{SOURCE433}
  4887. %__tar -xvf %{SOURCE434}
  4888. %__tar -xvf %{SOURCE435}
  4889. %__tar -xvf %{SOURCE436}
  4890. %__tar -xvf %{SOURCE437}
  4891. %__tar -xvf %{SOURCE438}
  4892. %__tar -xvf %{SOURCE439}
  4893. %__tar -xvf %{SOURCE440}
  4894. %__tar -xvf %{SOURCE441}
  4895. %__tar -xvf %{SOURCE442}
  4896. %__tar -xvf %{SOURCE443}
  4897. %__tar -xvf %{SOURCE444}
  4898. %__tar -xvf %{SOURCE445}
  4899. %__tar -xvf %{SOURCE446}
  4900. %__tar -xvf %{SOURCE447}
  4901. %__tar -xvf %{SOURCE448}
  4902. %__tar -xvf %{SOURCE449}
  4903. %__tar -xvf %{SOURCE450}
  4904. %__tar -xvf %{SOURCE451}
  4905. %__tar -xvf %{SOURCE452}
  4906. %__tar -xvf %{SOURCE453}
  4907. %__tar -xvf %{SOURCE454}
  4908. %__tar -xvf %{SOURCE455}
  4909. %__tar -xvf %{SOURCE456}
  4910. %__tar -xvf %{SOURCE457}
  4911. %__tar -xvf %{SOURCE458}
  4912. %__tar -xvf %{SOURCE459}
  4913. %__tar -xvf %{SOURCE460}
  4914. %__tar -xvf %{SOURCE461}
  4915. %__tar -xvf %{SOURCE462}
  4916. %__tar -xvf %{SOURCE463}
  4917. %__tar -xvf %{SOURCE464}
  4918. %__tar -xvf %{SOURCE465}
  4919. %__tar -xvf %{SOURCE466}
  4920. %__tar -xvf %{SOURCE467}
  4921. %__tar -xvf %{SOURCE468}
  4922. %__tar -xvf %{SOURCE469}
  4923. %__tar -xvf %{SOURCE470}
  4924. %__tar -xvf %{SOURCE471}
  4925. %__tar -xvf %{SOURCE472}
  4926. %__tar -xvf %{SOURCE473}
  4927. %__tar -xvf %{SOURCE474}
  4928. %__tar -xvf %{SOURCE475}
  4929. %__tar -xvf %{SOURCE476}
  4930. %__tar -xvf %{SOURCE477}
  4931. %__tar -xvf %{SOURCE478}
  4932. %__tar -xvf %{SOURCE479}
  4933. %__tar -xvf %{SOURCE480}
  4934. %__tar -xvf %{SOURCE481}
  4935. %__tar -xvf %{SOURCE482}
  4936. %__tar -xvf %{SOURCE483}
  4937. %__tar -xvf %{SOURCE484}
  4938. %__tar -xvf %{SOURCE485}
  4939. %__tar -xvf %{SOURCE486}
  4940. %__tar -xvf %{SOURCE487}
  4941. %__tar -xvf %{SOURCE488}
  4942. %__tar -xvf %{SOURCE489}
  4943. %__tar -xvf %{SOURCE490}
  4944. %__tar -xvf %{SOURCE491}
  4945. %__tar -xvf %{SOURCE492}
  4946. %__tar -xvf %{SOURCE493}
  4947. %__tar -xvf %{SOURCE494}
  4948. %__tar -xvf %{SOURCE495}
  4949. %__tar -xvf %{SOURCE496}
  4950. %__tar -xvf %{SOURCE497}
  4951. %__tar -xvf %{SOURCE498}
  4952. %__tar -xvf %{SOURCE499}
  4953. %__tar -xvf %{SOURCE500}
  4954. %__tar -xvf %{SOURCE501}
  4955. %__tar -xvf %{SOURCE502}
  4956. %__tar -xvf %{SOURCE503}
  4957. %__tar -xvf %{SOURCE504}
  4958. %__tar -xvf %{SOURCE505}
  4959. %__tar -xvf %{SOURCE506}
  4960. %__tar -xvf %{SOURCE507}
  4961. %__tar -xvf %{SOURCE508}
  4962. %__tar -xvf %{SOURCE509}
  4963. %__tar -xvf %{SOURCE510}
  4964. %__tar -xvf %{SOURCE511}
  4965. %__tar -xvf %{SOURCE512}
  4966. %__tar -xvf %{SOURCE513}
  4967. %__tar -xvf %{SOURCE514}
  4968. %__tar -xvf %{SOURCE515}
  4969. %__tar -xvf %{SOURCE516}
  4970. %__tar -xvf %{SOURCE517}
  4971. %__tar -xvf %{SOURCE518}
  4972. %__tar -xvf %{SOURCE519}
  4973. %__tar -xvf %{SOURCE520}
  4974. %__tar -xvf %{SOURCE521}
  4975. %__tar -xvf %{SOURCE522}
  4976. %__tar -xvf %{SOURCE523}
  4977. %__tar -xvf %{SOURCE524}
  4978. %__tar -xvf %{SOURCE525}
  4979. %__tar -xvf %{SOURCE526}
  4980. %__tar -xvf %{SOURCE527}
  4981. %__tar -xvf %{SOURCE528}
  4982. %__tar -xvf %{SOURCE529}
  4983. %__tar -xvf %{SOURCE530}
  4984. %__tar -xvf %{SOURCE531}
  4985. %__tar -xvf %{SOURCE532}
  4986. %__tar -xvf %{SOURCE533}
  4987. %__tar -xvf %{SOURCE534}
  4988. %__tar -xvf %{SOURCE535}
  4989. %__tar -xvf %{SOURCE536}
  4990. %__tar -xvf %{SOURCE537}
  4991. %__tar -xvf %{SOURCE538}
  4992. %__tar -xvf %{SOURCE539}
  4993. %__tar -xvf %{SOURCE540}
  4994. %__tar -xvf %{SOURCE541}
  4995. %__tar -xvf %{SOURCE542}
  4996. %__tar -xvf %{SOURCE543}
  4997. %__tar -xvf %{SOURCE544}
  4998. %__tar -xvf %{SOURCE545}
  4999. %__tar -xvf %{SOURCE546}
  5000. %__tar -xvf %{SOURCE547}
  5001. %__tar -xvf %{SOURCE548}
  5002. %__tar -xvf %{SOURCE549}
  5003. %__tar -xvf %{SOURCE550}
  5004. %__tar -xvf %{SOURCE551}
  5005. %__tar -xvf %{SOURCE552}
  5006. %__tar -xvf %{SOURCE553}
  5007. %__tar -xvf %{SOURCE554}
  5008. %__tar -xvf %{SOURCE555}
  5009. %__tar -xvf %{SOURCE556}
  5010. %__tar -xvf %{SOURCE557}
  5011. %__tar -xvf %{SOURCE558}
  5012. %__tar -xvf %{SOURCE559}
  5013. %__tar -xvf %{SOURCE560}
  5014. %__tar -xvf %{SOURCE561}
  5015. %__tar -xvf %{SOURCE562}
  5016. %__tar -xvf %{SOURCE563}
  5017. %__tar -xvf %{SOURCE564}
  5018. %__tar -xvf %{SOURCE565}
  5019. %__tar -xvf %{SOURCE566}
  5020. %__tar -xvf %{SOURCE567}
  5021. %__tar -xvf %{SOURCE568}
  5022. %__tar -xvf %{SOURCE569}
  5023. %__tar -xvf %{SOURCE570}
  5024. %__tar -xvf %{SOURCE571}
  5025. %__tar -xvf %{SOURCE572}
  5026. %__tar -xvf %{SOURCE573}
  5027. %__tar -xvf %{SOURCE574}
  5028. %__tar -xvf %{SOURCE575}
  5029. %__tar -xvf %{SOURCE576}
  5030. %__tar -xvf %{SOURCE577}
  5031. %__tar -xvf %{SOURCE578}
  5032. %__tar -xvf %{SOURCE579}
  5033. %__tar -xvf %{SOURCE580}
  5034. %__tar -xvf %{SOURCE581}
  5035. %__tar -xvf %{SOURCE582}
  5036. %__tar -xvf %{SOURCE583}
  5037. %__tar -xvf %{SOURCE584}
  5038. %__tar -xvf %{SOURCE585}
  5039. %__tar -xvf %{SOURCE586}
  5040. %__tar -xvf %{SOURCE587}
  5041. %__tar -xvf %{SOURCE588}
  5042. %__tar -xvf %{SOURCE589}
  5043. %__tar -xvf %{SOURCE590}
  5044. %__tar -xvf %{SOURCE591}
  5045. %__tar -xvf %{SOURCE592}
  5046. %__tar -xvf %{SOURCE593}
  5047. %__tar -xvf %{SOURCE594}
  5048. %__tar -xvf %{SOURCE595}
  5049. %__tar -xvf %{SOURCE596}
  5050. %__tar -xvf %{SOURCE597}
  5051. %__tar -xvf %{SOURCE598}
  5052. %__tar -xvf %{SOURCE599}
  5053. %__tar -xvf %{SOURCE600}
  5054. %__tar -xvf %{SOURCE601}
  5055. %__tar -xvf %{SOURCE602}
  5056. %__tar -xvf %{SOURCE603}
  5057. %__tar -xvf %{SOURCE604}
  5058. %__tar -xvf %{SOURCE605}
  5059. %__tar -xvf %{SOURCE606}
  5060. %__tar -xvf %{SOURCE607}
  5061. %__tar -xvf %{SOURCE608}
  5062. %__tar -xvf %{SOURCE609}
  5063. %__tar -xvf %{SOURCE610}
  5064. %__tar -xvf %{SOURCE611}
  5065. %__tar -xvf %{SOURCE612}
  5066. %__tar -xvf %{SOURCE613}
  5067. %__tar -xvf %{SOURCE614}
  5068. %__tar -xvf %{SOURCE615}
  5069. %__tar -xvf %{SOURCE616}
  5070. %__tar -xvf %{SOURCE617}
  5071. %__tar -xvf %{SOURCE618}
  5072. %__tar -xvf %{SOURCE619}
  5073. %__tar -xvf %{SOURCE620}
  5074. %__tar -xvf %{SOURCE621}
  5075. %__tar -xvf %{SOURCE622}
  5076. %__tar -xvf %{SOURCE623}
  5077. %__tar -xvf %{SOURCE624}
  5078. %__tar -xvf %{SOURCE625}
  5079. %__tar -xvf %{SOURCE626}
  5080. %__tar -xvf %{SOURCE627}
  5081. %__tar -xvf %{SOURCE628}
  5082. %__tar -xvf %{SOURCE629}
  5083. %__tar -xvf %{SOURCE630}
  5084. %__tar -xvf %{SOURCE631}
  5085. %__tar -xvf %{SOURCE632}
  5086. %__tar -xvf %{SOURCE633}
  5087. %__tar -xvf %{SOURCE634}
  5088. %__tar -xvf %{SOURCE635}
  5089. %__tar -xvf %{SOURCE636}
  5090. %__tar -xvf %{SOURCE637}
  5091. %__tar -xvf %{SOURCE638}
  5092. %__tar -xvf %{SOURCE639}
  5093. %__tar -xvf %{SOURCE640}
  5094. %__tar -xvf %{SOURCE641}
  5095. %__tar -xvf %{SOURCE642}
  5096. %__tar -xvf %{SOURCE643}
  5097. %__tar -xvf %{SOURCE644}
  5098. %__tar -xvf %{SOURCE645}
  5099. %__tar -xvf %{SOURCE646}
  5100. %__tar -xvf %{SOURCE647}
  5101. %__tar -xvf %{SOURCE648}
  5102. %__tar -xvf %{SOURCE649}
  5103. %__tar -xvf %{SOURCE650}
  5104. %__tar -xvf %{SOURCE651}
  5105. %__tar -xvf %{SOURCE652}
  5106. %__tar -xvf %{SOURCE653}
  5107. %__tar -xvf %{SOURCE654}
  5108. %__tar -xvf %{SOURCE655}
  5109. %__tar -xvf %{SOURCE656}
  5110. %__tar -xvf %{SOURCE657}
  5111. %__tar -xvf %{SOURCE658}
  5112. %__tar -xvf %{SOURCE659}
  5113. %__tar -xvf %{SOURCE660}
  5114. %__tar -xvf %{SOURCE661}
  5115. %__tar -xvf %{SOURCE662}
  5116. %__tar -xvf %{SOURCE663}
  5117. %__tar -xvf %{SOURCE664}
  5118. %__tar -xvf %{SOURCE665}
  5119. %__tar -xvf %{SOURCE666}
  5120. %__tar -xvf %{SOURCE667}
  5121. %__tar -xvf %{SOURCE668}
  5122. %__tar -xvf %{SOURCE669}
  5123. %__tar -xvf %{SOURCE670}
  5124. %__tar -xvf %{SOURCE671}
  5125. %__tar -xvf %{SOURCE672}
  5126. %__tar -xvf %{SOURCE673}
  5127. %__tar -xvf %{SOURCE674}
  5128. %__tar -xvf %{SOURCE675}
  5129. %__tar -xvf %{SOURCE676}
  5130. %__tar -xvf %{SOURCE677}
  5131. %__tar -xvf %{SOURCE678}
  5132. %__tar -xvf %{SOURCE679}
  5133. %__tar -xvf %{SOURCE680}
  5134. %__tar -xvf %{SOURCE681}
  5135. %__tar -xvf %{SOURCE682}
  5136. %__tar -xvf %{SOURCE683}
  5137. %__tar -xvf %{SOURCE684}
  5138. %__tar -xvf %{SOURCE685}
  5139. %__tar -xvf %{SOURCE686}
  5140. %__tar -xvf %{SOURCE687}
  5141. %__tar -xvf %{SOURCE688}
  5142. %__tar -xvf %{SOURCE689}
  5143. %__tar -xvf %{SOURCE690}
  5144. %__tar -xvf %{SOURCE691}
  5145. %__tar -xvf %{SOURCE692}
  5146. %__tar -xvf %{SOURCE693}
  5147. %__tar -xvf %{SOURCE694}
  5148. %__tar -xvf %{SOURCE695}
  5149. %__tar -xvf %{SOURCE696}
  5150. %__tar -xvf %{SOURCE697}
  5151. %__tar -xvf %{SOURCE698}
  5152. %__tar -xvf %{SOURCE699}
  5153. %__tar -xvf %{SOURCE700}
  5154. %__tar -xvf %{SOURCE701}
  5155. %__tar -xvf %{SOURCE702}
  5156. %__tar -xvf %{SOURCE703}
  5157. %__tar -xvf %{SOURCE704}
  5158. %__tar -xvf %{SOURCE705}
  5159. %__tar -xvf %{SOURCE706}
  5160. %__tar -xvf %{SOURCE707}
  5161. %__tar -xvf %{SOURCE708}
  5162. %__tar -xvf %{SOURCE709}
  5163. %__tar -xvf %{SOURCE710}
  5164. %__tar -xvf %{SOURCE711}
  5165. %__tar -xvf %{SOURCE712}
  5166. %__tar -xvf %{SOURCE713}
  5167. %__tar -xvf %{SOURCE714}
  5168. %__tar -xvf %{SOURCE715}
  5169. %__tar -xvf %{SOURCE716}
  5170. %__tar -xvf %{SOURCE717}
  5171. %__tar -xvf %{SOURCE718}
  5172. %__tar -xvf %{SOURCE719}
  5173. %__tar -xvf %{SOURCE720}
  5174. %__tar -xvf %{SOURCE721}
  5175. %__tar -xvf %{SOURCE722}
  5176. %__tar -xvf %{SOURCE723}
  5177. %__tar -xvf %{SOURCE724}
  5178. %__tar -xvf %{SOURCE725}
  5179. %__tar -xvf %{SOURCE726}
  5180. %__tar -xvf %{SOURCE727}
  5181. %__tar -xvf %{SOURCE728}
  5182. %__tar -xvf %{SOURCE729}
  5183. %__tar -xvf %{SOURCE730}
  5184. %__tar -xvf %{SOURCE731}
  5185. %__tar -xvf %{SOURCE732}
  5186. %__tar -xvf %{SOURCE733}
  5187. %__tar -xvf %{SOURCE734}
  5188. %__tar -xvf %{SOURCE735}
  5189. %__tar -xvf %{SOURCE736}
  5190. %__tar -xvf %{SOURCE737}
  5191. %__tar -xvf %{SOURCE738}
  5192. %__tar -xvf %{SOURCE739}
  5193. %__tar -xvf %{SOURCE740}
  5194. %__tar -xvf %{SOURCE741}
  5195. %__tar -xvf %{SOURCE742}
  5196. %__tar -xvf %{SOURCE743}
  5197. %__tar -xvf %{SOURCE744}
  5198. %__tar -xvf %{SOURCE745}
  5199. %__tar -xvf %{SOURCE746}
  5200. %__tar -xvf %{SOURCE747}
  5201. %__tar -xvf %{SOURCE748}
  5202. %__tar -xvf %{SOURCE749}
  5203. %__tar -xvf %{SOURCE750}
  5204. %__tar -xvf %{SOURCE751}
  5205. %__tar -xvf %{SOURCE752}
  5206. %__tar -xvf %{SOURCE753}
  5207. %__tar -xvf %{SOURCE754}
  5208. %__tar -xvf %{SOURCE755}
  5209. %__tar -xvf %{SOURCE756}
  5210. %__tar -xvf %{SOURCE757}
  5211. %__tar -xvf %{SOURCE758}
  5212. %__tar -xvf %{SOURCE759}
  5213. %__tar -xvf %{SOURCE760}
  5214. %__tar -xvf %{SOURCE761}
  5215. %__tar -xvf %{SOURCE762}
  5216. %__tar -xvf %{SOURCE763}
  5217. %__tar -xvf %{SOURCE764}
  5218. %__tar -xvf %{SOURCE765}
  5219. %__tar -xvf %{SOURCE766}
  5220. %__tar -xvf %{SOURCE767}
  5221. %__tar -xvf %{SOURCE768}
  5222. %__tar -xvf %{SOURCE769}
  5223. %__tar -xvf %{SOURCE770}
  5224. %__tar -xvf %{SOURCE771}
  5225. %__tar -xvf %{SOURCE772}
  5226. %__tar -xvf %{SOURCE773}
  5227. %__tar -xvf %{SOURCE774}
  5228. %__tar -xvf %{SOURCE775}
  5229. %__tar -xvf %{SOURCE776}
  5230. %__tar -xvf %{SOURCE777}
  5231. %__tar -xvf %{SOURCE778}
  5232. %__tar -xvf %{SOURCE779}
  5233. %__tar -xvf %{SOURCE780}
  5234. %__tar -xvf %{SOURCE781}
  5235. %__tar -xvf %{SOURCE782}
  5236. %__tar -xvf %{SOURCE783}
  5237. %__tar -xvf %{SOURCE784}
  5238. %__tar -xvf %{SOURCE785}
  5239. %__tar -xvf %{SOURCE786}
  5240. %__tar -xvf %{SOURCE787}
  5241. %__tar -xvf %{SOURCE788}
  5242. %__tar -xvf %{SOURCE789}
  5243. %__tar -xvf %{SOURCE790}
  5244. %__tar -xvf %{SOURCE791}
  5245. %__tar -xvf %{SOURCE792}
  5246. %__tar -xvf %{SOURCE793}
  5247. %__tar -xvf %{SOURCE794}
  5248. %__tar -xvf %{SOURCE795}
  5249. %__tar -xvf %{SOURCE796}
  5250. %__tar -xvf %{SOURCE797}
  5251. %__tar -xvf %{SOURCE798}
  5252. %__tar -xvf %{SOURCE799}
  5253. %__tar -xvf %{SOURCE800}
  5254. %__tar -xvf %{SOURCE801}
  5255. %__tar -xvf %{SOURCE802}
  5256. %__tar -xvf %{SOURCE803}
  5257. %__tar -xvf %{SOURCE804}
  5258. %__tar -xvf %{SOURCE805}
  5259. %__tar -xvf %{SOURCE806}
  5260. %__tar -xvf %{SOURCE807}
  5261. %__tar -xvf %{SOURCE808}
  5262. %__tar -xvf %{SOURCE809}
  5263. %__tar -xvf %{SOURCE810}
  5264. %__tar -xvf %{SOURCE811}
  5265. %__tar -xvf %{SOURCE812}
  5266. %__tar -xvf %{SOURCE813}
  5267. %__tar -xvf %{SOURCE814}
  5268. %__tar -xvf %{SOURCE815}
  5269. %__tar -xvf %{SOURCE816}
  5270. %__tar -xvf %{SOURCE817}
  5271. %__tar -xvf %{SOURCE818}
  5272. %__tar -xvf %{SOURCE819}
  5273. %__tar -xvf %{SOURCE820}
  5274. %__tar -xvf %{SOURCE821}
  5275. %__tar -xvf %{SOURCE822}
  5276. %__tar -xvf %{SOURCE823}
  5277. %__tar -xvf %{SOURCE824}
  5278. %__tar -xvf %{SOURCE825}
  5279. %__tar -xvf %{SOURCE826}
  5280. %__tar -xvf %{SOURCE827}
  5281. %__tar -xvf %{SOURCE828}
  5282. %__tar -xvf %{SOURCE829}
  5283. %__tar -xvf %{SOURCE830}
  5284. %__tar -xvf %{SOURCE831}
  5285. %__tar -xvf %{SOURCE832}
  5286. %__tar -xvf %{SOURCE833}
  5287. %__tar -xvf %{SOURCE834}
  5288. %__tar -xvf %{SOURCE835}
  5289. %__tar -xvf %{SOURCE836}
  5290. %__tar -xvf %{SOURCE837}
  5291. %__tar -xvf %{SOURCE838}
  5292. %__tar -xvf %{SOURCE839}
  5293. %__tar -xvf %{SOURCE840}
  5294. %__tar -xvf %{SOURCE841}
  5295. %__tar -xvf %{SOURCE842}
  5296. %__tar -xvf %{SOURCE843}
  5297. %__tar -xvf %{SOURCE844}
  5298. %__tar -xvf %{SOURCE845}
  5299. %__tar -xvf %{SOURCE846}
  5300. %__tar -xvf %{SOURCE847}
  5301. %__tar -xvf %{SOURCE848}
  5302. %__tar -xvf %{SOURCE849}
  5303. %__tar -xvf %{SOURCE850}
  5304. %__tar -xvf %{SOURCE851}
  5305. %__tar -xvf %{SOURCE852}
  5306. %__tar -xvf %{SOURCE853}
  5307. %__tar -xvf %{SOURCE854}
  5308. %__tar -xvf %{SOURCE855}
  5309. %__tar -xvf %{SOURCE856}
  5310. %__tar -xvf %{SOURCE857}
  5311. %__tar -xvf %{SOURCE858}
  5312. %__tar -xvf %{SOURCE859}
  5313. %__tar -xvf %{SOURCE860}
  5314. %__tar -xvf %{SOURCE861}
  5315. %__tar -xvf %{SOURCE862}
  5316. %__tar -xvf %{SOURCE863}
  5317. %__tar -xvf %{SOURCE864}
  5318. %__tar -xvf %{SOURCE865}
  5319. %__tar -xvf %{SOURCE866}
  5320. %__tar -xvf %{SOURCE867}
  5321. %__tar -xvf %{SOURCE868}
  5322. %__tar -xvf %{SOURCE869}
  5323. %__tar -xvf %{SOURCE870}
  5324. %__tar -xvf %{SOURCE871}
  5325. %__tar -xvf %{SOURCE872}
  5326. %__tar -xvf %{SOURCE873}
  5327. %__tar -xvf %{SOURCE874}
  5328. %__tar -xvf %{SOURCE875}
  5329. %__tar -xvf %{SOURCE876}
  5330. %__tar -xvf %{SOURCE877}
  5331. %__tar -xvf %{SOURCE878}
  5332. %__tar -xvf %{SOURCE879}
  5333. %__tar -xvf %{SOURCE880}
  5334. %__tar -xvf %{SOURCE881}
  5335. %__tar -xvf %{SOURCE882}
  5336. %__tar -xvf %{SOURCE883}
  5337. %__tar -xvf %{SOURCE884}
  5338. %__tar -xvf %{SOURCE885}
  5339. %__tar -xvf %{SOURCE886}
  5340. %__tar -xvf %{SOURCE887}
  5341. %__tar -xvf %{SOURCE888}
  5342. %__tar -xvf %{SOURCE889}
  5343. %__tar -xvf %{SOURCE890}
  5344. %__tar -xvf %{SOURCE891}
  5345. %__tar -xvf %{SOURCE892}
  5346. %__tar -xvf %{SOURCE893}
  5347. %__tar -xvf %{SOURCE894}
  5348. %__tar -xvf %{SOURCE895}
  5349. %__tar -xvf %{SOURCE896}
  5350. %__tar -xvf %{SOURCE897}
  5351. %__tar -xvf %{SOURCE898}
  5352. %__tar -xvf %{SOURCE899}
  5353. %__tar -xvf %{SOURCE900}
  5354. %__tar -xvf %{SOURCE901}
  5355. %__tar -xvf %{SOURCE902}
  5356. %__tar -xvf %{SOURCE903}
  5357. %__tar -xvf %{SOURCE904}
  5358. %__tar -xvf %{SOURCE905}
  5359. %__tar -xvf %{SOURCE906}
  5360. %__tar -xvf %{SOURCE907}
  5361. %__tar -xvf %{SOURCE908}
  5362. %__tar -xvf %{SOURCE909}
  5363. %__tar -xvf %{SOURCE910}
  5364. %__tar -xvf %{SOURCE911}
  5365. %__tar -xvf %{SOURCE912}
  5366. %__tar -xvf %{SOURCE913}
  5367. %__tar -xvf %{SOURCE914}
  5368. %__tar -xvf %{SOURCE915}
  5369. %__tar -xvf %{SOURCE916}
  5370. %__tar -xvf %{SOURCE917}
  5371. %__tar -xvf %{SOURCE918}
  5372. %__tar -xvf %{SOURCE919}
  5373. %__tar -xvf %{SOURCE920}
  5374. %__tar -xvf %{SOURCE921}
  5375. %__tar -xvf %{SOURCE922}
  5376. %__tar -xvf %{SOURCE923}
  5377. %__tar -xvf %{SOURCE924}
  5378. %__tar -xvf %{SOURCE925}
  5379. %__tar -xvf %{SOURCE926}
  5380. %__tar -xvf %{SOURCE927}
  5381. %__tar -xvf %{SOURCE928}
  5382. %__tar -xvf %{SOURCE929}
  5383. %__tar -xvf %{SOURCE930}
  5384. %__tar -xvf %{SOURCE931}
  5385. %__tar -xvf %{SOURCE932}
  5386. %__tar -xvf %{SOURCE933}
  5387. %__tar -xvf %{SOURCE934}
  5388. %__tar -xvf %{SOURCE935}
  5389. %__tar -xvf %{SOURCE936}
  5390. %__tar -xvf %{SOURCE937}
  5391. %__tar -xvf %{SOURCE938}
  5392. %__tar -xvf %{SOURCE939}
  5393. %__tar -xvf %{SOURCE940}
  5394. %__tar -xvf %{SOURCE941}
  5395. %__tar -xvf %{SOURCE942}
  5396. %__tar -xvf %{SOURCE943}
  5397. %__tar -xvf %{SOURCE944}
  5398. %__tar -xvf %{SOURCE945}
  5399. %__tar -xvf %{SOURCE946}
  5400. %__tar -xvf %{SOURCE947}
  5401. %__tar -xvf %{SOURCE948}
  5402. %__tar -xvf %{SOURCE949}
  5403. %__tar -xvf %{SOURCE950}
  5404. %__tar -xvf %{SOURCE951}
  5405. %__tar -xvf %{SOURCE952}
  5406. %__tar -xvf %{SOURCE953}
  5407. %__tar -xvf %{SOURCE954}
  5408. %__tar -xvf %{SOURCE955}
  5409. %__tar -xvf %{SOURCE956}
  5410. %__tar -xvf %{SOURCE957}
  5411. %__tar -xvf %{SOURCE958}
  5412. %__tar -xvf %{SOURCE959}
  5413. %__tar -xvf %{SOURCE960}
  5414. %__tar -xvf %{SOURCE961}
  5415. %__tar -xvf %{SOURCE962}
  5416. %__tar -xvf %{SOURCE963}
  5417. %__tar -xvf %{SOURCE964}
  5418. %__tar -xvf %{SOURCE965}
  5419. %__tar -xvf %{SOURCE966}
  5420. %__tar -xvf %{SOURCE967}
  5421. %__tar -xvf %{SOURCE968}
  5422. %__tar -xvf %{SOURCE969}
  5423. %__tar -xvf %{SOURCE970}
  5424. %__tar -xvf %{SOURCE971}
  5425. %__tar -xvf %{SOURCE972}
  5426. %__tar -xvf %{SOURCE973}
  5427. %__tar -xvf %{SOURCE974}
  5428. %__tar -xvf %{SOURCE975}
  5429. %__tar -xvf %{SOURCE976}
  5430. %__tar -xvf %{SOURCE977}
  5431. %__tar -xvf %{SOURCE978}
  5432. %__tar -xvf %{SOURCE979}
  5433. %__tar -xvf %{SOURCE980}
  5434. %__tar -xvf %{SOURCE981}
  5435. %__tar -xvf %{SOURCE982}
  5436. %__tar -xvf %{SOURCE983}
  5437. %__tar -xvf %{SOURCE984}
  5438. %__tar -xvf %{SOURCE985}
  5439. %__tar -xvf %{SOURCE986}
  5440. %__tar -xvf %{SOURCE987}
  5441. %__tar -xvf %{SOURCE988}
  5442. %__tar -xvf %{SOURCE989}
  5443. %__tar -xvf %{SOURCE990}
  5444. %__tar -xvf %{SOURCE991}
  5445. %__tar -xvf %{SOURCE992}
  5446. %__tar -xvf %{SOURCE993}
  5447. %__tar -xvf %{SOURCE994}
  5448. %__tar -xvf %{SOURCE995}
  5449. %__tar -xvf %{SOURCE996}
  5450. %__tar -xvf %{SOURCE997}
  5451. %__tar -xvf %{SOURCE998}
  5452. %__tar -xvf %{SOURCE999}
  5453. %__tar -xvf %{SOURCE1000}
  5454. %__tar -xvf %{SOURCE1001}
  5455. %__tar -xvf %{SOURCE1002}
  5456. %__tar -xvf %{SOURCE1003}
  5457. %__tar -xvf %{SOURCE1004}
  5458. %__tar -xvf %{SOURCE1005}
  5459. %__tar -xvf %{SOURCE1006}
  5460. %__tar -xvf %{SOURCE1007}
  5461. %__tar -xvf %{SOURCE1008}
  5462. %__tar -xvf %{SOURCE1009}
  5463. %__tar -xvf %{SOURCE1010}
  5464. %__tar -xvf %{SOURCE1011}
  5465. %__tar -xvf %{SOURCE1012}
  5466. %__tar -xvf %{SOURCE1013}
  5467. %__tar -xvf %{SOURCE1014}
  5468. %__tar -xvf %{SOURCE1015}
  5469. %__tar -xvf %{SOURCE1016}
  5470. %__tar -xvf %{SOURCE1017}
  5471. %__tar -xvf %{SOURCE1018}
  5472. %__tar -xvf %{SOURCE1019}
  5473. %__tar -xvf %{SOURCE1020}
  5474. %__tar -xvf %{SOURCE1021}
  5475. %__tar -xvf %{SOURCE1022}
  5476. %__tar -xvf %{SOURCE1023}
  5477. %__tar -xvf %{SOURCE1024}
  5478. %__tar -xvf %{SOURCE1025}
  5479. %__tar -xvf %{SOURCE1026}
  5480. %__tar -xvf %{SOURCE1027}
  5481. %__tar -xvf %{SOURCE1028}
  5482. %__tar -xvf %{SOURCE1029}
  5483. %__tar -xvf %{SOURCE1030}
  5484. %__tar -xvf %{SOURCE1031}
  5485. %__tar -xvf %{SOURCE1032}
  5486. %__tar -xvf %{SOURCE1033}
  5487. %__tar -xvf %{SOURCE1034}
  5488. %__tar -xvf %{SOURCE1035}
  5489. %__tar -xvf %{SOURCE1036}
  5490. %__tar -xvf %{SOURCE1037}
  5491. %__tar -xvf %{SOURCE1038}
  5492. %__tar -xvf %{SOURCE1039}
  5493. %__tar -xvf %{SOURCE1040}
  5494. %__tar -xvf %{SOURCE1041}
  5495. %__tar -xvf %{SOURCE1042}
  5496. %__tar -xvf %{SOURCE1043}
  5497. %__tar -xvf %{SOURCE1044}
  5498. %__tar -xvf %{SOURCE1045}
  5499. %__tar -xvf %{SOURCE1046}
  5500. %__tar -xvf %{SOURCE1047}
  5501. %__tar -xvf %{SOURCE1048}
  5502. %__tar -xvf %{SOURCE1049}
  5503. %__tar -xvf %{SOURCE1050}
  5504. %__tar -xvf %{SOURCE1051}
  5505. %__tar -xvf %{SOURCE1052}
  5506. %__tar -xvf %{SOURCE1053}
  5507. %__tar -xvf %{SOURCE1054}
  5508. %__tar -xvf %{SOURCE1055}
  5509. %__tar -xvf %{SOURCE1056}
  5510. %__tar -xvf %{SOURCE1057}
  5511. %__tar -xvf %{SOURCE1058}
  5512. %__tar -xvf %{SOURCE1059}
  5513. %__tar -xvf %{SOURCE1060}
  5514. %__tar -xvf %{SOURCE1061}
  5515. %__tar -xvf %{SOURCE1062}
  5516. %__tar -xvf %{SOURCE1063}
  5517. %__tar -xvf %{SOURCE1064}
  5518. %__tar -xvf %{SOURCE1065}
  5519. %__tar -xvf %{SOURCE1066}
  5520. %__tar -xvf %{SOURCE1067}
  5521. %__tar -xvf %{SOURCE1068}
  5522. %__tar -xvf %{SOURCE1069}
  5523. %__tar -xvf %{SOURCE1070}
  5524. %__tar -xvf %{SOURCE1071}
  5525. %__tar -xvf %{SOURCE1072}
  5526. %__tar -xvf %{SOURCE1073}
  5527. %__tar -xvf %{SOURCE1074}
  5528. %__tar -xvf %{SOURCE1075}
  5529. %__tar -xvf %{SOURCE1076}
  5530. %__tar -xvf %{SOURCE1077}
  5531. %__tar -xvf %{SOURCE1078}
  5532. %__tar -xvf %{SOURCE1079}
  5533. %__tar -xvf %{SOURCE1080}
  5534. %__tar -xvf %{SOURCE1081}
  5535. %__tar -xvf %{SOURCE1082}
  5536. %__tar -xvf %{SOURCE1083}
  5537. %__tar -xvf %{SOURCE1084}
  5538. %__tar -xvf %{SOURCE1085}
  5539. %__tar -xvf %{SOURCE1086}
  5540. %__tar -xvf %{SOURCE1087}
  5541. %__tar -xvf %{SOURCE1088}
  5542. %__tar -xvf %{SOURCE1089}
  5543. %__tar -xvf %{SOURCE1090}
  5544. %__tar -xvf %{SOURCE1091}
  5545. %__tar -xvf %{SOURCE1092}
  5546. %__tar -xvf %{SOURCE1093}
  5547. %__tar -xvf %{SOURCE1094}
  5548. %__tar -xvf %{SOURCE1095}
  5549. %__tar -xvf %{SOURCE1096}
  5550. %__tar -xvf %{SOURCE1097}
  5551. %__tar -xvf %{SOURCE1098}
  5552. %__tar -xvf %{SOURCE1099}
  5553. %__tar -xvf %{SOURCE1100}
  5554. %__tar -xvf %{SOURCE1101}
  5555. %__tar -xvf %{SOURCE1102}
  5556. %__tar -xvf %{SOURCE1103}
  5557. %__tar -xvf %{SOURCE1104}
  5558. %__tar -xvf %{SOURCE1105}
  5559. %__tar -xvf %{SOURCE1106}
  5560. %__tar -xvf %{SOURCE1107}
  5561. %__tar -xvf %{SOURCE1108}
  5562. %__tar -xvf %{SOURCE1109}
  5563. %__tar -xvf %{SOURCE1110}
  5564. %__tar -xvf %{SOURCE1111}
  5565. %__tar -xvf %{SOURCE1112}
  5566. %__tar -xvf %{SOURCE1113}
  5567. %__tar -xvf %{SOURCE1114}
  5568. %__tar -xvf %{SOURCE1115}
  5569. %__tar -xvf %{SOURCE1116}
  5570. %__tar -xvf %{SOURCE1117}
  5571. %__tar -xvf %{SOURCE1118}
  5572. %__tar -xvf %{SOURCE1119}
  5573. %__tar -xvf %{SOURCE1120}
  5574. %__tar -xvf %{SOURCE1121}
  5575. %__tar -xvf %{SOURCE1122}
  5576. %__tar -xvf %{SOURCE1123}
  5577. %__tar -xvf %{SOURCE1124}
  5578. %__tar -xvf %{SOURCE1125}
  5579. %__tar -xvf %{SOURCE1126}
  5580. %__tar -xvf %{SOURCE1127}
  5581. %__tar -xvf %{SOURCE1128}
  5582. %__tar -xvf %{SOURCE1129}
  5583. %__tar -xvf %{SOURCE1130}
  5584. %__tar -xvf %{SOURCE1131}
  5585. %__tar -xvf %{SOURCE1132}
  5586. %__tar -xvf %{SOURCE1133}
  5587. %__tar -xvf %{SOURCE1134}
  5588. %__tar -xvf %{SOURCE1135}
  5589. %__tar -xvf %{SOURCE1136}
  5590. %__tar -xvf %{SOURCE1137}
  5591. %__tar -xvf %{SOURCE1138}
  5592. %__tar -xvf %{SOURCE1139}
  5593. %__tar -xvf %{SOURCE1140}
  5594. %__tar -xvf %{SOURCE1141}
  5595. %__tar -xvf %{SOURCE1142}
  5596. %__tar -xvf %{SOURCE1143}
  5597. %__tar -xvf %{SOURCE1144}
  5598. %__tar -xvf %{SOURCE1145}
  5599. %__tar -xvf %{SOURCE1146}
  5600. %__tar -xvf %{SOURCE1147}
  5601. %__tar -xvf %{SOURCE1148}
  5602. %__tar -xvf %{SOURCE1149}
  5603. %__tar -xvf %{SOURCE1150}
  5604. %__tar -xvf %{SOURCE1151}
  5605. %__tar -xvf %{SOURCE1152}
  5606. %__tar -xvf %{SOURCE1153}
  5607. %__tar -xvf %{SOURCE1154}
  5608. %__tar -xvf %{SOURCE1155}
  5609. %__tar -xvf %{SOURCE1156}
  5610. %__tar -xvf %{SOURCE1157}
  5611. %__tar -xvf %{SOURCE1158}
  5612. %__tar -xvf %{SOURCE1159}
  5613. %__tar -xvf %{SOURCE1160}
  5614. %__tar -xvf %{SOURCE1161}
  5615. %__tar -xvf %{SOURCE1162}
  5616. %__tar -xvf %{SOURCE1163}
  5617. %__tar -xvf %{SOURCE1164}
  5618. %__tar -xvf %{SOURCE1165}
  5619. %__tar -xvf %{SOURCE1166}
  5620. %__tar -xvf %{SOURCE1167}
  5621. %__tar -xvf %{SOURCE1168}
  5622. %__tar -xvf %{SOURCE1169}
  5623. %__tar -xvf %{SOURCE1170}
  5624. %__tar -xvf %{SOURCE1171}
  5625. %__tar -xvf %{SOURCE1172}
  5626. %__tar -xvf %{SOURCE1173}
  5627. %__tar -xvf %{SOURCE1174}
  5628. %__tar -xvf %{SOURCE1175}
  5629. %__tar -xvf %{SOURCE1176}
  5630. %__tar -xvf %{SOURCE1177}
  5631. %__tar -xvf %{SOURCE1178}
  5632. %__tar -xvf %{SOURCE1179}
  5633. %__tar -xvf %{SOURCE1180}
  5634. %__tar -xvf %{SOURCE1181}
  5635. %__tar -xvf %{SOURCE1182}
  5636. %__tar -xvf %{SOURCE1183}
  5637. %__tar -xvf %{SOURCE1184}
  5638. %__tar -xvf %{SOURCE1185}
  5639. %__tar -xvf %{SOURCE1186}
  5640. %__tar -xvf %{SOURCE1187}
  5641. %__tar -xvf %{SOURCE1188}
  5642. %__tar -xvf %{SOURCE1189}
  5643. %__tar -xvf %{SOURCE1190}
  5644. %__tar -xvf %{SOURCE1191}
  5645. %__tar -xvf %{SOURCE1192}
  5646. %__tar -xvf %{SOURCE1193}
  5647. %__tar -xvf %{SOURCE1194}
  5648. %__tar -xvf %{SOURCE1195}
  5649. %__tar -xvf %{SOURCE1196}
  5650. %__tar -xvf %{SOURCE1197}
  5651. %__tar -xvf %{SOURCE1198}
  5652. %__tar -xvf %{SOURCE1199}
  5653. %__tar -xvf %{SOURCE1200}
  5654. %__tar -xvf %{SOURCE1201}
  5655. %__tar -xvf %{SOURCE1202}
  5656. %__tar -xvf %{SOURCE1203}
  5657. %__tar -xvf %{SOURCE1204}
  5658. %__tar -xvf %{SOURCE1205}
  5659. %__tar -xvf %{SOURCE1206}
  5660. %__tar -xvf %{SOURCE1207}
  5661. %__tar -xvf %{SOURCE1208}
  5662. %__tar -xvf %{SOURCE1209}
  5663. %__tar -xvf %{SOURCE1210}
  5664. %__tar -xvf %{SOURCE1211}
  5665. %__tar -xvf %{SOURCE1212}
  5666. %__tar -xvf %{SOURCE1213}
  5667. %__tar -xvf %{SOURCE1214}
  5668. %__tar -xvf %{SOURCE1215}
  5669. %__tar -xvf %{SOURCE1216}
  5670. %__tar -xvf %{SOURCE1217}
  5671. %__tar -xvf %{SOURCE1218}
  5672. %__tar -xvf %{SOURCE1219}
  5673. %__tar -xvf %{SOURCE1220}
  5674. %__tar -xvf %{SOURCE1221}
  5675. %__tar -xvf %{SOURCE1222}
  5676. %__tar -xvf %{SOURCE1223}
  5677. %__tar -xvf %{SOURCE1224}
  5678. %__tar -xvf %{SOURCE1225}
  5679. %__tar -xvf %{SOURCE1226}
  5680. %__tar -xvf %{SOURCE1227}
  5681. %__tar -xvf %{SOURCE1228}
  5682. %__tar -xvf %{SOURCE1229}
  5683. %__tar -xvf %{SOURCE1230}
  5684. %__tar -xvf %{SOURCE1231}
  5685. %__tar -xvf %{SOURCE1232}
  5686. %__tar -xvf %{SOURCE1233}
  5687. %__tar -xvf %{SOURCE1234}
  5688. %__tar -xvf %{SOURCE1235}
  5689. %__tar -xvf %{SOURCE1236}
  5690. %__tar -xvf %{SOURCE1237}
  5691. %__tar -xvf %{SOURCE1238}
  5692. %__tar -xvf %{SOURCE1239}
  5693. %__tar -xvf %{SOURCE1240}
  5694. %__tar -xvf %{SOURCE1241}
  5695. %__tar -xvf %{SOURCE1242}
  5696. %__tar -xvf %{SOURCE1243}
  5697. %__tar -xvf %{SOURCE1244}
  5698. %__tar -xvf %{SOURCE1245}
  5699. %__tar -xvf %{SOURCE1246}
  5700. %__tar -xvf %{SOURCE1247}
  5701. %__tar -xvf %{SOURCE1248}
  5702. %__tar -xvf %{SOURCE1249}
  5703. %__tar -xvf %{SOURCE1250}
  5704. %__tar -xvf %{SOURCE1251}
  5705. %__tar -xvf %{SOURCE1252}
  5706. %__tar -xvf %{SOURCE1253}
  5707. %__tar -xvf %{SOURCE1254}
  5708. %__tar -xvf %{SOURCE1255}
  5709. %__tar -xvf %{SOURCE1256}
  5710. %__tar -xvf %{SOURCE1257}
  5711. %__tar -xvf %{SOURCE1258}
  5712. %__tar -xvf %{SOURCE1259}
  5713. %__tar -xvf %{SOURCE1260}
  5714. %__tar -xvf %{SOURCE1261}
  5715. %__tar -xvf %{SOURCE1262}
  5716. %__tar -xvf %{SOURCE1263}
  5717. %__tar -xvf %{SOURCE1264}
  5718. %__tar -xvf %{SOURCE1265}
  5719. %__tar -xvf %{SOURCE1266}
  5720. %__tar -xvf %{SOURCE1267}
  5721. %__tar -xvf %{SOURCE1268}
  5722. %__tar -xvf %{SOURCE1269}
  5723. %__tar -xvf %{SOURCE1270}
  5724. %__tar -xvf %{SOURCE1271}
  5725. %__tar -xvf %{SOURCE1272}
  5726. %__tar -xvf %{SOURCE1273}
  5727. %__tar -xvf %{SOURCE1274}
  5728. %__tar -xvf %{SOURCE1275}
  5729. %__tar -xvf %{SOURCE1276}
  5730. %__tar -xvf %{SOURCE1277}
  5731. %__tar -xvf %{SOURCE1278}
  5732. %__tar -xvf %{SOURCE1279}
  5733. %__tar -xvf %{SOURCE1280}
  5734. %__tar -xvf %{SOURCE1281}
  5735. %__tar -xvf %{SOURCE1282}
  5736. %__tar -xvf %{SOURCE1283}
  5737. %__tar -xvf %{SOURCE1284}
  5738. %__tar -xvf %{SOURCE1285}
  5739. %__tar -xvf %{SOURCE1286}
  5740. %__tar -xvf %{SOURCE1287}
  5741. %__tar -xvf %{SOURCE1288}
  5742. %__tar -xvf %{SOURCE1289}
  5743. %__tar -xvf %{SOURCE1290}
  5744. %__tar -xvf %{SOURCE1291}
  5745. %__tar -xvf %{SOURCE1292}
  5746. %__tar -xvf %{SOURCE1293}
  5747. %__tar -xvf %{SOURCE1294}
  5748. %__tar -xvf %{SOURCE1295}
  5749. %__tar -xvf %{SOURCE1296}
  5750. %__tar -xvf %{SOURCE1297}
  5751. %__tar -xvf %{SOURCE1298}
  5752. %__tar -xvf %{SOURCE1299}
  5753. %__tar -xvf %{SOURCE1300}
  5754. %__tar -xvf %{SOURCE1301}
  5755. %__tar -xvf %{SOURCE1302}
  5756. %__tar -xvf %{SOURCE1303}
  5757. %__tar -xvf %{SOURCE1304}
  5758. %__tar -xvf %{SOURCE1305}
  5759. %__tar -xvf %{SOURCE1306}
  5760. %__tar -xvf %{SOURCE1307}
  5761. %__tar -xvf %{SOURCE1308}
  5762. %__tar -xvf %{SOURCE1309}
  5763. %__tar -xvf %{SOURCE1310}
  5764. %__tar -xvf %{SOURCE1311}
  5765. %__tar -xvf %{SOURCE1312}
  5766. %__tar -xvf %{SOURCE1313}
  5767. %__tar -xvf %{SOURCE1314}
  5768. %__tar -xvf %{SOURCE1315}
  5769. %__tar -xvf %{SOURCE1316}
  5770. %__tar -xvf %{SOURCE1317}
  5771. %__tar -xvf %{SOURCE1318}
  5772. %__tar -xvf %{SOURCE1319}
  5773. %__tar -xvf %{SOURCE1320}
  5774. %__tar -xvf %{SOURCE1321}
  5775. %__tar -xvf %{SOURCE1322}
  5776. %__tar -xvf %{SOURCE1323}
  5777. %__tar -xvf %{SOURCE1324}
  5778. %__tar -xvf %{SOURCE1325}
  5779. %__tar -xvf %{SOURCE1326}
  5780. %__tar -xvf %{SOURCE1327}
  5781. %__tar -xvf %{SOURCE1328}
  5782. %__tar -xvf %{SOURCE1329}
  5783. %__tar -xvf %{SOURCE1330}
  5784. %__tar -xvf %{SOURCE1331}
  5785. %__tar -xvf %{SOURCE1332}
  5786. %__tar -xvf %{SOURCE1333}
  5787. %__tar -xvf %{SOURCE1334}
  5788. %__tar -xvf %{SOURCE1335}
  5789. %__tar -xvf %{SOURCE1336}
  5790. %__tar -xvf %{SOURCE1337}
  5791. %__tar -xvf %{SOURCE1338}
  5792. %__tar -xvf %{SOURCE1339}
  5793. %__tar -xvf %{SOURCE1340}
  5794. %__tar -xvf %{SOURCE1341}
  5795. %__tar -xvf %{SOURCE1342}
  5796. %__tar -xvf %{SOURCE1343}
  5797. %__tar -xvf %{SOURCE1344}
  5798. %__tar -xvf %{SOURCE1345}
  5799. %__tar -xvf %{SOURCE1346}
  5800. %__tar -xvf %{SOURCE1347}
  5801. %__tar -xvf %{SOURCE1348}
  5802. %__tar -xvf %{SOURCE1349}
  5803. %__tar -xvf %{SOURCE1350}
  5804. %__tar -xvf %{SOURCE1351}
  5805. %__tar -xvf %{SOURCE1352}
  5806. %__tar -xvf %{SOURCE1353}
  5807. %__tar -xvf %{SOURCE1354}
  5808. %__tar -xvf %{SOURCE1355}
  5809. %__tar -xvf %{SOURCE1356}
  5810. %__tar -xvf %{SOURCE1357}
  5811. %__tar -xvf %{SOURCE1358}
  5812. %__tar -xvf %{SOURCE1359}
  5813. %__tar -xvf %{SOURCE1360}
  5814. %__tar -xvf %{SOURCE1361}
  5815. %__tar -xvf %{SOURCE1362}
  5816. %__tar -xvf %{SOURCE1363}
  5817. %__tar -xvf %{SOURCE1364}
  5818. %__tar -xvf %{SOURCE1365}
  5819. %__tar -xvf %{SOURCE1366}
  5820. %__tar -xvf %{SOURCE1367}
  5821. %__tar -xvf %{SOURCE1368}
  5822. %__tar -xvf %{SOURCE1369}
  5823. %__tar -xvf %{SOURCE1370}
  5824. %__tar -xvf %{SOURCE1371}
  5825. %__tar -xvf %{SOURCE1372}
  5826. %__tar -xvf %{SOURCE1373}
  5827. %__tar -xvf %{SOURCE1374}
  5828. %__tar -xvf %{SOURCE1375}
  5829. %__tar -xvf %{SOURCE1376}
  5830. %__tar -xvf %{SOURCE1377}
  5831. %__tar -xvf %{SOURCE1378}
  5832. %__tar -xvf %{SOURCE1379}
  5833. %__tar -xvf %{SOURCE1380}
  5834. %__tar -xvf %{SOURCE1381}
  5835. %__tar -xvf %{SOURCE1382}
  5836. %__tar -xvf %{SOURCE1383}
  5837. %__tar -xvf %{SOURCE1384}
  5838. %__tar -xvf %{SOURCE1385}
  5839. %__tar -xvf %{SOURCE1386}
  5840. %__tar -xvf %{SOURCE1387}
  5841. %__tar -xvf %{SOURCE1388}
  5842. %__tar -xvf %{SOURCE1389}
  5843. %__tar -xvf %{SOURCE1390}
  5844. %__tar -xvf %{SOURCE1391}
  5845. %__tar -xvf %{SOURCE1392}
  5846. %__tar -xvf %{SOURCE1393}
  5847. %__tar -xvf %{SOURCE1394}
  5848. %__tar -xvf %{SOURCE1395}
  5849. %__tar -xvf %{SOURCE1396}
  5850. %__tar -xvf %{SOURCE1397}
  5851. %__tar -xvf %{SOURCE1398}
  5852. %__tar -xvf %{SOURCE1399}
  5853. %__tar -xvf %{SOURCE1400}
  5854. %__tar -xvf %{SOURCE1401}
  5855. %__tar -xvf %{SOURCE1402}
  5856. %__tar -xvf %{SOURCE1403}
  5857. %__tar -xvf %{SOURCE1404}
  5858. %__tar -xvf %{SOURCE1405}
  5859. %__tar -xvf %{SOURCE1406}
  5860. %__tar -xvf %{SOURCE1407}
  5861. %__tar -xvf %{SOURCE1408}
  5862. %__tar -xvf %{SOURCE1409}
  5863. %__tar -xvf %{SOURCE1410}
  5864. %__tar -xvf %{SOURCE1411}
  5865. %__tar -xvf %{SOURCE1412}
  5866. %__tar -xvf %{SOURCE1413}
  5867. %__tar -xvf %{SOURCE1414}
  5868. %__tar -xvf %{SOURCE1415}
  5869. %__tar -xvf %{SOURCE1416}
  5870. %__tar -xvf %{SOURCE1417}
  5871. %__tar -xvf %{SOURCE1418}
  5872. %__tar -xvf %{SOURCE1419}
  5873. %__tar -xvf %{SOURCE1420}
  5874. %__tar -xvf %{SOURCE1421}
  5875. %__tar -xvf %{SOURCE1422}
  5876. %__tar -xvf %{SOURCE1423}
  5877. %__tar -xvf %{SOURCE1424}
  5878. %__tar -xvf %{SOURCE1425}
  5879. %__tar -xvf %{SOURCE1426}
  5880. %__tar -xvf %{SOURCE1427}
  5881. %__tar -xvf %{SOURCE1428}
  5882. %__tar -xvf %{SOURCE1429}
  5883. %__tar -xvf %{SOURCE1430}
  5884. %__tar -xvf %{SOURCE1431}
  5885. %__tar -xvf %{SOURCE1432}
  5886. %__tar -xvf %{SOURCE1433}
  5887. %__tar -xvf %{SOURCE1434}
  5888. %__tar -xvf %{SOURCE1435}
  5889. %__tar -xvf %{SOURCE1436}
  5890. %__tar -xvf %{SOURCE1437}
  5891. %__tar -xvf %{SOURCE1438}
  5892. %__tar -xvf %{SOURCE1439}
  5893. %__tar -xvf %{SOURCE1440}
  5894. %__tar -xvf %{SOURCE1441}
  5895. %__tar -xvf %{SOURCE1442}
  5896. %__tar -xvf %{SOURCE1443}
  5897. %__tar -xvf %{SOURCE1444}
  5898. %__tar -xvf %{SOURCE1445}
  5899. %__tar -xvf %{SOURCE1446}
  5900. %__tar -xvf %{SOURCE1447}
  5901. %__tar -xvf %{SOURCE1448}
  5902. %__tar -xvf %{SOURCE1449}
  5903. %__tar -xvf %{SOURCE1450}
  5904. %__tar -xvf %{SOURCE1451}
  5905. %__tar -xvf %{SOURCE1452}
  5906. %__tar -xvf %{SOURCE1453}
  5907. %__tar -xvf %{SOURCE1454}
  5908. %__tar -xvf %{SOURCE1455}
  5909. %__tar -xvf %{SOURCE1456}
  5910. %__tar -xvf %{SOURCE1457}
  5911. %__tar -xvf %{SOURCE1458}
  5912. %__tar -xvf %{SOURCE1459}
  5913. %__tar -xvf %{SOURCE1460}
  5914. %__tar -xvf %{SOURCE1461}
  5915. %__tar -xvf %{SOURCE1462}
  5916. %__tar -xvf %{SOURCE1463}
  5917. %__tar -xvf %{SOURCE1464}
  5918. %__tar -xvf %{SOURCE1465}
  5919. %__tar -xvf %{SOURCE1466}
  5920. %__tar -xvf %{SOURCE1467}
  5921. %__tar -xvf %{SOURCE1468}
  5922. %__tar -xvf %{SOURCE1469}
  5923. %__tar -xvf %{SOURCE1470}
  5924. %__tar -xvf %{SOURCE1471}
  5925. %__tar -xvf %{SOURCE1472}
  5926. %__tar -xvf %{SOURCE1473}
  5927. %__tar -xvf %{SOURCE1474}
  5928. %__tar -xvf %{SOURCE1475}
  5929. %__tar -xvf %{SOURCE1476}
  5930. %__tar -xvf %{SOURCE1477}
  5931. %__tar -xvf %{SOURCE1478}
  5932. %__tar -xvf %{SOURCE1479}
  5933. %__tar -xvf %{SOURCE1480}
  5934. %__tar -xvf %{SOURCE1481}
  5935. %__tar -xvf %{SOURCE1482}
  5936. %__tar -xvf %{SOURCE1483}
  5937. %__tar -xvf %{SOURCE1484}
  5938. %__tar -xvf %{SOURCE1485}
  5939. %__tar -xvf %{SOURCE1486}
  5940. %__tar -xvf %{SOURCE1487}
  5941. %__tar -xvf %{SOURCE1488}
  5942. %__tar -xvf %{SOURCE1489}
  5943. %__tar -xvf %{SOURCE1490}
  5944. %__tar -xvf %{SOURCE1491}
  5945. %__tar -xvf %{SOURCE1492}
  5946. %__tar -xvf %{SOURCE1493}
  5947. %__tar -xvf %{SOURCE1494}
  5948. %__tar -xvf %{SOURCE1495}
  5949. %__tar -xvf %{SOURCE1496}
  5950. %__tar -xvf %{SOURCE1497}
  5951. %__tar -xvf %{SOURCE1498}
  5952. %__tar -xvf %{SOURCE1499}
  5953. %__tar -xvf %{SOURCE1500}
  5954. %__tar -xvf %{SOURCE1501}
  5955. %__tar -xvf %{SOURCE1502}
  5956. %__tar -xvf %{SOURCE1503}
  5957. %__tar -xvf %{SOURCE1504}
  5958. %__tar -xvf %{SOURCE1505}
  5959. %__tar -xvf %{SOURCE1506}
  5960. %__tar -xvf %{SOURCE1507}
  5961. %__tar -xvf %{SOURCE1508}
  5962. %__tar -xvf %{SOURCE1509}
  5963. %__tar -xvf %{SOURCE1510}
  5964. %__tar -xvf %{SOURCE1511}
  5965. %__tar -xvf %{SOURCE1512}
  5966. %__tar -xvf %{SOURCE1513}
  5967. %__tar -xvf %{SOURCE1514}
  5968. %__tar -xvf %{SOURCE1515}
  5969. %__tar -xvf %{SOURCE1516}
  5970. %__tar -xvf %{SOURCE1517}
  5971. %__tar -xvf %{SOURCE1518}
  5972. %__tar -xvf %{SOURCE1519}
  5973. %__tar -xvf %{SOURCE1520}
  5974. %__tar -xvf %{SOURCE1521}
  5975. %__tar -xvf %{SOURCE1522}
  5976. %__tar -xvf %{SOURCE1523}
  5977. %__tar -xvf %{SOURCE1524}
  5978. %__tar -xvf %{SOURCE1525}
  5979. %__tar -xvf %{SOURCE1526}
  5980. %__tar -xvf %{SOURCE1527}
  5981. %__tar -xvf %{SOURCE1528}
  5982. %__tar -xvf %{SOURCE1529}
  5983. %__tar -xvf %{SOURCE1530}
  5984. %__tar -xvf %{SOURCE1531}
  5985. %__tar -xvf %{SOURCE1532}
  5986. %__tar -xvf %{SOURCE1533}
  5987. %__tar -xvf %{SOURCE1534}
  5988. %__tar -xvf %{SOURCE1535}
  5989. %__tar -xvf %{SOURCE1536}
  5990. %__tar -xvf %{SOURCE1537}
  5991. %__tar -xvf %{SOURCE1538}
  5992. %__tar -xvf %{SOURCE1539}
  5993. %__tar -xvf %{SOURCE1540}
  5994. %__tar -xvf %{SOURCE1541}
  5995. %__tar -xvf %{SOURCE1542}
  5996. %__tar -xvf %{SOURCE1543}
  5997. %__tar -xvf %{SOURCE1544}
  5998. %__tar -xvf %{SOURCE1545}
  5999. %__tar -xvf %{SOURCE1546}
  6000. %__tar -xvf %{SOURCE1547}
  6001. %__tar -xvf %{SOURCE1548}
  6002. %__tar -xvf %{SOURCE1549}
  6003. %__tar -xvf %{SOURCE1550}
  6004. %__tar -xvf %{SOURCE1551}
  6005. %__tar -xvf %{SOURCE1552}
  6006. %__tar -xvf %{SOURCE1553}
  6007. %__tar -xvf %{SOURCE1554}
  6008. %__tar -xvf %{SOURCE1555}
  6009. %__tar -xvf %{SOURCE1556}
  6010. %__tar -xvf %{SOURCE1557}
  6011. %__tar -xvf %{SOURCE1558}
  6012. %__tar -xvf %{SOURCE1559}
  6013. %__tar -xvf %{SOURCE1560}
  6014. %__tar -xvf %{SOURCE1561}
  6015. %__tar -xvf %{SOURCE1562}
  6016. %__tar -xvf %{SOURCE1563}
  6017. %__tar -xvf %{SOURCE1564}
  6018. %__tar -xvf %{SOURCE1565}
  6019. %__tar -xvf %{SOURCE1566}
  6020. %__tar -xvf %{SOURCE1567}
  6021. %__tar -xvf %{SOURCE1568}
  6022. %__tar -xvf %{SOURCE1569}
  6023. %__tar -xvf %{SOURCE1570}
  6024. %__tar -xvf %{SOURCE1571}
  6025. %__tar -xvf %{SOURCE1572}
  6026. %__tar -xvf %{SOURCE1573}
  6027. %__tar -xvf %{SOURCE1574}
  6028. %__tar -xvf %{SOURCE1575}
  6029. %__tar -xvf %{SOURCE1576}
  6030. %__tar -xvf %{SOURCE1577}
  6031. %__tar -xvf %{SOURCE1578}
  6032. %__tar -xvf %{SOURCE1579}
  6033. %__tar -xvf %{SOURCE1580}
  6034. %__tar -xvf %{SOURCE1581}
  6035. %__tar -xvf %{SOURCE1582}
  6036. %__tar -xvf %{SOURCE1583}
  6037. %__tar -xvf %{SOURCE1584}
  6038. %__tar -xvf %{SOURCE1585}
  6039. %__tar -xvf %{SOURCE1586}
  6040. %__tar -xvf %{SOURCE1587}
  6041. %__tar -xvf %{SOURCE1588}
  6042. %__tar -xvf %{SOURCE1589}
  6043. %__tar -xvf %{SOURCE1590}
  6044. %__tar -xvf %{SOURCE1591}
  6045. %__tar -xvf %{SOURCE1592}
  6046. %__tar -xvf %{SOURCE1593}
  6047. %__tar -xvf %{SOURCE1594}
  6048. %__tar -xvf %{SOURCE1595}
  6049. %__tar -xvf %{SOURCE1596}
  6050. %__tar -xvf %{SOURCE1597}
  6051. %__tar -xvf %{SOURCE1598}
  6052. %__tar -xvf %{SOURCE1599}
  6053. %__tar -xvf %{SOURCE1600}
  6054. %__tar -xvf %{SOURCE1601}
  6055. %__tar -xvf %{SOURCE1602}
  6056. %__tar -xvf %{SOURCE1603}
  6057. %__tar -xvf %{SOURCE1604}
  6058. %__tar -xvf %{SOURCE1605}
  6059. %__tar -xvf %{SOURCE1606}
  6060. %__tar -xvf %{SOURCE1607}
  6061. %__tar -xvf %{SOURCE1608}
  6062. %__tar -xvf %{SOURCE1609}
  6063. %__tar -xvf %{SOURCE1610}
  6064. %__tar -xvf %{SOURCE1611}
  6065. %__tar -xvf %{SOURCE1612}
  6066. %__tar -xvf %{SOURCE1613}
  6067. %__tar -xvf %{SOURCE1614}
  6068. %__tar -xvf %{SOURCE1615}
  6069. %__tar -xvf %{SOURCE1616}
  6070. %__tar -xvf %{SOURCE1617}
  6071. %__tar -xvf %{SOURCE1618}
  6072. %__tar -xvf %{SOURCE1619}
  6073. %__tar -xvf %{SOURCE1620}
  6074. %__tar -xvf %{SOURCE1621}
  6075. %__tar -xvf %{SOURCE1622}
  6076. %__tar -xvf %{SOURCE1623}
  6077. %__tar -xvf %{SOURCE1624}
  6078. %__tar -xvf %{SOURCE1625}
  6079. %__tar -xvf %{SOURCE1626}
  6080. %__tar -xvf %{SOURCE1627}
  6081. %__tar -xvf %{SOURCE1628}
  6082. %__tar -xvf %{SOURCE1629}
  6083. %__tar -xvf %{SOURCE1630}
  6084. %__tar -xvf %{SOURCE1631}
  6085. %__tar -xvf %{SOURCE1632}
  6086. %__tar -xvf %{SOURCE1633}
  6087. %__tar -xvf %{SOURCE1634}
  6088. %__tar -xvf %{SOURCE1635}
  6089. %__tar -xvf %{SOURCE1636}
  6090. %__tar -xvf %{SOURCE1637}
  6091. %__tar -xvf %{SOURCE1638}
  6092. %__tar -xvf %{SOURCE1639}
  6093. %__tar -xvf %{SOURCE1640}
  6094. %__tar -xvf %{SOURCE1641}
  6095. %__tar -xvf %{SOURCE1642}
  6096. %__tar -xvf %{SOURCE1643}
  6097. %__tar -xvf %{SOURCE1644}
  6098. %__tar -xvf %{SOURCE1645}
  6099. %__tar -xvf %{SOURCE1646}
  6100. %__tar -xvf %{SOURCE1647}
  6101. %__tar -xvf %{SOURCE1648}
  6102. %__tar -xvf %{SOURCE1649}
  6103. %__tar -xvf %{SOURCE1650}
  6104. %__tar -xvf %{SOURCE1651}
  6105. %__tar -xvf %{SOURCE1652}
  6106. %__tar -xvf %{SOURCE1653}
  6107. %__tar -xvf %{SOURCE1654}
  6108. %__tar -xvf %{SOURCE1655}
  6109. %__tar -xvf %{SOURCE1656}
  6110. %__tar -xvf %{SOURCE1657}
  6111. %__tar -xvf %{SOURCE1658}
  6112. %__tar -xvf %{SOURCE1659}
  6113. %__tar -xvf %{SOURCE1660}
  6114. %__tar -xvf %{SOURCE1661}
  6115. %__tar -xvf %{SOURCE1662}
  6116. %__tar -xvf %{SOURCE1663}
  6117. %__tar -xvf %{SOURCE1664}
  6118. %__tar -xvf %{SOURCE1665}
  6119. %__tar -xvf %{SOURCE1666}
  6120. %__tar -xvf %{SOURCE1667}
  6121. %__tar -xvf %{SOURCE1668}
  6122. %__tar -xvf %{SOURCE1669}
  6123. %__tar -xvf %{SOURCE1670}
  6124. %__tar -xvf %{SOURCE1671}
  6125. %__tar -xvf %{SOURCE1672}
  6126. %__tar -xvf %{SOURCE1673}
  6127. %__tar -xvf %{SOURCE1674}
  6128. %__tar -xvf %{SOURCE1675}
  6129. %__tar -xvf %{SOURCE1676}
  6130. %__tar -xvf %{SOURCE1677}
  6131. %__tar -xvf %{SOURCE1678}
  6132. %__tar -xvf %{SOURCE1679}
  6133. %__tar -xvf %{SOURCE1680}
  6134. %__tar -xvf %{SOURCE1681}
  6135. %__tar -xvf %{SOURCE1682}
  6136. %__tar -xvf %{SOURCE1683}
  6137. %__tar -xvf %{SOURCE1684}
  6138. %__tar -xvf %{SOURCE1685}
  6139. %__tar -xvf %{SOURCE1686}
  6140. %__tar -xvf %{SOURCE1687}
  6141. %__tar -xvf %{SOURCE1688}
  6142. %__tar -xvf %{SOURCE1689}
  6143. %__tar -xvf %{SOURCE1690}
  6144. %__tar -xvf %{SOURCE1691}
  6145. %__tar -xvf %{SOURCE1692}
  6146. %__tar -xvf %{SOURCE1693}
  6147. %__tar -xvf %{SOURCE1694}
  6148. %__tar -xvf %{SOURCE1695}
  6149. %__tar -xvf %{SOURCE1696}
  6150. %__tar -xvf %{SOURCE1697}
  6151. %__tar -xvf %{SOURCE1698}
  6152. %__tar -xvf %{SOURCE1699}
  6153. %__tar -xvf %{SOURCE1700}
  6154. %__tar -xvf %{SOURCE1701}
  6155. %__tar -xvf %{SOURCE1702}
  6156. %__tar -xvf %{SOURCE1703}
  6157. %__tar -xvf %{SOURCE1704}
  6158. %__tar -xvf %{SOURCE1705}
  6159. %__tar -xvf %{SOURCE1706}
  6160. %__tar -xvf %{SOURCE1707}
  6161. %__tar -xvf %{SOURCE1708}
  6162. %__tar -xvf %{SOURCE1709}
  6163. %__tar -xvf %{SOURCE1710}
  6164. %__tar -xvf %{SOURCE1711}
  6165. %__tar -xvf %{SOURCE1712}
  6166. %__tar -xvf %{SOURCE1713}
  6167. %__tar -xvf %{SOURCE1714}
  6168. %__tar -xvf %{SOURCE1715}
  6169. %__tar -xvf %{SOURCE1716}
  6170. %__tar -xvf %{SOURCE1717}
  6171. %__tar -xvf %{SOURCE1718}
  6172. %__tar -xvf %{SOURCE1719}
  6173. %__tar -xvf %{SOURCE1720}
  6174. %__tar -xvf %{SOURCE1721}
  6175. %__tar -xvf %{SOURCE1722}
  6176. %__tar -xvf %{SOURCE1723}
  6177. %__tar -xvf %{SOURCE1724}
  6178. %__tar -xvf %{SOURCE1725}
  6179. %__tar -xvf %{SOURCE1726}
  6180. %__tar -xvf %{SOURCE1727}
  6181. %__tar -xvf %{SOURCE1728}
  6182. %__tar -xvf %{SOURCE1729}
  6183. %__tar -xvf %{SOURCE1730}
  6184. %__tar -xvf %{SOURCE1731}
  6185. %__tar -xvf %{SOURCE1732}
  6186. %__tar -xvf %{SOURCE1733}
  6187. %__tar -xvf %{SOURCE1734}
  6188. %__tar -xvf %{SOURCE1735}
  6189. %__tar -xvf %{SOURCE1736}
  6190. %__tar -xvf %{SOURCE1737}
  6191. %__tar -xvf %{SOURCE1738}
  6192. %__tar -xvf %{SOURCE1739}
  6193. %__tar -xvf %{SOURCE1740}
  6194. %__tar -xvf %{SOURCE1741}
  6195. %__tar -xvf %{SOURCE1742}
  6196. %__tar -xvf %{SOURCE1743}
  6197. %__tar -xvf %{SOURCE1744}
  6198. %__tar -xvf %{SOURCE1745}
  6199. %__tar -xvf %{SOURCE1746}
  6200. %__tar -xvf %{SOURCE1747}
  6201. %__tar -xvf %{SOURCE1748}
  6202. %__tar -xvf %{SOURCE1749}
  6203. %__tar -xvf %{SOURCE1750}
  6204. %__tar -xvf %{SOURCE1751}
  6205. %__tar -xvf %{SOURCE1752}
  6206. %__tar -xvf %{SOURCE1753}
  6207. %__tar -xvf %{SOURCE1754}
  6208. %__tar -xvf %{SOURCE1755}
  6209. %__tar -xvf %{SOURCE1756}
  6210. %__tar -xvf %{SOURCE1757}
  6211. %__tar -xvf %{SOURCE1758}
  6212. %__tar -xvf %{SOURCE1759}
  6213. %__tar -xvf %{SOURCE1760}
  6214. %__tar -xvf %{SOURCE1761}
  6215. %__tar -xvf %{SOURCE1762}
  6216. %__tar -xvf %{SOURCE1763}
  6217. %__tar -xvf %{SOURCE1764}
  6218. %__tar -xvf %{SOURCE1765}
  6219. %__tar -xvf %{SOURCE1766}
  6220. %__tar -xvf %{SOURCE1767}
  6221. %__tar -xvf %{SOURCE1768}
  6222. %__tar -xvf %{SOURCE1769}
  6223. %__tar -xvf %{SOURCE1770}
  6224. %__tar -xvf %{SOURCE1771}
  6225. %__tar -xvf %{SOURCE1772}
  6226. %__tar -xvf %{SOURCE1773}
  6227. %__tar -xvf %{SOURCE1774}
  6228. %__tar -xvf %{SOURCE1775}
  6229. %__tar -xvf %{SOURCE1776}
  6230. %__tar -xvf %{SOURCE1777}
  6231. %__tar -xvf %{SOURCE1778}
  6232. %__tar -xvf %{SOURCE1779}
  6233. %__tar -xvf %{SOURCE1780}
  6234. %__tar -xvf %{SOURCE1781}
  6235. %__tar -xvf %{SOURCE1782}
  6236. %__tar -xvf %{SOURCE1783}
  6237. %__tar -xvf %{SOURCE1784}
  6238. %__tar -xvf %{SOURCE1785}
  6239. %__tar -xvf %{SOURCE1786}
  6240. %__tar -xvf %{SOURCE1787}
  6241. %__tar -xvf %{SOURCE1788}
  6242. %__tar -xvf %{SOURCE1789}
  6243. %__tar -xvf %{SOURCE1790}
  6244. %__tar -xvf %{SOURCE1791}
  6245. %__tar -xvf %{SOURCE1792}
  6246. %__tar -xvf %{SOURCE1793}
  6247. %__tar -xvf %{SOURCE1794}
  6248. %__tar -xvf %{SOURCE1795}
  6249. %__tar -xvf %{SOURCE1796}
  6250. %__tar -xvf %{SOURCE1797}
  6251. %__tar -xvf %{SOURCE1798}
  6252. %__tar -xvf %{SOURCE1799}
  6253. %__tar -xvf %{SOURCE1800}
  6254. %__tar -xvf %{SOURCE1801}
  6255. %__tar -xvf %{SOURCE1802}
  6256. %__tar -xvf %{SOURCE1803}
  6257. %__tar -xvf %{SOURCE1804}
  6258. %__tar -xvf %{SOURCE1805}
  6259. %__tar -xvf %{SOURCE1806}
  6260. %__tar -xvf %{SOURCE1807}
  6261. %__tar -xvf %{SOURCE1808}
  6262. %__tar -xvf %{SOURCE1809}
  6263. %__tar -xvf %{SOURCE1810}
  6264. %__tar -xvf %{SOURCE1811}
  6265. %__tar -xvf %{SOURCE1812}
  6266. %__tar -xvf %{SOURCE1813}
  6267. %__tar -xvf %{SOURCE1814}
  6268. %__tar -xvf %{SOURCE1815}
  6269. %__tar -xvf %{SOURCE1816}
  6270. %__tar -xvf %{SOURCE1817}
  6271. %__tar -xvf %{SOURCE1818}
  6272. %__tar -xvf %{SOURCE1819}
  6273. %__tar -xvf %{SOURCE1820}
  6274. %__tar -xvf %{SOURCE1821}
  6275. %__tar -xvf %{SOURCE1822}
  6276. %__tar -xvf %{SOURCE1823}
  6277. %__tar -xvf %{SOURCE1824}
  6278. %__tar -xvf %{SOURCE1825}
  6279. %__tar -xvf %{SOURCE1826}
  6280. %__tar -xvf %{SOURCE1827}
  6281. %__tar -xvf %{SOURCE1828}
  6282. %__tar -xvf %{SOURCE1829}
  6283. %__tar -xvf %{SOURCE1830}
  6284. %__tar -xvf %{SOURCE1831}
  6285. %__tar -xvf %{SOURCE1832}
  6286. %__tar -xvf %{SOURCE1833}
  6287. %__tar -xvf %{SOURCE1834}
  6288. %__tar -xvf %{SOURCE1835}
  6289. %__tar -xvf %{SOURCE1836}
  6290. %__tar -xvf %{SOURCE1837}
  6291. %__tar -xvf %{SOURCE1838}
  6292. %__tar -xvf %{SOURCE1839}
  6293. %__tar -xvf %{SOURCE1840}
  6294. %__tar -xvf %{SOURCE1841}
  6295. %__tar -xvf %{SOURCE1842}
  6296. %__tar -xvf %{SOURCE1843}
  6297. %__tar -xvf %{SOURCE1844}
  6298. %__tar -xvf %{SOURCE1845}
  6299. %__tar -xvf %{SOURCE1846}
  6300. %__tar -xvf %{SOURCE1847}
  6301. %__tar -xvf %{SOURCE1848}
  6302. %__tar -xvf %{SOURCE1849}
  6303. %__tar -xvf %{SOURCE1850}
  6304. %__tar -xvf %{SOURCE1851}
  6305. %__tar -xvf %{SOURCE1852}
  6306. %__tar -xvf %{SOURCE1853}
  6307. %__tar -xvf %{SOURCE1854}
  6308. %__tar -xvf %{SOURCE1855}
  6309. %__tar -xvf %{SOURCE1856}
  6310. %__tar -xvf %{SOURCE1857}
  6311. %__tar -xvf %{SOURCE1858}
  6312. %__tar -xvf %{SOURCE1859}
  6313. %__tar -xvf %{SOURCE1860}
  6314. %__tar -xvf %{SOURCE1861}
  6315. %__tar -xvf %{SOURCE1862}
  6316. %__tar -xvf %{SOURCE1863}
  6317. %__tar -xvf %{SOURCE1864}
  6318. %__tar -xvf %{SOURCE1865}
  6319. %__tar -xvf %{SOURCE1866}
  6320. %__tar -xvf %{SOURCE1867}
  6321. %__tar -xvf %{SOURCE1868}
  6322. %__tar -xvf %{SOURCE1869}
  6323. %__tar -xvf %{SOURCE1870}
  6324. %__tar -xvf %{SOURCE1871}
  6325. %__tar -xvf %{SOURCE1872}
  6326. %__tar -xvf %{SOURCE1873}
  6327. %__tar -xvf %{SOURCE1874}
  6328. %__tar -xvf %{SOURCE1875}
  6329. %__tar -xvf %{SOURCE1876}
  6330. %__tar -xvf %{SOURCE1877}
  6331. %__tar -xvf %{SOURCE1878}
  6332. %__tar -xvf %{SOURCE1879}
  6333. %__tar -xvf %{SOURCE1880}
  6334. %__tar -xvf %{SOURCE1881}
  6335. %__tar -xvf %{SOURCE1882}
  6336. %__tar -xvf %{SOURCE1883}
  6337. %__tar -xvf %{SOURCE1884}
  6338. %__tar -xvf %{SOURCE1885}
  6339. %__tar -xvf %{SOURCE1886}
  6340. %__tar -xvf %{SOURCE1887}
  6341. %__tar -xvf %{SOURCE1888}
  6342. %__tar -xvf %{SOURCE1889}
  6343. %__tar -xvf %{SOURCE1890}
  6344. %__tar -xvf %{SOURCE1891}
  6345. %__tar -xvf %{SOURCE1892}
  6346. %__tar -xvf %{SOURCE1893}
  6347. %__tar -xvf %{SOURCE1894}
  6348. %__tar -xvf %{SOURCE1895}
  6349. %__tar -xvf %{SOURCE1896}
  6350. %__tar -xvf %{SOURCE1897}
  6351. %__tar -xvf %{SOURCE1898}
  6352. %__tar -xvf %{SOURCE1899}
  6353. %__tar -xvf %{SOURCE1900}
  6354. %__tar -xvf %{SOURCE1901}
  6355. %__tar -xvf %{SOURCE1902}
  6356. %__tar -xvf %{SOURCE1903}
  6357. %__tar -xvf %{SOURCE1904}
  6358. %__tar -xvf %{SOURCE1905}
  6359. %__tar -xvf %{SOURCE1906}
  6360. %__tar -xvf %{SOURCE1907}
  6361. %__tar -xvf %{SOURCE1908}
  6362. %__tar -xvf %{SOURCE1909}
  6363. %__tar -xvf %{SOURCE1910}
  6364. %__tar -xvf %{SOURCE1911}
  6365. %__tar -xvf %{SOURCE1912}
  6366. %__tar -xvf %{SOURCE1913}
  6367. %__tar -xvf %{SOURCE1914}
  6368. %__tar -xvf %{SOURCE1915}
  6369. %__tar -xvf %{SOURCE1916}
  6370. %__tar -xvf %{SOURCE1917}
  6371. %__tar -xvf %{SOURCE1918}
  6372. %__tar -xvf %{SOURCE1919}
  6373. %__tar -xvf %{SOURCE1920}
  6374. %__tar -xvf %{SOURCE1921}
  6375. %__tar -xvf %{SOURCE1922}
  6376. %__tar -xvf %{SOURCE1923}
  6377. %__tar -xvf %{SOURCE1924}
  6378. %__tar -xvf %{SOURCE1925}
  6379. %__tar -xvf %{SOURCE1926}
  6380. %__tar -xvf %{SOURCE1927}
  6381. %__tar -xvf %{SOURCE1928}
  6382. %__tar -xvf %{SOURCE1929}
  6383. %__tar -xvf %{SOURCE1930}
  6384. %__tar -xvf %{SOURCE1931}
  6385. %__tar -xvf %{SOURCE1932}
  6386. %__tar -xvf %{SOURCE1933}
  6387. %__tar -xvf %{SOURCE1934}
  6388. %__tar -xvf %{SOURCE1935}
  6389. %__tar -xvf %{SOURCE1936}
  6390. %__tar -xvf %{SOURCE1937}
  6391. %__tar -xvf %{SOURCE1938}
  6392. %__tar -xvf %{SOURCE1939}
  6393. %__tar -xvf %{SOURCE1940}
  6394. %__tar -xvf %{SOURCE1941}
  6395. %__tar -xvf %{SOURCE1942}
  6396. %__tar -xvf %{SOURCE1943}
  6397. %__tar -xvf %{SOURCE1944}
  6398. %__tar -xvf %{SOURCE1945}
  6399. %__tar -xvf %{SOURCE1946}
  6400. %__tar -xvf %{SOURCE1947}
  6401. %__tar -xvf %{SOURCE1948}
  6402. %__tar -xvf %{SOURCE1949}
  6403. %__tar -xvf %{SOURCE1950}
  6404. %__tar -xvf %{SOURCE1951}
  6405. %__tar -xvf %{SOURCE1952}
  6406. %__tar -xvf %{SOURCE1953}
  6407. %__tar -xvf %{SOURCE1954}
  6408. %__tar -xvf %{SOURCE1955}
  6409. %__tar -xvf %{SOURCE1956}
  6410. %__tar -xvf %{SOURCE1957}
  6411. %__tar -xvf %{SOURCE1958}
  6412. %__tar -xvf %{SOURCE1959}
  6413. %__tar -xvf %{SOURCE1960}
  6414. %__tar -xvf %{SOURCE1961}
  6415. %__tar -xvf %{SOURCE1962}
  6416. %__tar -xvf %{SOURCE1963}
  6417. %__tar -xvf %{SOURCE1964}
  6418. %__tar -xvf %{SOURCE1965}
  6419. %__tar -xvf %{SOURCE1966}
  6420. %__tar -xvf %{SOURCE1967}
  6421. %__tar -xvf %{SOURCE1968}
  6422. %__tar -xvf %{SOURCE1969}
  6423. %__tar -xvf %{SOURCE1970}
  6424. %__tar -xvf %{SOURCE1971}
  6425. %__tar -xvf %{SOURCE1972}
  6426. %__tar -xvf %{SOURCE1973}
  6427. %__tar -xvf %{SOURCE1974}
  6428. %__tar -xvf %{SOURCE1975}
  6429. %__tar -xvf %{SOURCE1976}
  6430. %__tar -xvf %{SOURCE1977}
  6431. %__tar -xvf %{SOURCE1978}
  6432. %__tar -xvf %{SOURCE1979}
  6433. %__tar -xvf %{SOURCE1980}
  6434. %__tar -xvf %{SOURCE1981}
  6435. %__tar -xvf %{SOURCE1982}
  6436. %__tar -xvf %{SOURCE1983}
  6437. %__tar -xvf %{SOURCE1984}
  6438. %__tar -xvf %{SOURCE1985}
  6439. %__tar -xvf %{SOURCE1986}
  6440. %__tar -xvf %{SOURCE1987}
  6441. %__tar -xvf %{SOURCE1988}
  6442. %__tar -xvf %{SOURCE1989}
  6443. %__tar -xvf %{SOURCE1990}
  6444. %__tar -xvf %{SOURCE1991}
  6445. %__tar -xvf %{SOURCE1992}
  6446. %__tar -xvf %{SOURCE1993}
  6447. %__tar -xvf %{SOURCE1994}
  6448. %__tar -xvf %{SOURCE1995}
  6449. %__tar -xvf %{SOURCE1996}
  6450. %__tar -xvf %{SOURCE1997}
  6451. %__tar -xvf %{SOURCE1998}
  6452. %__tar -xvf %{SOURCE1999}
  6453. %__tar -xvf %{SOURCE2000}
  6454. %__tar -xvf %{SOURCE2001}
  6455. %__tar -xvf %{SOURCE2002}
  6456. %__tar -xvf %{SOURCE2003}
  6457. %__tar -xvf %{SOURCE2004}
  6458. %__tar -xvf %{SOURCE2005}
  6459. %__tar -xvf %{SOURCE2006}
  6460. %__tar -xvf %{SOURCE2007}
  6461. %__tar -xvf %{SOURCE2008}
  6462. %__tar -xvf %{SOURCE2009}
  6463. %__tar -xvf %{SOURCE2010}
  6464. %__tar -xvf %{SOURCE2011}
  6465. %__tar -xvf %{SOURCE2012}
  6466. %__tar -xvf %{SOURCE2013}
  6467. %__tar -xvf %{SOURCE2014}
  6468. %__tar -xvf %{SOURCE2015}
  6469. %__tar -xvf %{SOURCE2016}
  6470. %__tar -xvf %{SOURCE2017}
  6471. %__tar -xvf %{SOURCE2018}
  6472. %__tar -xvf %{SOURCE2019}
  6473. %__tar -xvf %{SOURCE2020}
  6474. %__tar -xvf %{SOURCE2021}
  6475. %__tar -xvf %{SOURCE2022}
  6476. %__tar -xvf %{SOURCE2023}
  6477. %__tar -xvf %{SOURCE2024}
  6478. %__tar -xvf %{SOURCE2025}
  6479. %__tar -xvf %{SOURCE2026}
  6480. %__tar -xvf %{SOURCE2027}
  6481. %__tar -xvf %{SOURCE2028}
  6482. %__tar -xvf %{SOURCE2029}
  6483. %__tar -xvf %{SOURCE2030}
  6484. %__tar -xvf %{SOURCE2031}
  6485. %__tar -xvf %{SOURCE2032}
  6486. %__tar -xvf %{SOURCE2033}
  6487. %__tar -xvf %{SOURCE2034}
  6488. %__tar -xvf %{SOURCE2035}
  6489. %__tar -xvf %{SOURCE2036}
  6490. %__tar -xvf %{SOURCE2037}
  6491. %__tar -xvf %{SOURCE2038}
  6492. %__tar -xvf %{SOURCE2039}
  6493. %__tar -xvf %{SOURCE2040}
  6494. %__tar -xvf %{SOURCE2041}
  6495. %__tar -xvf %{SOURCE2042}
  6496. %__tar -xvf %{SOURCE2043}
  6497. %__tar -xvf %{SOURCE2044}
  6498. %__tar -xvf %{SOURCE2045}
  6499. %__tar -xvf %{SOURCE2046}
  6500. %__tar -xvf %{SOURCE2047}
  6501. %__tar -xvf %{SOURCE2048}
  6502. %__tar -xvf %{SOURCE2049}
  6503. %__tar -xvf %{SOURCE2050}
  6504. %__tar -xvf %{SOURCE2051}
  6505. %__tar -xvf %{SOURCE2052}
  6506. %__tar -xvf %{SOURCE2053}
  6507. %__tar -xvf %{SOURCE2054}
  6508. %__tar -xvf %{SOURCE2055}
  6509. %__tar -xvf %{SOURCE2056}
  6510. %__tar -xvf %{SOURCE2057}
  6511. %__tar -xvf %{SOURCE2058}
  6512. %__tar -xvf %{SOURCE2059}
  6513. %__tar -xvf %{SOURCE2060}
  6514. %__tar -xvf %{SOURCE2061}
  6515. %__tar -xvf %{SOURCE2062}
  6516. %__tar -xvf %{SOURCE2063}
  6517. %__tar -xvf %{SOURCE2064}
  6518. %__tar -xvf %{SOURCE2065}
  6519. %__tar -xvf %{SOURCE2066}
  6520. %__tar -xvf %{SOURCE2067}
  6521. %__tar -xvf %{SOURCE2068}
  6522. %__tar -xvf %{SOURCE2069}
  6523. %__tar -xvf %{SOURCE2070}
  6524. %__tar -xvf %{SOURCE2071}
  6525. %__tar -xvf %{SOURCE2072}
  6526. %__tar -xvf %{SOURCE2073}
  6527. %__tar -xvf %{SOURCE2074}
  6528. %__tar -xvf %{SOURCE2075}
  6529. %__tar -xvf %{SOURCE2076}
  6530. %__tar -xvf %{SOURCE2077}
  6531. %__tar -xvf %{SOURCE2078}
  6532. %__tar -xvf %{SOURCE2079}
  6533. %__tar -xvf %{SOURCE2080}
  6534. %__tar -xvf %{SOURCE2081}
  6535. %__tar -xvf %{SOURCE2082}
  6536. %__tar -xvf %{SOURCE2083}
  6537. %__tar -xvf %{SOURCE2084}
  6538. %__tar -xvf %{SOURCE2085}
  6539. %__tar -xvf %{SOURCE2086}
  6540. %__tar -xvf %{SOURCE2087}
  6541. %__tar -xvf %{SOURCE2088}
  6542. %__tar -xvf %{SOURCE2089}
  6543. %__tar -xvf %{SOURCE2090}
  6544. %__tar -xvf %{SOURCE2091}
  6545. %__tar -xvf %{SOURCE2092}
  6546. %__tar -xvf %{SOURCE2093}
  6547. %__tar -xvf %{SOURCE2094}
  6548. %__tar -xvf %{SOURCE2095}
  6549. %__tar -xvf %{SOURCE2096}
  6550. %__tar -xvf %{SOURCE2097}
  6551. %__tar -xvf %{SOURCE2098}
  6552. %__tar -xvf %{SOURCE2099}
  6553. %__tar -xvf %{SOURCE2100}
  6554. %__tar -xvf %{SOURCE2101}
  6555. %__tar -xvf %{SOURCE2102}
  6556. %__tar -xvf %{SOURCE2103}
  6557. %__tar -xvf %{SOURCE2104}
  6558. %__tar -xvf %{SOURCE2105}
  6559. %__tar -xvf %{SOURCE2106}
  6560. %__tar -xvf %{SOURCE2107}
  6561. %__tar -xvf %{SOURCE2108}
  6562. %__tar -xvf %{SOURCE2109}
  6563. %__tar -xvf %{SOURCE2110}
  6564. %__tar -xvf %{SOURCE2111}
  6565. %__tar -xvf %{SOURCE2112}
  6566. %__tar -xvf %{SOURCE2113}
  6567. %__tar -xvf %{SOURCE2114}
  6568. %__tar -xvf %{SOURCE2115}
  6569. %__tar -xvf %{SOURCE2116}
  6570. %__tar -xvf %{SOURCE2117}
  6571. %__tar -xvf %{SOURCE2118}
  6572. %__tar -xvf %{SOURCE2119}
  6573. %__tar -xvf %{SOURCE2120}
  6574. %__tar -xvf %{SOURCE2121}
  6575. %__tar -xvf %{SOURCE2122}
  6576. %__tar -xvf %{SOURCE2123}
  6577. %__tar -xvf %{SOURCE2124}
  6578. %__tar -xvf %{SOURCE2125}
  6579. %__tar -xvf %{SOURCE2126}
  6580. %__tar -xvf %{SOURCE2127}
  6581. %__tar -xvf %{SOURCE2128}
  6582. %__tar -xvf %{SOURCE2129}
  6583. %__tar -xvf %{SOURCE2130}
  6584. %__tar -xvf %{SOURCE2131}
  6585. %__tar -xvf %{SOURCE2132}
  6586. %__tar -xvf %{SOURCE2133}
  6587. %__tar -xvf %{SOURCE2134}
  6588. %__tar -xvf %{SOURCE2135}
  6589. %__tar -xvf %{SOURCE2136}
  6590. %__tar -xvf %{SOURCE2137}
  6591. %__tar -xvf %{SOURCE2138}
  6592. %__tar -xvf %{SOURCE2139}
  6593. %__tar -xvf %{SOURCE2140}
  6594. %__tar -xvf %{SOURCE2141}
  6595. %__tar -xvf %{SOURCE2142}
  6596. %__tar -xvf %{SOURCE2143}
  6597. %__tar -xvf %{SOURCE2144}
  6598. %__tar -xvf %{SOURCE2145}
  6599. %__tar -xvf %{SOURCE2146}
  6600. %__tar -xvf %{SOURCE2147}
  6601. %__tar -xvf %{SOURCE2148}
  6602. %__tar -xvf %{SOURCE2149}
  6603. %__tar -xvf %{SOURCE2150}
  6604. %__tar -xvf %{SOURCE2151}
  6605. %__tar -xvf %{SOURCE2152}
  6606. %__tar -xvf %{SOURCE2153}
  6607. %__tar -xvf %{SOURCE2154}
  6608. %__tar -xvf %{SOURCE2155}
  6609. %__tar -xvf %{SOURCE2156}
  6610. %__tar -xvf %{SOURCE2157}
  6611. %__tar -xvf %{SOURCE2158}
  6612. %__tar -xvf %{SOURCE2159}
  6613. %__tar -xvf %{SOURCE2160}
  6614. %__tar -xvf %{SOURCE2161}
  6615. %__tar -xvf %{SOURCE2162}
  6616. %__tar -xvf %{SOURCE2163}
  6617. %__tar -xvf %{SOURCE2164}
  6618. %__tar -xvf %{SOURCE2165}
  6619. %__tar -xvf %{SOURCE2166}
  6620. %__tar -xvf %{SOURCE2167}
  6621. %__tar -xvf %{SOURCE2168}
  6622. %__tar -xvf %{SOURCE2169}
  6623. %__tar -xvf %{SOURCE2170}
  6624. %__tar -xvf %{SOURCE2171}
  6625. %__tar -xvf %{SOURCE2172}
  6626. %__tar -xvf %{SOURCE2173}
  6627. %__tar -xvf %{SOURCE2174}
  6628. %__tar -xvf %{SOURCE2175}
  6629. %__tar -xvf %{SOURCE2176}
  6630. %__tar -xvf %{SOURCE2177}
  6631. %__tar -xvf %{SOURCE2178}
  6632. %__tar -xvf %{SOURCE2179}
  6633. %__tar -xvf %{SOURCE2180}
  6634. %__tar -xvf %{SOURCE2181}
  6635. %__tar -xvf %{SOURCE2182}
  6636. %__tar -xvf %{SOURCE2183}
  6637. %__tar -xvf %{SOURCE2184}
  6638. %__tar -xvf %{SOURCE2185}
  6639. %__tar -xvf %{SOURCE2186}
  6640. %__tar -xvf %{SOURCE2187}
  6641. %__tar -xvf %{SOURCE2188}
  6642. %__tar -xvf %{SOURCE2189}
  6643. %__tar -xvf %{SOURCE2190}
  6644. %__tar -xvf %{SOURCE2191}
  6645. %__tar -xvf %{SOURCE2192}
  6646. %__tar -xvf %{SOURCE2193}
  6647. %__tar -xvf %{SOURCE2194}
  6648. %__tar -xvf %{SOURCE2195}
  6649. %__tar -xvf %{SOURCE2196}
  6650. %__tar -xvf %{SOURCE2197}
  6651. %__tar -xvf %{SOURCE2198}
  6652. %__tar -xvf %{SOURCE2199}
  6653. %__tar -xvf %{SOURCE2200}
  6654. %__tar -xvf %{SOURCE2201}
  6655. %__tar -xvf %{SOURCE2202}
  6656. %__tar -xvf %{SOURCE2203}
  6657. %__tar -xvf %{SOURCE2204}
  6658. %__tar -xvf %{SOURCE2205}
  6659. %__tar -xvf %{SOURCE2206}
  6660. %__tar -xvf %{SOURCE2207}
  6661. %__tar -xvf %{SOURCE2208}
  6662. %__tar -xvf %{SOURCE2209}
  6663. %__tar -xvf %{SOURCE2210}
  6664. %__tar -xvf %{SOURCE2211}
  6665. %__tar -xvf %{SOURCE2212}
  6666. %__tar -xvf %{SOURCE2213}
  6667. %__tar -xvf %{SOURCE2214}
  6668. %__tar -xvf %{SOURCE2215}
  6669. %__tar -xvf %{SOURCE2216}
  6670. %__tar -xvf %{SOURCE2217}
  6671. %__tar -xvf %{SOURCE2218}
  6672. %__tar -xvf %{SOURCE2219}
  6673. %__tar -xvf %{SOURCE2220}
  6674. %__tar -xvf %{SOURCE2221}
  6675. %__tar -xvf %{SOURCE2222}
  6676. %__tar -xvf %{SOURCE2223}
  6677. %__tar -xvf %{SOURCE2224}
  6678. %__tar -xvf %{SOURCE2225}
  6679. %__tar -xvf %{SOURCE2226}
  6680. %__tar -xvf %{SOURCE2227}
  6681. %__tar -xvf %{SOURCE2228}
  6682. %__tar -xvf %{SOURCE2229}
  6683. %__tar -xvf %{SOURCE2230}
  6684. %__tar -xvf %{SOURCE2231}
  6685. %__tar -xvf %{SOURCE2232}
  6686. %__tar -xvf %{SOURCE2233}
  6687. %__tar -xvf %{SOURCE2234}
  6688. %__tar -xvf %{SOURCE2235}
  6689. %__tar -xvf %{SOURCE2236}
  6690. %__tar -xvf %{SOURCE2237}
  6691. %__tar -xvf %{SOURCE2238}
  6692. %__tar -xvf %{SOURCE2239}
  6693. %__tar -xvf %{SOURCE2240}
  6694. %__tar -xvf %{SOURCE2241}
  6695. %__tar -xvf %{SOURCE2242}
  6696. %__tar -xvf %{SOURCE2243}
  6697. %__tar -xvf %{SOURCE2244}
  6698. %__tar -xvf %{SOURCE2245}
  6699. %__tar -xvf %{SOURCE2246}
  6700. %__tar -xvf %{SOURCE2247}
  6701. %__tar -xvf %{SOURCE2248}
  6702. %__tar -xvf %{SOURCE2249}
  6703. %__tar -xvf %{SOURCE2250}
  6704. %__tar -xvf %{SOURCE2251}
  6705. %__tar -xvf %{SOURCE2252}
  6706. %__tar -xvf %{SOURCE2253}
  6707. %__tar -xvf %{SOURCE2254}
  6708. %__tar -xvf %{SOURCE2255}
  6709. %__tar -xvf %{SOURCE2256}
  6710. %__tar -xvf %{SOURCE2257}
  6711. %__tar -xvf %{SOURCE2258}
  6712. %__tar -xvf %{SOURCE2259}
  6713. %__tar -xvf %{SOURCE2260}
  6714. %__tar -xvf %{SOURCE2261}
  6715. %__tar -xvf %{SOURCE2262}
  6716. %__tar -xvf %{SOURCE2263}
  6717. %__tar -xvf %{SOURCE2264}
  6718. %__tar -xvf %{SOURCE2265}
  6719. %__tar -xvf %{SOURCE2266}
  6720. %__tar -xvf %{SOURCE2267}
  6721. %__tar -xvf %{SOURCE2268}
  6722. %__tar -xvf %{SOURCE2269}
  6723. %__tar -xvf %{SOURCE2270}
  6724. %__tar -xvf %{SOURCE2271}
  6725. %__tar -xvf %{SOURCE2272}
  6726. %__tar -xvf %{SOURCE2273}
  6727. %__tar -xvf %{SOURCE2274}
  6728. %__tar -xvf %{SOURCE2275}
  6729. %__tar -xvf %{SOURCE2276}
  6730. %__tar -xvf %{SOURCE2277}
  6731. %__tar -xvf %{SOURCE2278}
  6732. %__tar -xvf %{SOURCE2279}
  6733. %__tar -xvf %{SOURCE2280}
  6734. %__tar -xvf %{SOURCE2281}
  6735. %__tar -xvf %{SOURCE2282}
  6736. %__tar -xvf %{SOURCE2283}
  6737. %__tar -xvf %{SOURCE2284}
  6738. %__tar -xvf %{SOURCE2285}
  6739. %__tar -xvf %{SOURCE2286}
  6740. %__tar -xvf %{SOURCE2287}
  6741. %__tar -xvf %{SOURCE2288}
  6742. %__tar -xvf %{SOURCE2289}
  6743. %__tar -xvf %{SOURCE2290}
  6744. %__tar -xvf %{SOURCE2291}
  6745. %__tar -xvf %{SOURCE2292}
  6746. %__tar -xvf %{SOURCE2293}
  6747. %__tar -xvf %{SOURCE2294}
  6748. %__tar -xvf %{SOURCE2295}
  6749. %__tar -xvf %{SOURCE2296}
  6750. %__tar -xvf %{SOURCE2297}
  6751. %__tar -xvf %{SOURCE2298}
  6752. %__tar -xvf %{SOURCE2299}
  6753. %__tar -xvf %{SOURCE2300}
  6754. %__tar -xvf %{SOURCE2301}
  6755. %__tar -xvf %{SOURCE2302}
  6756. %__tar -xvf %{SOURCE2303}
  6757. %__tar -xvf %{SOURCE2304}
  6758. %__tar -xvf %{SOURCE2305}
  6759. %__tar -xvf %{SOURCE2306}
  6760. %__tar -xvf %{SOURCE2307}
  6761. %__tar -xvf %{SOURCE2308}
  6762. %__tar -xvf %{SOURCE2309}
  6763. %__tar -xvf %{SOURCE2310}
  6764. %__tar -xvf %{SOURCE2311}
  6765. %__tar -xvf %{SOURCE2312}
  6766. %__tar -xvf %{SOURCE2313}
  6767. %__tar -xvf %{SOURCE2314}
  6768. %__tar -xvf %{SOURCE2315}
  6769. %__tar -xvf %{SOURCE2316}
  6770. %__tar -xvf %{SOURCE2317}
  6771. %__tar -xvf %{SOURCE2318}
  6772. %__tar -xvf %{SOURCE2319}
  6773. %__tar -xvf %{SOURCE2320}
  6774. %__tar -xvf %{SOURCE2321}
  6775. %__tar -xvf %{SOURCE2322}
  6776. %__tar -xvf %{SOURCE2323}
  6777. %__tar -xvf %{SOURCE2324}
  6778. %__tar -xvf %{SOURCE2325}
  6779. %__tar -xvf %{SOURCE2326}
  6780. %__tar -xvf %{SOURCE2327}
  6781. %__tar -xvf %{SOURCE2328}
  6782. %__tar -xvf %{SOURCE2329}
  6783. %__tar -xvf %{SOURCE2330}
  6784. %__tar -xvf %{SOURCE2331}
  6785. %__tar -xvf %{SOURCE2332}
  6786. %__tar -xvf %{SOURCE2333}
  6787. %__tar -xvf %{SOURCE2334}
  6788. %__tar -xvf %{SOURCE2335}
  6789. %__tar -xvf %{SOURCE2336}
  6790. %__tar -xvf %{SOURCE2337}
  6791. %__tar -xvf %{SOURCE2338}
  6792. %__tar -xvf %{SOURCE2339}
  6793. %__tar -xvf %{SOURCE2340}
  6794. %__tar -xvf %{SOURCE2341}
  6795. %__tar -xvf %{SOURCE2342}
  6796. %__tar -xvf %{SOURCE2343}
  6797. %__tar -xvf %{SOURCE2344}
  6798. %__tar -xvf %{SOURCE2345}
  6799. %__tar -xvf %{SOURCE2346}
  6800. %__tar -xvf %{SOURCE2347}
  6801. %__tar -xvf %{SOURCE2348}
  6802. %__tar -xvf %{SOURCE2349}
  6803. %__tar -xvf %{SOURCE2350}
  6804. %__tar -xvf %{SOURCE2351}
  6805. %__tar -xvf %{SOURCE2352}
  6806. %__tar -xvf %{SOURCE2353}
  6807. %__tar -xvf %{SOURCE2354}
  6808. %__tar -xvf %{SOURCE2355}
  6809. %__tar -xvf %{SOURCE2356}
  6810. %__tar -xvf %{SOURCE2357}
  6811. %__tar -xvf %{SOURCE2358}
  6812. %__tar -xvf %{SOURCE2359}
  6813. %__tar -xvf %{SOURCE2360}
  6814. %__tar -xvf %{SOURCE2361}
  6815. %__tar -xvf %{SOURCE2362}
  6816. %__tar -xvf %{SOURCE2363}
  6817. %__tar -xvf %{SOURCE2364}
  6818. %__tar -xvf %{SOURCE2365}
  6819. %__tar -xvf %{SOURCE2366}
  6820. %__tar -xvf %{SOURCE2367}
  6821. %__tar -xvf %{SOURCE2368}
  6822. %__tar -xvf %{SOURCE2369}
  6823. %__tar -xvf %{SOURCE2370}
  6824. %__tar -xvf %{SOURCE2371}
  6825. %__tar -xvf %{SOURCE2372}
  6826. %__tar -xvf %{SOURCE2373}
  6827. %__tar -xvf %{SOURCE2374}
  6828. %__tar -xvf %{SOURCE2375}
  6829. %__tar -xvf %{SOURCE2376}
  6830. %__tar -xvf %{SOURCE2377}
  6831. %__tar -xvf %{SOURCE2378}
  6832. %__tar -xvf %{SOURCE2379}
  6833. %__tar -xvf %{SOURCE2380}
  6834. %__tar -xvf %{SOURCE2381}
  6835. %__tar -xvf %{SOURCE2382}
  6836. %__tar -xvf %{SOURCE2383}
  6837. %__tar -xvf %{SOURCE2384}
  6838. %__tar -xvf %{SOURCE2385}
  6839. %__tar -xvf %{SOURCE2386}
  6840. %__tar -xvf %{SOURCE2387}
  6841. %__tar -xvf %{SOURCE2388}
  6842. %__tar -xvf %{SOURCE2389}
  6843. %__tar -xvf %{SOURCE2390}
  6844. %__tar -xvf %{SOURCE2391}
  6845. %__tar -xvf %{SOURCE2392}
  6846. %__tar -xvf %{SOURCE2393}
  6847. %__tar -xvf %{SOURCE2394}
  6848. %__tar -xvf %{SOURCE2395}
  6849. %__tar -xvf %{SOURCE2396}
  6850. %__tar -xvf %{SOURCE2397}
  6851. %__tar -xvf %{SOURCE2398}
  6852. %__tar -xvf %{SOURCE2399}
  6853. %__tar -xvf %{SOURCE2400}
  6854. %__tar -xvf %{SOURCE2401}
  6855. %__tar -xvf %{SOURCE2402}
  6856. %__tar -xvf %{SOURCE2403}
  6857. %__tar -xvf %{SOURCE2404}
  6858. %__tar -xvf %{SOURCE2405}
  6859. %__tar -xvf %{SOURCE2406}
  6860. %__tar -xvf %{SOURCE2407}
  6861. %__tar -xvf %{SOURCE2408}
  6862. %__tar -xvf %{SOURCE2409}
  6863. %__tar -xvf %{SOURCE2410}
  6864. %__tar -xvf %{SOURCE2411}
  6865. %__tar -xvf %{SOURCE2412}
  6866. %__tar -xvf %{SOURCE2413}
  6867. %__tar -xvf %{SOURCE2414}
  6868. %__tar -xvf %{SOURCE2415}
  6869. %__tar -xvf %{SOURCE2416}
  6870. %__tar -xvf %{SOURCE2417}
  6871. %__tar -xvf %{SOURCE2418}
  6872. %__tar -xvf %{SOURCE2419}
  6873. %__tar -xvf %{SOURCE2420}
  6874. %__tar -xvf %{SOURCE2421}
  6875. %__tar -xvf %{SOURCE2422}
  6876. %__tar -xvf %{SOURCE2423}
  6877. %__tar -xvf %{SOURCE2424}
  6878. %__tar -xvf %{SOURCE2425}
  6879. %__tar -xvf %{SOURCE2426}
  6880. %__tar -xvf %{SOURCE2427}
  6881. %__tar -xvf %{SOURCE2428}
  6882. %__tar -xvf %{SOURCE2429}
  6883. %__tar -xvf %{SOURCE2430}
  6884. %__tar -xvf %{SOURCE2431}
  6885. %__tar -xvf %{SOURCE2432}
  6886. %__tar -xvf %{SOURCE2433}
  6887. %__tar -xvf %{SOURCE2434}
  6888. %__tar -xvf %{SOURCE2435}
  6889. %__tar -xvf %{SOURCE2436}
  6890. %__tar -xvf %{SOURCE2437}
  6891. %__tar -xvf %{SOURCE2438}
  6892. %__tar -xvf %{SOURCE2439}
  6893. %__tar -xvf %{SOURCE2440}
  6894. %__tar -xvf %{SOURCE2441}
  6895. %__tar -xvf %{SOURCE2442}
  6896. %__tar -xvf %{SOURCE2443}
  6897. %__tar -xvf %{SOURCE2444}
  6898. %__tar -xvf %{SOURCE2445}
  6899. %__tar -xvf %{SOURCE2446}
  6900. %__tar -xvf %{SOURCE2447}
  6901. %__tar -xvf %{SOURCE2448}
  6902. %__tar -xvf %{SOURCE2449}
  6903. %__tar -xvf %{SOURCE2450}
  6904. %__tar -xvf %{SOURCE2451}
  6905. %__tar -xvf %{SOURCE2452}
  6906. %__tar -xvf %{SOURCE2453}
  6907. %__tar -xvf %{SOURCE2454}
  6908. %__tar -xvf %{SOURCE2455}
  6909. %__tar -xvf %{SOURCE2456}
  6910. %__tar -xvf %{SOURCE2457}
  6911. %__tar -xvf %{SOURCE2458}
  6912. %__tar -xvf %{SOURCE2459}
  6913. %__tar -xvf %{SOURCE2460}
  6914. %__tar -xvf %{SOURCE2461}
  6915. %__tar -xvf %{SOURCE2462}
  6916. %__tar -xvf %{SOURCE2463}
  6917. %__tar -xvf %{SOURCE2464}
  6918. %__tar -xvf %{SOURCE2465}
  6919. %__tar -xvf %{SOURCE2466}
  6920. %__tar -xvf %{SOURCE2467}
  6921. %__tar -xvf %{SOURCE2468}
  6922. %__tar -xvf %{SOURCE2469}
  6923. %__tar -xvf %{SOURCE2470}
  6924. %__tar -xvf %{SOURCE2471}
  6925. %__tar -xvf %{SOURCE2472}
  6926. %__tar -xvf %{SOURCE2473}
  6927. %__tar -xvf %{SOURCE2474}
  6928. %__tar -xvf %{SOURCE2475}
  6929. %__tar -xvf %{SOURCE2476}
  6930. %build
  6931. %install
  6932. [ -n "%{buildroot}" -a "%{buildroot}" != / ] && %__rm -rf %{buildroot}
  6933. %__mkdir_p %{buildroot}%{_datadir}
  6934. ## move texmf-dist to /usr/share/texmf-dist
  6935. [ -d texmf-dist ] && %__mv texmf-dist %{buildroot}%{_tl_texmfdist}/ ||:
  6936. ## move texmf to /usr/share/texmf
  6937. [ -d texmf ] && %__mv texmf %{buildroot}%{_tl_texmfmain}/ ||:
  6938. ## move tlpkg to /usr/share/tlpkg
  6939. [ -d tlpkg ] && %__mv tlpkg %{buildroot}%{_datadir}/ ||:
  6940. ## move all non-arch binaries to /usr/bin
  6941. [ -d bin ] && %__mv bin %{buildroot}%{_prefix}/ ||:
  6942. ## move others into /usr/share/texmf-dist
  6943. %__mkdir_p %{buildroot}%{_tl_texmfdist}
  6944. %__cp -a * %{buildroot}%{_tl_texmfdist}/ ||:
  6945. %__rm -rf * ||:
  6946. ## remove duplicated files between texlive and texlive-collection-*
  6947. ## NOTE: We provides texmf.cnf and updmap{-hdr,}.cfg from texlive
  6948. ## remove unpacked files
  6949. x=(
  6950. scripts/epstopdf/epstopdf.pl
  6951. scripts/texlive/fmtutil.sh
  6952. scripts/texlive/fmtutil-sys.sh
  6953. scripts/texlive/texconfig-dialog.sh
  6954. scripts/texlive/texconfig-sys.sh
  6955. scripts/texlive/texconfig.sh
  6956. scripts/texlive/updmap.pl
  6957. scripts/thumbpdf/thumbpdf.pl
  6958. scripts/glossaries/makeglossaries
  6959. scripts/pst2pdf/pst2pdf.pl
  6960. scripts/bundledoc/bundledoc
  6961. scripts/bundledoc/arlatex
  6962. scripts/dviasm/dviasm.py
  6963. scripts/latexdiff/latexdiff-vc.pl
  6964. scripts/latexdiff/latexdiff.pl
  6965. scripts/latexdiff/latexrevise.pl
  6966. scripts/pythontex/depythontex.py
  6967. scripts/pythontex/pythontex.py
  6968. scripts/texfot/texfot.pl
  6969. scripts/luaotfload/luaotfload-tool.lua
  6970. texconfig/tcfmgr
  6971. web2c/texmf.cnf
  6972. web2c/updmap-hdr.cfg
  6973. web2c/updmap.cfg
  6974. install-tl
  6975. )
  6976. if [ -d %{buildroot}%{_tl_texmfdist} ]; then
  6977. pushd %{buildroot}%{_tl_texmfdist}
  6978. %__rm -f ${x[@]} ||:
  6979. popd
  6980. fi
  6981. ## Files list
  6982. find %{buildroot} -type f -or -type l | \
  6983. %__sed -e "s|%{buildroot}||g" > filelist.full
  6984. find %{buildroot}%{_tl_texmfdist} -type d | \
  6985. %__sed -e "s|^%{buildroot}|%dir |" \
  6986. -e "s|$|/|" >> filelist.full
  6987. ## subpackages
  6988. grep "/texmf-dist/doc/" filelist.full > filelist.doc
  6989. cat filelist.doc filelist.full | sort | uniq -u > filelist.tmp
  6990. %__mv -f filelist.tmp filelist.full
  6991. %clean
  6992. %__rm -rf %{buildroot}
  6993. %post
  6994. %_tl_touch_run texhash
  6995. %_tl_touch_run mtxrun
  6996. [ -f %{_tl_texmfdist}/web2c/updmap.cfg ] || exit 0
  6997. %_tl_enable_map Map epiolmec.map
  6998. %_tl_enable_map MixedMap esint.map
  6999. %_tl_enable_map MixedMap manfnt.map
  7000. exit 0
  7001. %postun
  7002. if [ "$1" = 0 ]; then
  7003. %_tl_touch_run texhash
  7004. [ -f %{_tl_texmfdist}/web2c/updmap.cfg ] || exit 0
  7005. %_tl_disable_map epiolmec.map
  7006. %_tl_disable_map esint.map
  7007. %_tl_disable_map manfnt.map
  7008. fi
  7009. exit 0
  7010. %posttrans
  7011. %{_tl_exec_texhash}
  7012. %{_tl_exec_mtxrun}
  7013. %{_tl_exec_updmap}
  7014. %{_tl_exec_fmtutil}
  7015. exit 0
  7016. %files -f filelist.full
  7017. %defattr(-,root,root,-)
  7018. %files -f filelist.doc doc
  7019. %defattr(-,root,root,-)
  7020. %changelog
  7021. * Tue Oct 28 2014 Munehiro Yamamoto <munepi@vinelinux.org> 2014-3
  7022. - synced tlnet to 20141028
  7023. * Sun Jul 6 2014 Munehiro Yamamoto <munepi@vinelinux.org> 2014-2
  7024. - synced tlnet to 20140706
  7025. * Sun May 25 2014 Munehiro Yamamoto <munepi@vinelinux.org> 2014-1
  7026. - synced tlnet to 20140524