TikZ로 그림을 그리는 것을 잊지 않기 위해 필기를 합니다. - 잘못 썼나 봐요.
1676 단어 Tikz
\documentclass[12pt,dvipdfmx]{jsarticle}
\usepackage{tikz}
\usetikzlibrary{angles,quotes}
\begin{tikzpicture}
\coordinate(A) at(0,0);
\coordinate(B) at(3,0);
\coordinate(C) at(1.5,2.5);
\pic [draw=black, angle eccentricity=1.8, angle radius=1cm, "$\theta$"] {angle=B--A--C};
\end{tikzpicture}
교차점에서 문자열 정렬
\documentclass[12pt,dvipdfmx]{standalone}
\usepackage{tikz}
\usetikzlibrary{patterns,intersections,calc,angles,quotes}
\begin{document}
\begin{tikzpicture}
\draw [name path=xaxis,->](-0.5,0)--(3,0);
\draw [name path=yaxis,->](0,-0.5)--(0,3);
\node [anchor=south] at(0,3) {$y$};
\node [anchor=west] at(3,0) {$x$};
\path [name intersections={of=xaxis and yaxis,by=in}];
\coordinate (O) at(in); %x軸とy軸の交点をOとする
\node [anchor=north east] at(O) {O};
\draw [name path=la, domain=-0.5:2] plot(\x,\x+1);
\draw [name path=lb, domain=-0.5:2.3] plot(\x,-\x+2);
\path [name intersections={of=la and lb,by=in2}]; %laとlbの交点をin2とする
\node [anchor=west] at(in2) {A}; %in2にAという文字列を配置
\end{tikzpicture}
\end{document}
참조: TikZ & PGF manual(version 3.01a)
Reference
이 문제에 관하여(TikZ로 그림을 그리는 것을 잊지 않기 위해 필기를 합니다. - 잘못 썼나 봐요.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/MushiTeX/items/7700a63b352978d56d23텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)