Original article address: latex newcomer tutorial, 30 minutes from completely unfamiliar to basic entry
Notes:
1. xetex is used in this article, but I always fail (it appears! Undefined control sequence.), so it is OK to use latex.
2. Insert the image part: you do not need to download the EPS format converter from the Internet. ctex comes with a converter. For detailed steps, see: how to convert the image to. EPS in latex formatting; then insert the Code as follows:
\ Documentclass {Article} \ usepackage {graphicx} % use graphicx package \ begin {document} \ includegraphics {figure. EPS} % to insert an image, insert \ end {document} according to the original size of the image}
3. Insert a table: That | c | indicates the number of columns.
4. Support for Chinese characters. According to the method in the text, I did not implement it. Therefore, use the following code to get it right:
\ Documentclass {Article} \ usepackage {cjkutf8} \ begin {document} \ begin {CJK} {utf8} {gbsn} This is a CJK example using UTF-8 encoding and gbsn fonts. \ End {CJK} \ end {document}
Note: As I got started, I don't know much about it. I usually write more and Google more. I believe I will be familiar with it soon!
Get started with latex in minutes [go]