texlive-collection-latexextra-vl.spec 230 KB

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