\documentclass[12pt]{article}
\usepackage{amsmath,amssymb}
\usepackage{graphicx}
\usepackage{physics}
\usepackage{mathtools}
\usepackage{TikZ}
\usepackage{PGF}
\begin{document}
\begin{tikzpicture}
\draw[thick, domain=-3/2:3/2] plot (\x, {cos(\x)});
\end{tikzpicture}
\end{document}
有一些额外的前言只是为了让你了解我在使用什么。
答案1
\begin{tikzpicture}
您可以在行内添加\begin{axis}
。这允许您从坐标或方程式添加绘图。使用
\begin{tikzpicture}
\begin{axis}
\addplot[
domain=0:360,
samples=100,
color=blue,
]
{cos(\x)};
\end{axis}
\end{tikzpicture}
0
例如,给出和之间的余弦图360
。您可以从线更改范围domain
。
关于你问的问题(哎呀,我是个傻瓜!)使用
\draw[thick, domain=-3/2:3/2] plot (\x, {cos(deg (\x))});
而是确保域足够大deg(\x)