더 많은 공간을 포함하도록 각도 세타를 어떻게 더 크게 만들 수 있습니까?

더 많은 공간을 포함하도록 각도 세타를 어떻게 더 크게 만들 수 있습니까?

이것이 현재 가지고 있는 것입니다. 공간의 양에 맞지 않는데, 더 크게/맞게 만들려면 어떻게 해야 합니까?

아래 코드는 다음과 같습니다.

\documentclass[letterpaper]{article}
\usetikzlibrary{arrows,calc,positioning,patterns,angles,quotes}
\begin{tikzpicture}[>=latex',scale=1.75]
    % save length of g-vector and theta to macros
    \pgfmathsetmacro{\Gvec}{1.5}
    \pgfmathsetmacro{\myAngle}{30}
    % calculate lengths of vector components
    \pgfmathsetmacro{\Gcos}{\Gvec*cos(\myAngle)}
    \pgfmathsetmacro{\Gsin}{\Gvec*sin(\myAngle)}

    \coordinate (centro) at (0,0);
    \draw[dashed,gray,-] (centro) -- ++ (0,-3.5) node (mary) [black,below]{$ $};
    \draw[thick] (centro) -- ++(270+\myAngle:3) coordinate (bob);
    \pic [draw, ->, "$\theta$", angle eccentricity=2.3] {angle = mary--centro--bob};
    \draw [blue, -stealth] (bob) -- ($(bob)!\Gcos cm!(centro)$);
    \draw [-stealth] (bob) -- ($(bob)!-\Gcos cm!(centro)$)
      coordinate (gcos)
      node[midway,above right] {$mg\cos\theta$};
    \draw [-stealth] (bob) -- ($(bob)!\Gsin cm!90:(centro)$)
      coordinate (gsin)
      node[midway,above left] {$mg\sin\theta$};
    \draw [-stealth] (bob) -- ++(0,-\Gvec)
      coordinate (g)
      node[near end,left] {$mg$};
    \pic [draw, ->, "$\theta$", angle eccentricity=1.5] {angle = g--bob--gcos};
\end{tikzpicture}

여기에 이미지 설명을 입력하세요

관련 정보