在线中间画垂直线

在线中间画垂直线

我想在线中间画一条垂直线。我计算了M代表中间的坐标。因为我知道原始线的斜率,所以我想尝试从该M坐标以特定长度的 tan(-1/m) 角绘制垂直线。也许我误解了这个例子http://www.texample.net/tikz/examples/refraction/角度,但我猜第二个参数指的是长度(\draw (C3M) -- (-59:8.2cm);)。但在我的方法中,这个参数主要影响使用的角度。axis环境可能是造成这种行为的原因吗?

\documentclass{minimal} 
\usepackage{tikz,pgfplots}
\pgfplotsset{compat=1.11}
\usetikzlibrary{intersections}
\begin{document} 
\begin{tikzpicture}
\begin{axis}[
scale only axis, % The height and width argument only apply to the actual axis
    height=5cm,
    axis x line=middle, axis y line=middle, xlabel={$x_1$},
    xlabel style={anchor=north}, ylabel={$x_2$},ylabel style={anchor=south east},
    xmin=0, xmax=7.5, ymin=0, ymax=11.5,no marks
    ]
    \addplot[fill=yellow!50,draw=none]coordinates{(0,0)(4,0)(4,3)(2,6)(0,6)};
    \addplot[black]coordinates{(0,6)(2,6)};
    \addplot[black]{0};
    \addplot[black]coordinates{(0,0)(0,6)};
    \addplot[black]coordinates{(4,0)(4,3)};
    \addplot[black]coordinates{(4,3)(2,6)};
    \path (6,0)--coordinate(C3M) node[right]{$3x_1+2x_2\leq 18$} (0,9);   
    \path (4,0)--coordinate(C1M) node[right]{$x_1\leq 4$} (4,3);
    \path (0,6)--coordinate(C2M) node[above]{$x_2 \leq 6$} (2,6);
    \draw (C3M) -- (-59:8.2cm);
    \draw (C3M) arc (0:-59:2) ;
    \end{axis}
\end{tikzpicture}
\end{document}

在此处输入图片描述

我希望得到这样的结果:

在此处输入图片描述

答案1

一种方法是使用部分修饰符

\documentclass{standalone}
\usepackage{pgfplots}
\usetikzlibrary{calc}
\pgfplotsset{compat=newest}
\begin{document} 
\begin{tikzpicture}
\begin{axis}[scale only axis, axis height=5cm,
    axis x line=middle, axis y line=middle, xlabel={$x_1$},
    xlabel style={anchor=north}, ylabel={$x_2$},ylabel style={anchor=south east},
    xmin=0, xmax=7.5, ymin=0, ymax=11.5,no marks
    ]

\addplot[draw=black,fill=yellow!50] coordinates{(0,0) (0,6) (2,6) (4,3) (4,0)} \closedcycle;
\draw[-latex] ($(2,6)!0.5!(4,3)$) coordinate (m) -- ($(m)!3mm!-90:(4,3)$) 
                                                  node[anchor=30]{$3x_1+2x_2\leq 18$} ;
\end{axis}
\end{tikzpicture}
\end{document}

在此处输入图片描述

避免使用minimal类。它是为 LaTeX 开发人员设计的。实际的最小类是article为用户设计的。

相关内容