如何在 overleaf 上制作 sin(x) 图形函数

如何在 overleaf 上制作 sin(x) 图形函数

有人能帮我在 overleaf 上制作 sin(x) 函数吗?域:-8pi 到 8pi

答案1

我已经将它用于一些项目。应该可以给你一个先机:

\documentclass{standalone}
\usepackage{pgfplots}
\begin{document}
    \begin{tikzpicture}
        \begin{axis}[
            width=.8\textwidth, height=5cm,
            domain=-2*pi:2*pi,samples=50,smooth,
            ymin=-1, ymax=1,
            axis x line*=bottom,
            axis y line*=left,
            xtick = {-6.283, -3.145, 0, 3.1415, 6.283},
            xticklabels = {$-2\pi$, $-\pi$, 0, $\pi$, $2\pi$},
            grid = major, ymajorgrids = false,
            x tick label style={black},
            enlarge y limits=.15, enlarge x limits=0]
            \addplot[mark=none]{sin(deg(x))};
        \end{axis}
    \end{tikzpicture}
\end{document}

如果您有后续问题,请务必阅读Black Mild 的评论在这里提问之前。

相关内容