Rozmiar: 8938 bajtów


TEX



#redirect TeX

TeX



[[Image:TeX lion.png|thumb|The TeX mascot, by Duane Bibby]] TEX, written as TeX in plain text, is a typesetting system Computer programming by Donald Knuth. It is popular in academia, especially in the mathematics, physics and computer science community. It has largely displaced Unix troff, the other favored formatter, in many Unix installations. TeX is generally considered to be the best way to typeset complex mathematical formulas, but, especially in the form of LaTeX and other template packages, is now also being used for many other typesetting tasks. == The name and its pronunciation(s) == A homage to Caltech, where Knuth received his doctorate, the name TeX is intended to be pronounced "tekh", where "kh" represents the sound at the end of Scottish English ''loch'' or the name of the German composer ''Johann Sebastian Bach'' (in International Phonetic Alphabet ). The X is meant to represent the Greek alphabet letter χ (chi (Greek letter)). TeX is the abbreviation of τέχνη (technē), Greek for "art" and "craft", which is also the source word of ''technical''. English speakers often pronounce it "tek", like the first syllable of ''technology''. The name is properly typeset with the "E" below the baseline; systems that do not support subscript layout use the approximation "TeX". Fans like to proliferate names from the word "TeX" — such as TeXnician (user of TeX software), TeXhacker (TeX programmer), TeXmaster (competent TeX programmer), TeXhax, and TeXnique. == History == Knuth began to write TeX because he had become annoyed at the declining quality of the typesetting in volumes I-III of his monumental ''The Art of Computer Programming''. In a manifestation of the typical hacker urge to solve the problem at hand once and for all, he began to design his own typesetting language. He thought he would finish it on his sabbatical in 1978, but the language was not frozen until 1989, more than ten years later. Guy Steele happened to be at Stanford during the summer of 1978, when Knuth was developing his first version of TeX. When Steele returned to Massachusetts Institute of Technology that fall, he rewrote TeX's I/O to run under Incompatible Timesharing System. The first version of TeX was written in the SAIL programming language to run on a PDP-10 under Stanford University WAITS operating system. For later versions of TeX, Knuth invented the concept of literate programming, a way of producing compilable source code and high quality cross-linked documentation (typeset in TeX of course) from the same original file. The language used is called WEB and produces programs in Pascal programming language. TeX has an idiosyncratic software version. Since version 3, updates have been indicated by adding an extra digit at the end of the decimal, so that the version number asymptote approaches pi. The current version is 3.141592. This is a reflection of the fact that TeX is now very stable, and only minor updates are anticipated. Knuth has stated that the "absolutely final change (to be made after my death)" will be to change the version number to π, at which point all remaining bugs will become features. == The typesetting system == TeX commands commonly start with a backslash and are grouped with curly braces. However, almost all of TeX's syntactic properties can be changed on the fly which makes TeX input hard to parse by anything but TeX itself. TeX is a macro and token based language: many commands, including most user-defined ones, are expanded on the fly until only unexpandable tokens remain which get executed. Expansion itself is practically side-effect free. Tail recursion of macros takes no memory, and if-then-else constructs are available. This makes TeX a Turing-complete language even at expansion level. The system can roughly be divided in four levels: in the first characters are read from file and assigned a category code. Combinations of a backslash (really: any character of category zero) followed by letters (characters of category 11) or a single other character are replaced by a control sequence token. In this sense this stage is like lexical analysis, although it does not form numbers from digits. In the next stage, expandable control sequences (such as conditionals or defined macros) are replaced by their replacement text. The input for the third stage is then a stream of characters, including ones with special meaning, and unexpandable control sequences, typically assignments and visual commands. Here characters get assembled into a paragraph. TeX's paragraph breaking algorithm works by optimizing breakpoints over the whole paragraph. After the paragraph is broken into lines, the vertical list of lines and other material is broken into pages. The TeX system has precise knowledge of the sizes of all characters and symbols, and using this information, it computes the optimal arrangement of letters per line and lines per page. It then produces a DVI (TeX) file (for "device independent") containing the final locations of all characters. This dvi file can be printed directly given an appropriate printer driver, or it can be converted to other formats. Nowadays, PDFTeX is often used which bypasses DVI generation altogether. Most functionality is provided by format files (predumped memory images of TeX after large macro collections have been loaded). Common formats are Knuth's original basic plain TeX, LaTeX (ubiquitous in the technical sciences), and ConTeXt (which is used primarily for Desktop Publishing). The ultimate reference works for TeX are the first two volumes of Knuth's Computers and Typesetting, ''The TeXbook'' and ''TeX: The Program'' (which includes the complete documented source code for TeX). TeX is usually distributed together with Metafont, a companion program also developed by Knuth which allows algorithmic description of fonts. The organisation of the directories in a TeX / Metafont installation is standardized in a tree called ''texmf''. == License == The license allows free distribution and modification, but demands that any changed versions must not be called TEX, TeX, or anything confusingly similar. The American Mathematical Society has registered a trademark for TEX. A test suite called the TRIP test has been made to help testing whether an implementation is really a TEX. == Quality == TeX is written in WEB, a mixture of documentation written in TeX and a quite restricted Pascal subset. For example, TeX does all of its dynamic allocation itself from fixed-size arrays. As a result, TeX has been ported to almost all operating systems (usually by using the web2c converter). Knuth offers knuth reward check to people who find and report a computer bug in it. The award per bug started at $2.56 and doubled every year until it was frozen at its current value of $327.68. This has not made Knuth poor, however, as there have been very few bugs and in any case a cheque proving that the owner found a bug in TeX is usually framed instead of cashed. == Computer-science aspects of TeX == The TeX software incorporates several interesting algorithms, and has led to a number of theses of Knuth's students. For instance, a hyphenation algorithm (work by Frank Liang) is used that assigns priorities to breakpoints in letter groups. A list of hyphenation patterns can be generated automatically from a corpus of hyphenated words. The line breaking algorithm is an example of dynamic programming. The problem of breaking a paragraph of n words into lines has a naive complexity of 2n, but with dynamic programming a globally optimal layout can be derived in time proportional to the number of words and the number of words per line. A thesis by Michael Plass shows how the page breaking problem can be NP-complete because of the added complication of placing figures. The companion program Metafont for character generation uses Bezier curves in a fairly standard way, but Knuth devotes lots of attention to the rasterizing problem on bitmapped displays. Another thesis, by John Hobby, further explores this problem of digitizing "brush trajectories". This term derives from the fact that Metafont describes characters as having been drawn by abstract brushes. == Derived works == Several document processing systems are based on TeX, notably: * LaTeX (Leslie Lamport TeX), which incorporates document styles for books, letters, slides, etc., and adds support for referencing and automatic numbering of sections and equations, * ConTeXt, written mostly by Hans Hagen at [http://www.pragma-ade.com Pragma] is a professional document designing tool based on TeX. It's much younger than LaTeX and therefore maybe less popular than its older brother, but much more powerful. * AMS-TeX, produced by the American Mathematical Society, this has a lot of more user-friendly commands, which can be altered by journals to fit with the house style. Most of the features of AMS-TeX can be used in LaTeX by using the AMS "packages". This is then referred to as AMS-LaTeX. The main AMS-TeX manual is entitled ''The Joy of TeX''. * jadeTeX which uses TeX as a backend for printing from James Clark (XML expert)'s DSSSL Engine, * Texinfo, the GNU documentation processing system. * XeTeX is a new TeX engine that supports Unicode and the advanced Mac OS X font technologies. Numerous extensions and companion programs for TeX exist, among them BibTeX for bibliographies (distributed with LaTeX), PDFTeX, which bypasses dvi and produces output in Adobe Systems' Portable Document Format, and Omega (TeX), which allows TeX to use the Unicode character set. All TeX extensions are available for free from CTAN, the Comprehensive TeX Archive Network. == Compatible tools == On Unix-compatible systems (including Mac OS X), TeX is distributed in the form of ''teTeX''. On Microsoft Windows, there is the ''MiKTeX'' distribution and the ''fpTeX'' distribution. The TeXmacs text editor is a WYSIWYG scientific text editor that is intended to be compatible with TeX. It uses Knuth's fonts, and can generate TeX output. LyX is a similar tool. == TeX and MediaWiki == As of 2003, the MediaWiki wiki software (as used on Wikipedia) implements Wikipedia:TeX markup, using <math>...</math> tags enclosing blocks of TeX. This capability is implemented via Texvc which is basically a script that pipes the markup through TeX, then dvips to produce a PostScript file which Ghostscript renders into a PNG image. Due to the nature of the web environment, this is done in an efficient (cached) and security-conscious way – allowing third parties to pass unsanitised text through the standard TeX engine is a bad idea if you value your files. The example fragments of TeX below are rendered using Texvc, and simple ones such as a \over b can be used to generate a \over b, although it is recommended that one write the HTML-rendered ''a''/''b'' instead. == Examples == A simple plain TeX example - Create a text file ''myfile.tex'' with the following content: hello \bye Then open a command line interpreter and type tex myfile.tex TeX then creates a file ''myfile.dvi'' Use a viewer to look at the file. MikTeX for example contains a viewer called Yap (computer program): yap myfile.dvi The viewer shows ''hello'' on a page. ''\bye'' is a TeX command which marks the end of the file and is not shown in the final output. The dvi file can either be printed directly from the viewer or converted to a more common format such as PostScript using the dvips program. Alternatively portable document format-files may be created directly, using pdfTeX: pdftex myfile.tex pdfTeX was originally created because converting generated PostScript into PDF resulted in poor font display, though printing performance was fine. This was because TeX natively uses bitmap fonts, which are only designed to display well at one particular size, whereas PostScript typically uses scalable Type 1 fonts. It is now possible to make dvips output scalable fonts with a bit of tweaking (newer versions of Ghostscript support it), but direct conversion to PDF has other benefits: it is a one-step, not two-step process, and pdfTeX provides facilities such as bookmarks and hyperlinks not found in PostScript. === Mathematical examples === To see TeX further in action, look at its formatting of mathematical formulas. For example, to write the well-known quadratic equation, try entering The quadratic formula is ${-b\pm\sqrt{b^2-4ac} \over {2a}}$ \bye Use TeX as above, and you should get something that looks like :The quadratic formula is {-b\pm\sqrt{b^2-4ac} \over {2a}} Notice how the formula is printed in a way a person would write by hand, or typeset the equation. In a document, entering ''mathematics mode'' is done by starting with a $, then entering a formula in TeX semantics and closing again with another $. Display mathematics, or mathematics presented centered on a new line is done by using $$. For example, the above with the quadratic formula in display math: The quadratic formula is $${-b\pm\sqrt{b^2-4ac} \over {2a}}$$ \bye renders as :The quadratic formula is
{-b\pm\sqrt{b^2-4ac} \over {2a}}
=== LaTeX examples === LaTeX is a collection of macros written in TeX. There are many predefined templates (with predefined styles) one can use. It is much more structured than TeX, providing a set of macros and utilities for indexing, tables, lists and so forth. For example: \documentclass[a4paper]{book} \begin{document} \section{ ... a title } \subsection{ ... a subtitle} %% The text goes here \end{document} To render the book as a PostScript file, use latex myfile.tex dvips myfile.dvi Alternatively, one way to render the book as a PDF file is pdflatex myfile.tex ==Application software for TeX== * Winshell * LyX * Kile * TeXnicCenter ==References== ==See also== *Metafont *MetaPost *List of document markup languages *Comparison of document markup languages *[http://www.csit.fsu.edu/~mimi/tex/tex-refcard-letter.pdf Plain TeX Quick Reference (PDF)] ==External links== * m:Help:Formula * [http://www.tug.org/ The TeX users group] * The UK TeX Users' Group [http://www.tex.ac.uk/cgi-bin/texfaq2html?introduction=yes FAQ] * [http://www.artofproblemsolving.com/LaTeX/AoPS_L_About.php Getting started with LaTex] at Art of Problem Solving * [http://www.york.ac.uk/depts/maths/tex/texnotes.ps Simon Eveson, ''An Introduction to Mathematical Document Production Using AmSLaTeX'']
a PostScript file * [http://www.esm.psu.edu/mac-tex/ Mac OS X TeX/LaTeX Web Site] * [http://sciencesoft.at/index.jsp?link=latex&lang=en Online LaTeX] for converting online TeX to a PNG graphic * ConTeXt: [http://contextgarden.net The ConTeXt wiki] and [http://www.pragma-ade.com Homepage at Pragma] ===Software=== * [http://www.ctan.org/ Comprehensive TeX Archive Network]: Repository of the TeX source and hundreds of add-ons and style files. * [http://omega.enstb.org/index.html Omega] (16 bit version of TeX; includes ''lambda'' version of LaTeX) * [http://www.toolscenter.org TeXnicCenter] (a feature rich integrated development environment (IDE) for developing LaTeX-documents on Microsoft Windows (Windows 9x/ME, NT/2000/XP) freely available under GPL.) * [http://www.texmacs.org/ GNU TeXmacs Scientific Editor] * [http://www.chikrii.com Chikrii Softlab] (Word2Tex and Tex2Word) * The [http://www.tug.org/texlive/ TeXLive] distribution is said to be an easy start for beginners. It includes a multiplatform DVD which contains basically all of CTAN. For Windows users it includes fpTeX (see below). * [http://www.uoregon.edu/~koch/texshop/texshop.html TeXShop] - a free TeX editor for Mac OS X (with syntax coloring and Cocoa spellchecking) * [http://www.miktex.org/ MiKTeX] – MiKTeX (pronounced mick-tech) is an up-to-date implementation of TeX and related programs for Windows (all current variants) on x86 systems. * [http://www.fptex.org fpTeX] – fpTeX is an up-to-date port of tetex for Windows. ===Books=== * Donald E. Knuth, ''The TeXbook'' (Computers and Typesetting Volume A), Reading, Massachusetts: Addison-Wesley, 1984. ISBN 0201134489. The [http://www.ctan.org/tex-archive/systems/knuth/tex/texbook.tex source code of the book in TeX] is available online on CTAN. It is provided only as an example and its use to prepare a book like The TeXbook is not allowed. * [http://www.eijkhout.net/tbt/ Victor Eijkhout, ''TeX by Topic'']: Freely (''as in beer'') downloadable programmer's reference * [http://tug.org/ftp/tex/impatient/ ''TeX for the Impatient''], a more tutorial book, now licensed under GFDL. * [http://makingtexwork.sourceforge.net/mtw/ Norman Walsh, ''Making TeX Work'']: Free online book * [http://texikon.artiverse.net/ Stefan Schwarz and Rudolf Potucek, ''TeXikon'']: (German) online reference work documenting over 1400 TeX and LaTeX commands. This website derives from an out-of-print book published by Addison-Wesley in 1996 as ISBN 3893196900. Free software Macro programming languages TeX Typesetting vi:TeX

TeX



#redirect Meta:Help:Formula

TeX



TeX (usually written TeX in plain text) is a typesetting system writing by Donald Knuth, which is popular in academia, especially in the mathematics, physics and computer science community. It has largely displaced Unix troff, the other favored formatter, in many Unix installations. Typesetting software Typesetting programming languages Markup languages

TeX



The pronunciation help is wrong. please cf. http://www.ling.hf.ntnu.no/ipa/full/ipachart_cons_pulm_fbmp3.html TeX derives from Greek techn and that is NOT pronounced with an IPA [x] or ['chi'] but with the fortis palatal fricative - IPA ["c with a diacritical ' at its bottom"]. So TeX is not pronounced like 'loch' or GER 'Bach' but like GER 'mich' or GER 'Technik'. What do people think of adding a picture that illustrates the "spelling" of TeX, similar to the one at the beginning of the LaTeX article? –User:Matthew Low 09:56, 13 Jun 2004 (UTC) :I like the lion better :) Pity the thumbnailer makes it so faint... anyone know how to manipulate the original to fix that? User:Lupin 10:43, 13 Jun 2004 (UTC) ::You could simply ask the copyright holder of the image (User:Oneiros). It would have been nice if I'd been asked before the inclusion of the image here anyway. :-( -- User:Oneiros 13:57, 2005 Apr 6 (UTC) :Knuth writes in the TeXbook: "It's the `ch' sound in Scottish words like ''loch'' or German words like ''ach''; it's a Spanish `j' and a Russian `kh'." I understand this as a clear description of [x], not []. Perhaps Knuth belongs to the 99% majority of people who never heard about palatalization in Greek. -- User:EJ 13:50, 24 Jan 2005 (UTC) ::Update: I just checked [http://www.cogsci.indiana.edu/farg/harry/lan/grphdetl.htm The Details of Modern Greek Phonetics and Phonology]. Although it discusses Greek palatalization in depth, it nowhere suggests that consonants are palatalized ''after'' a front vowel, or when separated from the following front vowel by another consonant. Indeed, examples of velars in such a position show them unpalatalized: έχω [`εxo], γεγονός [ʝεγon`os], λίγο [ʎ`iγo], γυναίκα [ʝin`εka], προσεκτικά [prosεktik`a], κλείνω [kʎ`ino]. Thus, AFAICS, there is ''not'' a single reason why TeX should be pronounced with []. Can someone who is both native Greek and a trained phonetician confirm that τεχνη is pronounced [tεxɲi]? -- User:EJ 15:34, 24 Jan 2005 (UTC) :::Surely the question is not how it might be pronounced in Modern Greek (Ancient Greek would in any case have been different), but how it's pronounced in English, on which Knuth is surely something of an authority. By the way I've converted the spelling guide to IPA, which is the Wikipedia standard, as well as being less ugly to look at adn probably less confusing. User:Ross Burgess 19:56, 26 Feb 2005 (UTC) ::::I agree. The point was that even if someone disagrees with this viewpoint (such as, apparently, the anonymous first poster), it makes no sense to use an ich-laut. ::::BTW, I reverted the change you did in the sentence "The name is properly typeset ...", it was wrong. TeX is properly typeset either with a lowered capital "E" (preferred), or normal lowercase "e", but not with lowered lowercase "e". -- User:EJ 13:34, 1 Mar 2005 (UTC) ::Just to be clear here, are we talking about the Voiceless uvular fricative or the Voiceless velar fricative? User:213.112.81.180 15:56, 15 May 2005 (UTC) :::Velar. The question was whether it is velar or palatal. User:EJ 09:05, 17 May 2005 (UTC) :::: But German ach-laut certainly can be uvular. Is that the only example in Knuth's list that can be [χ] instead of [x]? User:213.112.81.40 14:04, 17 May 2005 (UTC) ::::: Hmm, I see. Russian [x] is definitely not velar. As for Spanish and Scottish (i.e., any of the at least 3 different languages or language varieties which could have been meant by this adjective), I don't know the languages myself, but all descriptions of their phonetics I've seen agree on [x], the uvular fricative [χ] not being even mentioned. ::::: The discussion starts to get funny, I think it is time to use some common sense. There's no indication whatsoever that Knuth is a trained phonetician, and that he is aware of the differences between the various fricatives located near velum. In any case, the description he gives in TeXbook is not intended as an exact phonetical definition, but to give general (mostly North American) public a clue that the name is not to be pronounced [tɛk]. Inferring anything more from the description is of dubious value. -- User:EJ 13:18, 18 May 2005 (UTC) :::::: So I guess the conclusion is that you can use either one, and Knuth didn't make the distinction. User:213.112.81.22 18:07, 18 May 2005 (UTC) ::::::: You can of course use whatever you want, as usual. It's just that the article should indicate some reasonable default pronunciation. -- User:EJ 10:21, 19 May 2005 (UTC) ---- Please avoid using the TeX logo when you cannot print it properly as in HTML. If you want to have the logo, upload a bitmap. – User:Bronger 12:18, 18 Jul 2004 (UTC) : Lovely. But it's not a logo, it's the properly formatted form of its name (''comme'' "iTunes", not "ITunes" or "Itunes" or something else). Reinstated. : User:Jdforrester User_talk:Jdforrester 14:34, 18 Jul 2004 (UTC) ::Vertical displacement is not part of orthography. Moreover it looks ugly in many browser configurations and inserts an enlarged line skip. All of this is unnecessary. Finally, in his book "Digital Typography" Knuth himself insists on a thorough positioning of the logo letters according to the current typeface. This is obviously not at all possible in HTML. – User:Bronger 08:54, 19 Jul 2004 (UTC) ::Moreover, the current form in the article is really weird: The last letter seems to have been typed as a Greek letter, but the first two haven't. Anyway, if no real reason against it is given, I'll switch back to the plain version in the article. – User:Bronger 23:56, 20 Jul 2004 (UTC) ---- I am not too convinced about the section TeX#TeX examples. Do we really want to write this section as a tutorial, with the "hello" code, the details of commands to type to compile the source, etc ? I prefer the way the MetaPost article does it: provide one relatively complex source code, along with the result it produces when compiled. Opinions ? User:Schutz 01:04, 22 Jul 2004 (UTC) :I think that's a good idea. – User:Bronger 17:31, 22 Jul 2004 (UTC) :Seconded. <disclaimer> I wrote MetaPost. 8-) </disclaimer> Maybe two similar short documents, one plain TeX, one LaTeX with the sample output from one or both of them. There are quite a few short example documents around (e.g. Lamport's sample.tex or others from a TeX distribution or off the web) that could be used for inspiration -- preferably giving a single small page (e.g. A5 paper). Not every feature of TeX/LaTeX needs to be included -- just enough to demonstrate the principles and maybe the differences between plain & La. User:AndrewKepert 08:23, 7 Apr 2005 (UTC) :I have had a first go at a LaTeX version. It is A4, but 12pt. See User:AndrewKepert/TeX sample User:AndrewKepert 10:04, 7 Apr 2005 (UTC) == Licence == To 83.135.160.19: TeX is not in public domain, it is copyrighted by Knuth. Here is the licence notice: % This program is copyright (C) 1982 by D. E. Knuth; all rights are reserved. % Copying of this file is authorized only if (1) you are D. E. Knuth, or if % (2) you make absolutely no changes to your copy. (The WEB system provides % for alterations via an auxiliary file; the master file should stay intact.) % See Appendix H of the WEB manual for hints on how to install this program. % And see Appendix A of the TRIP manual for details about how to validate it. % TeX is a trademark of the American Mathematical Society. % METAFONT is a trademark of Addison-Wesley Publishing Company. User:EJ 10:02, 20 May 2005 (UTC)

Tex



#REDIRECT TeX


See other meanings of words starting from letter:

T

TA | TB | TC | TD | TE | TF | TG | TH | TI | TJ | TK | TL | | TM | TN | TO | TP | TR | TS | TU | TW | TX | TY | TZ |

Words begining with TeX:

TEX
TeX
TeX
TeX
TeX
Tex
Tex-Mex
Tex-mex
Tex-Mex_and_Tejano
Tex-Mex_and_Tejano
Tex-Mex_and_Tejano_music
Tex-Mex_cuisine
Tex-Mex_cuisine
Tex-refcard-letter.pdf
Tex1337
Tex1337
Texaco
Texaco_Cup
Texaco_Inc.
Texaco_Star_Theater
Texaco_Star_Theatre
Texada_Island
Texan
Texana_Lewis
TexanCOTM_article
Texanna,_OK
Texanna,_Oklahoma
TexAns
TexAns
Texans
Texans_for_a_Republican_Majority
Texans_for_Public_Transportation
Texans_for_Public_Transportation
Texans_for_True_Mobility
Texans_for_True_Mobility
Texans_for_Truth
Texans_for_Truth
Texans_for_truth
Texans_for_Truth/archive1
Texan_Bush
Texan_Collaboration_Notice
Texan_Collaboration_of_the_Month
Texan_Collaboration_of_the_Month
Texan_Collaboration_of_the_Week
Texarkana
Texarkana,_AR
Texarkana,_Arkansas
Texarkana,_Arkansas
Texarkana,_Texas
Texarkana,_Texas
Texarkana,_TX
Texarkana_(AR)
Texarkana_and_Fort_Smith_Railway
Texas
Texas
Texas
Texas
Texas
Texas
Texas
Texas,_Our_Texas
Texas,_Queensland
Texas,_Queensland
Texas,_United_States
Texas,_WI
Texas,_Wisconsin
Texas-sized
Texas-stub
Texas:_The_New_Generation
TexasAndroid
TexasCapitolExterior.jpeg
TexasCapitolInterior.jpeg
Texaschildrens
TexasDawg
TexasDex
TexasDex
TexasLonghorn.jpeg
TexasLonghorn.jpeg
Texasmusician
Texastame
Texastame
Texastwister
Texastwister
TexasU_Corporation
Texaswebscout
Texas_(band)
Texas_(disambiguation)
Texas_(nautical)
Texas_(soap_opera)
Texas_(TV_series)
Texas_42
Texas_7
Texas_A&M
Texas_a&m
Texas_A&M_Colleges
Texas_A&M_Colleges
Texas_A&M_College_of_Agriculture_and_Life_Sciences
Texas_A&M_College_of_Architecture
Texas_A&M_College_of_Education
Texas_A&M_College_of_Geosciences
Texas_A&M_College_of_Liberal_Arts
Texas_A&M_College_of_Science
Texas_A&M_College_of_Veterinary_Medicine
Texas_A&M_Corps_of_Cadets
Texas_A&M_Facilities
Texas_A&M_International_University
Texas_A&M_University
Texas_A&M_University
Texas_A&M_University
Texas_A&M_University-Commerce
Texas_A&M_University-Commerce
Texas_A&M_University-Corpus_Christi
Texas_A&M_University-Kingsville
Texas_A&M_University-Riverside
Texas_A&M_University-Texarkana
Texas_A&M_University_-_Corpus_Christi
Texas_A&M_University_-_Kingsville
Texas_A&M_University_at_College_Station
Texas_A&M_University_at_Galveston
Texas_A&M_University_at_Qatar
Texas_A&M_University_College_of_Medicine
Texas_A&M_University_Corps_of_Cadets
Texas_A&M_University_Corps_of_Cadets
Texas_A&M_University_System
Texas_A&M_University_System
Texas_A&M_University_System
Texas_a&m_university_system
Texas_a&m_university_system
Texas_A&M_University_System_Health_Science_Center
Texas_AandM_University
Texas_Academy_of_Mathematics_and_Science
Texas_AEPi
Texas_Aggie
Texas_aggies
Texas_Agricultural_and_Mechanical_University
Texas_Agricultural_Experiment_Station
Texas_Air
Texas_Air_National_Guard
Texas_Air_National_Guard_controversy
Texas_Air_National_Guard_controversy
Texas_Annexation
Texas_Archives_War
Texas_Archive_War
Texas_Ash
Texas_Association_of_Private_and_Parochial_Schools
Texas_A_&_M_University
Texas_blues
Texas_blues
Texas_buddhism
Texas_Camel_Experiment
Texas_capitol
Texas_Cavalry_Service_Medal
Texas_Centennial_Exposition
Texas_Chainsaw_Massacre
Texas_chainsaw_massacre
Texas_Chaparrals
Texas_Children's_Hospital
Texas_childrens_hospital
Texas_Christian
Texas_Christian_University
Texas_Christian_University
Texas_City
Texas_City,_Texas
Texas_City_Disaster
Texas_City_Disaster
Texas_City_disaster
Texas_Colorado_River
Texas_Commerce_Bank
Texas_Commerce_Bank
Texas_Commerce_Tower
Texas_Congressional_Districts
Texas_Constitution
Texas_constitution
Texas_Constitution_of_1876
Texas_Cooperative_Extension
Texas_counties
Texas_Country_Music_Hall_of_Fame
Texas_Country_Reporter
Texas_County
Texas_County,_Missouri
Texas_County,_Missouri
Texas_County,_Missouri
Texas_County,_MO
Texas_County,_OK
Texas_County,_Oklahoma
Texas_County,_Oklahoma
Texas_County,_Oklahoma
Texas_culture
Texas_Declaration_of_Independence
Texas_Declaration_of_Independence
Texas_Department_of_Public_Safety
Texas_Dolly
Texas_Eagle
Texas_Engineering_and_Manufacturing_Company
Texas_Engineering_Experiment_Station
Texas_Engineering_Extension_Service
Texas_Faggot
Texas_Faggott
Texas_farm_to_market_road
Texas_Fight
Texas_Fight
Texas_Five
Texas_flag
Texas_Flood
Texas_Flood
Texas_Folklife_Festival
Texas_Forest_Service
Texas_Funeral_(Band)
Texas_Futile_Care_Law
Texas_geography
Texas_German
Texas_Governor
Texas_Governor_Preston_Smith
Texas_gubernatorial_election,_2006
Texas_Guinan
Texas_Guinan
Texas_hardcore
Texas_Highland_Lakes
Texas_Hill_Country
Texas_History
Texas_History
Texas_history
Texas_history
Texas_Hold'em
Texas_hold'em
Texas_Holdem
Texas_holdem
Texas_holdem2
Texas_Hold_'Em
Texas_Hold_'em
Texas_hold_'em
Texas_hold_'em
Texas_hold_'em_hands
Texas_hold_'em_hands
Texas_hold_'em_hands
Texas_hold_em
Texas_horned_lizard
Texas_House_Bill_588
Texas_House_of_Representatives
Texas_Instruments
Texas_Instruments
Texas_Instruments,_Incorporated
Texas_Instruments_Graphics_Architecture
Texas_Instruments_Inc.
Texas_Instruments_Incorporated
Texas_Instruments_SN76489
Texas_Instruments_TI-30
Texas_Instruments_TI-99/4
Texas_Instruments_TI-99/4A
Texas_Instruments_TI-99/4A
Texas_Instruments_TI99/4A
Texas_Instruments_TMS9900
Texas_Instruments_TMS9918
Texas_International
Texas_International_Airlines
Texas_International_Law_Journal
Texas_Is_The_Reason
Texas_is_the_Reason
Texas_is_the_reason
Texas_John_Slaughter
Texas_landmarks
Texas_law
Texas_Leafcutter_Ant
Texas_League
Texas_League
Texas_League
Texas_League
Texas_leaguer
Texas_Legislature
Texas_Legislature
Texas_Legislature
Texas_legislature
Texas_libraries
Texas_lieutenant_governor
Texas_live_oak
Texas_locations_by_per_capita_income
Texas_Longhorn
Texas_Longhorn
Texas_longhorn
Texas_longhorn
Texas_Longhorns
Texas_Longhorn_Breeders_Association_of_America
Texas_Longhorn_Trails
Texas_Loop_360
Texas_Lutheran_University
Texas_maps
Texas_media
Texas_Media_Watch
Texas_Media_Watch
Texas_Medical_Algorithm_Project
Texas_Medical_Center
Texas_Medication_Algorithm_Project
Texas_Medication_Algorithm_Project
Texas_Medicine_Algorithm_Project
Texas_Monthly
Texas_Motor_Speedway
Texas_mountain_laurel
Texas_music
Texas_music
Texas_naval_ships
Texas_Neurofibromatosis_Foundation
Texas_newspapers
Texas_Octuplets
Texas_Oil_Company
Texas_Our_Texas
Texas_Pacific
Texas_Pacific_Group
Texas_Pacific_Group
Texas_Panhandle
Texas_Panhandle
Texas_Pete
Texas_Pinyon
Texas_Playboys
Texas_politicians
Texas_politics
Texas_politics
Texas_public_education
Texas_railroads
Texas_ranch_to_market_road
Texas_Ranger
Texas_Rangers
Texas_Rangers
Texas_Rangers
Texas_Rangers_(baseball)
Texas_Rangers_(baseball)
Texas_Rangers_(Law_Enforcement)
Texas_Rangers_(law_enforcement)
Texas_Rangers_(MLB)
Texas_Rangers_Division
Texas_Rangers_field_personnel
Texas_Rangers_Hall_of_Fame
Texas_Rangers_managers
Texas_Rangers_players
Texas_Ranger_Division
Texas_Ranger_Division
Texas_red_wolf
Texas_Regulars
Texas_Revolution
Texas_Revolution
Texas_rivers
Texas_Road
Texas_road
Texas_Root_Rot
Texas_Root_Rot
Texas_root_rot
Texas_root_rot
Texas_Rose_Festival
Texas_Schoolbook_Depository
Texas_School_Book_Depository
Texas_Senate
Texas_Seven
Texas_sharpshooter_fallacy
Texas_sharpshooter_fallacy
Texas_Southern_University
Texas_Southern_University
Texas_southern_university
Texas_Southmost_College
Texas_sports
Texas_springs
Texas_Stadium
Texas_Star_Party
Texas_State_Capitol
Texas_state_Capitol
Texas_State_Constitution
Texas_state_constitution
Texas_State_Fair
Texas_state_highways
Texas_State_Highway_121
Texas_State_Highway_30
Texas_State_Highway_310
Texas_State_Highway_35
Texas_State_Highway_360
Texas_State_Highway_40
Texas_State_Highway_47
Texas_State_Highway_6
Texas_State_Highway_6_Business
Texas_State_Highway_75
Texas_State_Highway_75
Texas_State_Highway_Loop_1
Texas_State_Highway_Loop_360
Texas_State_Highway_OSR
Texas_State_Legislature
Texas_state_Legislature
Texas_state_legislature
Texas_state_parks
Texas_State_Senate
Texas_State_Senators
Texas_State_Technical_College
Texas_State_University
Texas_State_University
Texas_state_university
Texas_State_University-San_Marcos
Texas_State_University-San_Marcos
Texas_State_University_-_San_Marcos
Texas_State_University_San_Marcos
Texas_State_University_System
Texas_State_University_System
Texas_stereotypes
Texas_stub
Texas_stubs
Texas_stubs
Texas_Supreme_Court
Texas_Supreme_Court_justices
Texas_Syndicate
Texas_Syndicate
Texas_Tall_Tower_Elmendorf
Texas_tea
Texas_Tech
Texas_Tech_University
Texas_Tech_University
Texas_Ten
Texas_Ten
Texas_Terror
Texas_Theatre
Texas_toast
Texas_toast
Texas_Tortoise
Texas_Tower
Texas_Towers
Texas_Towers
Texas_Township,_MI
Texas_Township,_Michigan
Texas_Township,_PA
Texas_Township,_Pennsylvania
Texas_Transportation_Institute
Texas_Travesty
Texas_Troubadour
Texas_tuberose
Texas_Tycoons
Texas_University
Texas_Utilities
Texas_v._Johnson
Texas_v._Johnson
Texas_v._White
Texas_v._White
Texas_Veterinary_Medical_Diagnostic_Laboratory
Texas_v_White
Texas_War_of_Independence
Texas_Water_Safari
Texas_Wesleyan_University
Texas_Western_College
Texas_Wildcatters
Texas_Woman's_University
Texas_World_Speedway
Texas_world_speedway
Texas_writers
TexCare
Texcare
Texcatlipoca
Texcoco
Texcoco_de_Mora
Texel
Texel_(graphics)
TexGuinan.jpeg
Texhnolyze
Texhoma
Texhoma,_OK
Texhoma,_Oklahoma
Texhoma,_Texas
Texhoma,_TX
Texian
Texico
Texico,_New_Mexico
Texico,_New_Mexico
Texico,_NM
Texinfo
Texline
Texline,_Texas
Texline,_TX
TeXmacs
Texmacs
Texmf
Texnician
Texnnawlins
Texola
Texola,_OK
Texola,_Oklahoma
Texola,_Oklahoma
Texoma
TexomaTales
TexomaTales.com
TeXShop
Text
Text
Text-based
Text-based_web_browsers
Text-formatting
Text-oriented_programming_languages
Text-proofing
Text-proofing
Text-to-speech
Text-to-speech_engine
Texta
Textbook
Textbook
Textbooks
Textbox
Textboxsize
TextDrive
TextDrive
Textdrive
TextEdit
TextEdit_(API)
Textfiles.com
Textfiles.com
Textgestaltung
Textgestaltung
Textile
Textile
Textiles
Textiles
Textile_(language)
Textile_art
Textile_art
Textile_artist
Textile_arts
Textile_arts
Textile_companies_of_Hong_Kong
Textile_industry
Textile_Institute
Textile_manufacture_during_the_Industrial_Revolution
Textile_manufacturing_terminology
Textile_manufacturing_terminology
Textile_valley_of_India
Textile_workers_Strike_(1934)
Textile_workers_strike_(1934)
Textile_workers_strike_(1934)
Textile_Workers_Union_of_America
Texting
TextLicenseFreeUse
TextLicenseFreeUse
TextLicenseMinorFreeUse
Textmatches
Textmode_demos
Textome
Textome
Textonym
TextOut
TextOut
TextOut_(Windows_API)
TextOut_(Windows_API)
TextPad
TextPad
Textpad
Textpattern
Textphone
Textron
Textron_Inc.
Textron_Incorporated
Textron_Systems
Texts
Textualis
Textualis
Textual_criticism
Textual_criticism
Textual_evidence_for_Jesus
Textual_evidence_for_Jesus
Texture
Texture
Texture
Texture/Archive-2004_April
Texture/Archive-2004_August
Texture/Archive-2004_February
Texture/Archive-2004_July
Texture/Archive-2004_June
Texture/Archive-2004_March
Texture/Archive-2004_May
Texture/Archive-2004_November
Texture/Archive-2005_January
Texture/home
Texture/o
Texture/Optim's_useful_links
Texture/Sandbox
Texture/sandbox
Texture/Tab2
Texture/Tab2B
Texture/Tab2C
Texture/Tab2D
Texture/Tab2E
Texture/Tab3
Texture/Tab4
Texture/Tab5
Texture/Tab5
Texture/vandal_articles
Textured_soy_protein
Textured_vegetable_protein
Textured_vegetable_protein
Textures
Texture_(crystalline)
Texture_(music)
Texture_(music)
Texture_artist
Texture_filtering
Texture_mapped
Texture_mapping
Texture_mapping
Texture_Maps:_The_Lost_Pieces_Vol._3
Texture_Memory
Textus_Receptus
Textus_Receptus
Textus_receptus
Textus_Roffensis
Textutils
TextWrangler
Textwrangler
Text_adventure
Text_adventure
Text_adventures
Text_adventure_game
Text_adventure_games
Text_Art
Text_based_adventure_game
Text_book
Text_box
Text_bubble
Text_codecs
Text_corpus
Text_crawl
Text_criticism
Text_criticsm
Text_editor
Text_editor
Text_editors
Text_editors
Text_Editor_and_Corrector
Text_Editor_and_Corrector
Text_editor_features
Text_editor_support
Text_editor_support
Text_editor_support
Text_encoding
Text_encoding
Text_encodings
Text_encodings
Text_Encoding_Initiative
Text_figure
Text_figures
Text_figures
Text_file
Text_files
Text_folding
Text_formatter
Text_formatting
Text_formatting_system
Text_generation
Text_justification
Text_justification_system
Text_justifier
Text_linguistics
Text_link
Text_link
Text_message
Text_messages
Text_messaging
Text_mining
Text_mode
Text_mode_demo
Text_mode_demos
Text_mode_demos
Text_normalization
Text_Ode_for_the_birthday_of_Queen_Anne
Text_of_2004_Osama_bin_Laden_videotape
Text_of_Casey_at_the_bat
Text_of_the_Attribution-ShareAlike_License
Text_of_the_creation_account_in_Genesis
Text_of_the_GFDL
Text_of_the_GNU_Free_Documentation_Licence
Text_of_the_GNU_Free_Documentation_License
Text_of_the_GNU_Free_Documentation_License
Text_of_the_GNU_Free_Documentation_License
Text_of_the_GNU_Free_Documentation_License
Text_of_the_GNU_Free_Documentation_License/Contents
Text_of_the_GNU_Free_Documentation_License/Resolved_issues
Text_of_the_GNU_Free_Documentation_License/Wikify?
Text_parser
Text_Processing_Utility
Text_retrieval
Text_Retrieval_Conference
Text_REtrieval_Conference_(TREC)
Text_segment
Text_sim
Text_string
Text_Summaries
Text_telephone
Text_Text_Revolution
Text_to_speech
Text_to_translate_for_Non-English_Wikipedias
Text_Types
Text_User_Interface
Text_user_interface
Texvc
Texvc
Tex_Albert
Tex_Avery
Tex_Brashear
Tex_Corp
TeX_font_metric
Tex_G._Hall
Tex_Guinan
Tex_Hughson
TeX_Macro
TeX_markup
TeX_markup
TeX_markup
Tex_Mex
Tex_Murphy
Tex_Pistol
TeX_Primitive
TeX_requests
Tex_Rickard
Tex_Ritter
Tex_Sample
Tex_Schramm
Tex_Schramm
TeX_support
Tex_Thornton
Tex_Watson
Tex_Williams
Tex_zippers


These materials are based on Wikipedia and licensed under the GNU FDL



YouTube.com videos better site than Turbo Tax 2007
encyklopedia online