打开Texpad新建一个Tex空白文档输入下面的内容
\documentclass{article}
\usepackage{CJKutf8}
\usepackage{tikz}
\begin{document}
\begin{CJK}{UTF8}{gbsn}
\begin{tikzpicture}
\draw (0,0) - - (2,2);
\draw (3,0) - | (5,2);
\fill (6,0) - | (8,2);
\draw (0,-1) .. controls(3,-3)..(2,-1);
\fill (3,-1) .. controls(6,-3)..(5,-1);
\filldraw(6,-1)..controls(9,-3)..(8,-1);
\draw (0,-4)..controls(3,-6)and(-1,-6)..(2,-4);
\fill (3,-4)..controls(6,-6)and(2,-6)..(5,-4);
\filldraw (6,-4)..controls(9,-6)and(5,-6)..(8,-4);
\end{tikzpicture}
\end{CJK}
\end{document}
点击️排版,得到下面的图形
Draw,fill,filldraw练习
与《Visual Tikz》原图有区别,不知是Texpad的原因还是我的设置不到位。
原图如下
Draw,fill,filldraw练习
我的图颜色是黑白的,没有网格。也没有绘制表格,以后学习吧。
网友评论