乳胶中的圆圈

乳胶中的圆圈

我对乳胶完全陌生。我试图画一个圆圈,但这不是我真正想要的。请帮忙,提前谢谢。在此处输入图片描述

答案1

像这样:

在此处输入图片描述

代码:

\documentclass[10pt,a4paper]{article}

\usepackage{tikz}
\begin{document}
    \begin{tikzpicture}[scale=3] 
        \coordinate (0,0) node[left] (O) {O};
        \draw[-latex] (0,0)--(1.3,0) node[right] () {$x$};
        \draw (0,0) circle(1cm); 
        \fill (63:1) circle(1pt);
        \draw (0,0)--(63:1) node[midway,left] () {$V$}; 
        \draw[dashed] ({cos(63)},0)--(63:1);
        \draw[latex-latex] (1.12,0) arc (0:63:1.12) node[midway,fill=white] () {$V$};
        \node at (63:1.2) (a) {P$(x,y)$};
    \end{tikzpicture}   
\end{document}

添加:为了获得更完整的图片:

在此处输入图片描述

输入以下代码:

\documentclass[10pt,a4paper]{article}

\usepackage{tikz}
\begin{document}
    \begin{tikzpicture}[scale=3] 
        \coordinate (0,0) node[above left] (O) {O};
        \draw[-latex] (0,0)--(1.3,0) node[right] () {$x$};
        \draw (0,0) circle(1cm); 
        \fill (63:1) circle(1pt);
        \draw (0,0)--(63:1) node[midway,left] () {$V$}; 
        \draw[dashed] ({cos(63)},0)--(63:1);
        \draw[latex-latex] (1.12,0) arc (0:63:1.12) node[midway,fill=white] () {$V$};
        \node at (63:1.2) (a) {P$(x,y)$};
        \draw[-latex] (.25,0) arc(0:63:.25) node[midway,right] () {1 radiant};
        \draw[-latex] (.2,0) arc(0:360:.2) node[pos=.75,below] () {$2\pi$ radiants};
    \end{tikzpicture}   
\end{document}

编辑:为了获得更加真实的图像,将上面代码中的所有值“63”更改为“57.3”(1 度辐射点)。

相关内容