Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132928 views
License: OTHER
1
\documentclass[varwidth=true, border=2pt]{standalone}
2
\usepackage{tikz}
3
\usetikzlibrary{arrows,positioning}
4
5
6
\begin{document}
7
\begin{tikzpicture}
8
\tikzset{
9
%Define standard arrow tip
10
>=stealth',
11
% Define arrow style
12
pil/.style={->,thick}
13
}
14
15
\draw[fill=green!30] (0,0) -- (90:.75cm) arc (90:27:.75cm);
16
\draw[pil,color=black] (0,0) -- node[right=2pt] {$\vec a$} (27:2.2cm);
17
\draw[pil,color=black] (0,0) -- node[near end, right=-3pt] {$\vec b$} (90:2cm);
18
\draw(60:0.5cm) node {$\varphi$};
19
\end{tikzpicture}
20
\end{document}
21
22