In the following code, two triangles are drawn - one is the reflection of the other across the line y=x. I would like to have a line, with the command \draw[loosely dash dot], drawn either half or a third the thickness of the dashed lines in triangle AB'C'. I would like the line to contain the line segment between B' and C'. To do that, I need to either move the nodes B' and C' to the right or I need to have B' and C', with some space about them, typeset over the line.
\documentclass[10pt]{amsart}
\usepackage{tikz}
\usetikzlibrary{calc,angles,positioning,intersections,quotes,decorations.markings}
\usepackage{mathtools,systeme,array}
\usepackage{tkz-euclide}
\usetkzobj{all}
\usepackage{pgfplots}
\pgfplotsset{compat=1.11}
\begin{document}
\begin{tikzpicture}
\begin{axis}[width=4in,axis equal image,clip=false,
axis lines=middle,
xmin=-7,xmax=17,
xlabel=$x$,ylabel=$y$,
ymin=-7,ymax=17,
restrict y to domain=-7:17,
enlargelimits={abs=0.25cm},
axis line style={latex-latex},
ticklabel style={font=\tiny,fill=white},
xtick={\empty},ytick={\empty},
xlabel style={at={(ticklabel* cs:1)},anchor=north west},
ylabel style={at={(ticklabel* cs:1)},anchor=south west}
]
\addplot[dashed,latex-latex,samples=2,domain=-6:16]{x};
\draw (axis cs:-3,-3) coordinate(A) node[above left]{$A$};
\draw (axis cs:0,10.5) coordinate(B) node[above left]{$B$};
\draw (axis cs:5,13) coordinate(C) node[above right]{$C$};
\draw (axis cs:3,9) coordinate(P);
\draw (axis cs:10.5,0) coordinate(b) node[below]{$B^{\prime}$};
\draw (axis cs:13,5) coordinate(c) node[above right]{$C^{\prime}$};
\draw (axis cs:9,3) coordinate(p);
\end{axis}
\draw (A) -- (B) -- (C) -- cycle;
\draw[dashed] (B) -- (P);
\tkzMarkRightAngle(A,P,B);
\draw[dashed] (A) -- (b) -- (c) -- cycle;
\draw[dotted] (b) -- (p);
\tkzMarkRightAngle[densely dotted](A,p,b);
\end{tikzpicture}
\end{document}
\draw[line width=1pt]for example. – Sigur Jan 08 '15 at 12:41line width=0.5\pgflinewidth. – user43963 Jan 08 '15 at 13:56pgfmanualsection 100.2.1 for line width, for example. – user43963 Jan 08 '15 at 14:16