-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path_Example3.tex
50 lines (42 loc) · 1.09 KB
/
_Example3.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
\documentclass[a4paper,12pt]{report}
\input{packages} %Подключаем модуль пакетов
\input{styles} %Подключаем модуль стилей
% Для того, чтобы ддве строчки ниже скомпилировались
% нужно компилировать с параметрами:
% pdflatex -shell-escape %.tex
% Подробнее http://blog.harrix.org/?p=849#h5_4
\usepgfplotslibrary{external}
\tikzexternalize[prefix=TikzPictures/]
\begin{document}
\input{names} %Подключаем модуль переименования некоторых команд
\begin{tikzpicture}
\begin{axis}[view/h=70]
\addplot3[
surf,
shader=flat,
samples=50,
domain=-3:3,y domain=-2:2]
{sin(-x+y)};
\end{axis}
\end{tikzpicture}
\begin{tikzpicture}
\begin{axis}[view/h=70]
\addplot3[
surf,
shader=flat,
samples=50,
domain=-3:3,y domain=-2:2]
{sin(deg(x/2+y))};
\end{axis}
\end{tikzpicture}
\begin{tikzpicture}
\begin{axis}[view/h=70]
\addplot3[
surf,
shader=flat,
samples=50,
domain=-3:3,y domain=-2:2]
{sin(deg(x+y^2))};
\end{axis}
\end{tikzpicture}
\end{document}