您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

17 行
244B

  1. import graph;
  2. usepackage("palatino");
  3. usepackage("mathpazo");
  4. size(7inches,3inches);
  5. scale(true);
  6. real f(real x) { return sin(x); }
  7. pair F(real x) { return (x, f(x)); }
  8. xaxis("$x$");
  9. yaxis("$y$");
  10. draw(graph(f,-10.,10,operator ..), red);