0.TEX Old Memories
When Professor Knuth wrote TAOCP (the Art of computer programming), he found that booksellers had made the math in his book so ugly that he decided to develop a typesetting language that was well suited to math, so he had Tex, and quickly popular and attracted a lot of science workers to use Tex as a scientific paper writing. (Daniel is Daniel)
PS:TAOCP introduction of the website, mainly about the algorithm. Http://www-cs-staff.stanford.edu/~knuth/taocp.html
1.latex/ctex
Tex is a low-level typesetting language, the use of Tex typesetting requires too much memory commands, very complex, will be some common functions defined (macro, macro), typesetting is more convenient. Latex is a kind of Tex that contains a lot of macros. Currently, the mainstream operating system has a ready-made Tex kit to use, Unix like Tetex,windows's Miktex/fptex; Tex Suite is Tex typesetting engine plus latex macro, font (METAFONT), drawing program (MetaPost) and other composition of the typesetting system. Ctex, Chinese Tex, is a Tex suite system that supports Chinese typesetting, with integrated MiKTeX, WinEdt text editor and PostScript processing software Ghostscript and GSview.
2.CTEX Installation and use
1) Installation
To http://www.ctex.org/CTeXDownload Download the Ctex kit, EXE file can run the installation directly.
2) Use
Ctex use WinEdt for editing, first open WinEdt, enter the following:
\documentclass{article}\usepackage{color}\usepackage{cjk}\begin{document}\textcolor[rgb]{1.00,0.00,0.00}{this Is Colored}this is my first \latex\ typesetting example. \dots \\begin{cjk*}{gbk}{song} Chinese input 、、、 \dots \ \end{cjk*}\end{document}
:
Then click the red arrow to export the PDF file. Results such as:
3) Description: The latex syntax format is as follows:
\documentclass{article}
Preamble area (not available)
\begin{document}
Text area
\end{document}
Where \documentclass{article} indicates that the document uses the article category. Use Chinese in preamble to use usepackage{cjk*} to use CJK package and use it where you need to enter Chinese
\begin{cjk*}{gbk}{song} Chinese input 、、、 \dots \ \ \end{cjk*}
For Chinese input, the above means using the song, GBK the Chinese code, in addition to other fonts such as: Kai (in italics), Li (script), HEI (boldface), you (young circle) and so on.
\ \: Line break
\dots:3 a little bit.
Scientific paper Writing tool Tex/latex/ctex