yshift 没有任何效果 2024-5-25 • tikz-pgf 我很困惑为什么这段代码不起作用: \documentclass[tikz]{standalone} \begin{document} \begin{tikzpicture} \node (V) at (0,4) {$V$}; \node (P) at (5,4) {$P$}; \draw[thick] (V) -- ([yshift=10ex]P); \end{tikzpicture} \end{document} 结果如下: 如你所见,箭头落在 P 上,而不是垂直移动。 答案1 --这是一种与to不一样的效果的情况。 \documentclass{article} \usepackage{tikz} \begin{document} \begin{tikzpicture} \node (V) at (0,4) {$V$}; \node (P) at (5,4) {$P$}; \draw[thick] (V) to ([yshift=10ex]P); \end{tikzpicture} \end{document} 相关内容 如何设置投影仪框架的垂直边距? 在 bash 中使用管道传递参数 Parshape 没有对齐文本 选择“与 Windows Vista 一起安装”时系统重置 使用 LAN 和 Wi-Fi 实现负载平衡 Ubuntu 22.04 Hotspot 连接激活失败 无法安装任何新软件包或运行升级,缺少最后的换行符 在 Ubuntu 18.04 LTS 上安装 Flat Remix 主题 简单的文件循环 - “文件名太长” Debian 中的 /etc/profile 文件从哪里来?