TikZ 中的倾斜正弦波 2024-5-25 • tikz-pgf 我能够使用以下代码生成水平正弦波。 \draw[domain = 0:4] plot [smooth] (\x,{0.4 * sin(\x * pi/2 r)}); 如何使用 TikZ 绘制倾斜的正弦波?类似于下图: 答案1 \documentclass[tikz, border=1cm]{standalone} \begin{document} \begin{tikzpicture} \draw (0,0) -- (2,0) cos (3,1) sin (4,2) -- (6,2); \end{tikzpicture} \end{document} 相关内容 在 Python 脚本中运行 systemctl 不合逻辑地限制广播流量。有什么缺点? 有免费的 Ubuntu Studio 20.10 使用说明书吗? 防火墙服务器上的 DNS 问题 如何确认文档的文件属性[重复] 在尊重 robot.txt 的同时,我需要多少硬盘空间来缓存网页?[关闭] 监视/流 bash_history [关闭] nginx 反向代理 WHM 中的 Varnish 缓存[关闭] 在 Google 计算引擎 FTP 服务器中看不到任何文件 解决方案