지난 학기에는 과제와 숙제를 위해서만 LaTeX를 사용하기 시작했지만 이제는 다음 단계로 나아가고 싶었습니다.
나는 tikz
pgfmanual을 따라 라이브러리를 시작했습니다. 코드를 컴파일하려고 할 때마다 문서와 다른 결과가 나오거나 심지어 컴파일되지도 않습니다.
예를 들어 이 첫 번째 코드는 문서에서 바로 복사했습니다.
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[>=stealth, scale=3]
\clip (-2, -0.2) rectangle (2,0.8);
\draw[step=.5cm,gray,very thin] (-1.4,-1.4) grid (1.4,1.4);
\draw[<->](-1.5, 0) -- (1.5,0);
\draw[<->](0, -1.5) -- (0, 1.5);
\draw (0,0) circle [radius=1cm];
\draw[very thick,red]
(30:1cm) -- node[left=1pt,fill=white] {$\sin \alpha$} (30:1cm |- x axis);
\draw[very thick blue]
(30:1cm |- x axis) -- node[below=2pt,fill=white] {$\cos \alpha$} (0,0);
\filldraw[fill=green!20!white, draw=green!50!black] (0,0) -- (3mm,0mm)
arc [start angle=0, end angle=30, radius=3mm] --cycle;
\foreach \x\xtext in {-1,-0.5/-\frac{1}{2}, 1}
\draw (\x cm, 1pt) -- (\x cm, -1pt) node [anchor=north] {$\xtext$};
\foreach \y/\ytext in {-1,-0.5/-\frac{1}{2}, 0.5/\frac{1}{2}, 1}
\draw (1pt, \y cm) -- (-1pt, \y cm) node [anchor=east] {$\ytext$};
\path [name path=upward line] (1,0) -- (1,1);
\path [name path=sloped line] (0,0) -- (30:1.5cm);
\draw [name intersections={of=upward line and sloped line, by=t}]
[very thick, orange] (1,0) -- node [right=1pt,fill=white];
{$\displaystyle \tan \alpha \color{black} =
\frac{{\color{red}\sin \alpha}}{\color{blue} \cos \alpha}$} (t);
\end{tikzpicture}
\end{document}
컴파일했을 때의 결과는 다음과 같습니다.
OS: Ubuntu 18.04 LTS Texlive iso를 설치했습니다.
답변1
매뉴얼의 코드 예제를 복사하여 붙여넣을 수는 없습니다. 실제로 예제를 사용하는 방법을 알아 보려면 설명서를 읽어야 합니다. 이 경우에는 누락되었습니다 \usetikzlibrary{intersections}
.
튜토리얼의 관련 부분은 다음과 같습니다.
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{intersections}
\begin{document}
\begin{tikzpicture}[scale=3]
\clip (-2,-0.2) rectangle (2,0.8);
\draw[step=.5cm,gray,very thin] (-1.4,-1.4) grid (1.4,1.4);
\filldraw[fill=green!20,draw=green!50!black] (0,0) -- (3mm,0mm)
arc [start angle=0, end angle=30, radius=3mm] -- cycle;
\draw[->] (-1.5,0) -- (1.5,0) coordinate (x axis);
\draw[->] (0,-1.5) -- (0,1.5) coordinate (y axis);
\draw (0,0) circle [radius=1cm];
\draw[very thick,red]
(30:1cm) -- node[left=1pt,fill=white] {$\sin \alpha$} (30:1cm |- x axis);
\draw[very thick,blue]
(30:1cm |- x axis) -- node[below=2pt,fill=white] {$\cos \alpha$} (0,0);
\path [name path=upward line] (1,0) -- (1,1);
\path [name path=sloped line] (0,0) -- (30:1.5cm);
\draw [name intersections={of=upward line and sloped line, by=t}]
[very thick,orange] (1,0) -- node [right=1pt,fill=white]
{$\displaystyle \tan \alpha \color{black}=
\frac{{\color{red}\sin \alpha}}{\color{blue}\cos \alpha}$} (t);
\draw (0,0) -- (t);
\foreach \x/\xtext in {-1, -0.5/-\frac{1}{2}, 1}
\draw (\x cm,1pt) -- (\x cm,-1pt) node[anchor=north,fill=white] {$\xtext$};
\foreach \y/\ytext in {-1, -0.5/-\frac{1}{2}, 0.5/\frac{1}{2}, 1}
\draw (1pt,\y cm) -- (-1pt,\y cm) node[anchor=east,fill=white] {$\ytext$};
\end{tikzpicture}
\end{document}