我想要得到的是下图,不同之处在于曲线是圆弧,而不是抛物线或其他曲线。实现此目的的一种方法是制作一条圆形路径并使用交点库来查找两条线(y=0,y=2)的交点。但是,由于虚拟绘制了一条完整的圆形路径,因此会产生较大的边界框,因此存在一个问题。我想要的是绘制一个圆弧,但不留任何边距。我该怎么做?
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[auto, scale=1.5]
\draw[fill=gray!50] (0,1.6) -- (0,0) -- (2,0);
\draw[densely dashed] (0,1.6) |- (2, 2.7) -- (2, 1.1);
\coordinate (a) at (0,1.6);
\coordinate (b) at (2,1.1);
\coordinate (o) at (1.4, 2.7);
\draw[|<->|] (0.08, 1.6) -- node {$H$} (0.08, 0);
\draw[|<->|] (1.4, 0.93) -- node {$h$} (1.4, 0);
\end{tikzpicture}
\end{document}
答案1
为此,您可以使用arc
-command 和数学引擎,tikz
它们都已在手册。
\documentclass[tikz, border=2mm]{standalone}
\usetikzlibrary{calc}
\begin{document}
\begin{tikzpicture}[scale=2]
\draw [help lines, <->] (0,1.2) |- (1.2,0);
\draw (1,0) arc (0:90:1);
\begin{scope}[|<->|, shorten <= -.2pt, shorten >= -.2pt]
\draw (0,0) -- (0,1) node [midway, right] {$H$};
\draw ({sin(45)},0) -- ({sin(45)}, {cos(45)}) node [midway, right] {$h$};
\end{scope}
\end{tikzpicture}
\end{document}
-命令shorten
用于调整箭头的位置以适合弧线。
答案2
答案3
Moospit 解决方案的一种变体,使用椭圆弧。
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[auto, scale=1.5]
\draw[fill=gray!50] (0,1.6) -- (0,0) -- (2,0);
%\draw[densely dashed] (0,1.6) |- (2, 2.7) -- (2, 1.1);
\coordinate (a) at (0,1.6);
\coordinate (b) at (2,1.1);
\coordinate (o) at (1.4, 2.7);
\draw[|<->|] (0.08, 1.6) -- node {$H$} (0.08, 0);
\draw[|<->|] (1.4, 0.93) -- node {$h$} (1.4, 0);
% compute x radius (assume y radius = 1.6)
\pgfmathparse{1.4/cos(asin(0.93/1.6))}
\let\xr=\pgfmathresult
\draw[densely dashed] (0,1.6) arc[y radius= 1.6,x radius={\xr},start angle=90, end angle=0];
\end{tikzpicture}
\end{document}