本文主要是介绍TexLive,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
测试中文
\documentclass[UTF8]{ctexart}
\begin{document}Here is 中文!\end{document}
测试画图
\documentclass[11pt]{article}
\usepackage{tikz}
\begin{document}
Hello, Texlive!% this example is copied from web.First:\tikz\draw(0,0)--(1,1);Second: \tikz{\draw(0,0)--(1,1);\draw(0,1)--(1,0);}Third:\begin{tikzpicture}\draw(0,0)--(1,1);\draw(0,1)--(1,0);\end{tikzpicture}Fourth:\tikzpicture
\draw(0,0)--(1,1);
\draw(0,1)--(1,0);
\endtikzpicture\begin{tikzpicture}\draw [fill=blue] (0,0) rectangle (6,2);\end{tikzpicture}
\end{document}
数学公式:
\documentclass[UTF8, 11pt,a4paper]{ctexart}
\usepackage{amsmath}
\usepackage{setspace}
\begin{document}已知关于$\;x,y\;$的方程组
$\left\{\begin{array}{l}x+y=2m+7,\\ x-y=4m-3\end{array}
\right.$
的解为正数,求$\;m\;$的取值范围. \end{document}
由MikTex编写的tex移植到Texlive时,一些修改:
这篇关于TexLive的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!