LaTeX 学习过程
yuuki Lv5

LaTeX 的 hello word

1
2
3
4
5
\documentclass{article}
% 这里是导言区
\begin{document}
Hello, world!
\end{document}
  • 以反斜杠 \ 开头,以第一个空格或非字母 的字符结束的一串文字成为控制序列(或称命令/标记)
  • % 是注释

宏包

通过/usepackage{} 可以调用宏包,下面是用 UTF-8 编码, XeLaTeX 编译的代码

1
2
3
4
\documentclass[UTF8]{ctexart}
\begin{document}
你好,world!
\end{document}
 评论