
Estou tentando fazer com que duas linhas se cruzem usando a (intersection cs: first line={}, second line={})
sintaxe. No entanto, a compilação do exemplo a seguir não faz o que desejo:
%!TEX encoding = UTF-8 Unicode
%!TEX program = lualatex
\documentclass[11pt,a4paper,fleqn,pdftex]{report}
\usepackage[dvipsnames, table]{xcolor}
\usepackage[utf8]{luainputenc}
\usepackage[latin,english]{babel}
\usepackage{tikz}
\usetikzlibrary{patterns}
\usetikzlibrary{shapes.geometric}
\begin{document}
\begin{figure}[!h]
\centering
\begin{tikzpicture}
\coordinate (S) at (-5 ,0);
\coordinate (M'1) at (0,4.5);
\coordinate (M2) at (0,3);
\def\angleM{10}
\draw[color=Red, thick] (M'1) -- (intersection cs: first line={(M'1)--++(90 - \angleM:-8)}, second line={(-5,-5) -- (5,5)}) circle (2pt) -- (S); % (S) -> (M'1)
\draw[color=Red, thick] (M2) -- (intersection cs: first line={(M2) --++(90 - \angleM:-8)}, second line={(45:-4) -- (45:4)}) circle (2pt) -- (S); % (S) -> (M2)
\draw (S) node[ellipse, fill=white, minimum height=3cm,minimum width=2mm,draw]{$(S)$};
\begin{scope}[thick]
\draw[densely dashed] (M'1) ++(1,0) -- ++(-2,0) node[left]{$M'_1$};
\draw (M2) ++(1,0) -- ++(-2,0) node[left]{$M_2$};
\end{scope}
\fill[pattern=north east lines] (M'1) ++(1,0) rectangle ++(-2,0.2);
\fill[pattern=north east lines] (M2) ++(1,0) rectangle ++(-2,0.2);
\draw[very thick] (45:-2) -- (45:2);
\end{tikzpicture}
\end{figure}
\end{document}
Este código produz isto:
Considerando que quero que as linhas vermelhas se cruzem com a linha preta no centro. Há algo que estou fazendo de errado? O manual PGF/TikZ não fornece nenhum exemplo de sintaxe de interseção com caminhos relativos.
Responder1
Não deixe espaços em branco na especificação das linhas do intersection
sistema de coordenadas: em vez de
\draw[color=Red, thick] (M'1) -- (intersection cs: first line={(M'1)--++(90 - \angleM:-8)}, second line={(-5,-5) -- (5,5)}) circle (2pt) -- (S); % (S) -> (M'1)
\draw[color=Red, thick] (M2) -- (intersection cs: first line={(M2) --++(90 - \angleM:-8)}, second line={(45:-4) -- (45:4)}) circle (2pt) -- (S); % (S) -> (M2)
você deveria usar
\draw[color=Red, thick] (M'1) -- (intersection cs: first line={(M'1)--++(90 - \angleM:-8)}, second line={(-5,-5)--(5,5)}) circle (2pt) -- (S); % (S) -> (M'1)
\draw[color=Red, thick] (M2) -- (intersection cs: first line={(M2) --++(90 - \angleM:-8)}, second line={(45:-4)--(45:4)}) circle (2pt) -- (S); % (S) -> (M2)
(para deixar a explicação mais clara, você tinha second line={(-5,-5) -- (5,5)}
espaços em ambos os lados do --
e deveria estar second line={(-5,-5)--(5,5)})
sem espaços; observação semelhante para o outro \draw
.
O código:
%!TEX encoding = UTF-8 Unicode
%!TEX program = lualatex
\documentclass[11pt,a4paper,fleqn,pdftex]{report}
\usepackage[dvipsnames, table]{xcolor}
\usepackage[utf8]{luainputenc}
\usepackage[latin,english]{babel}
\usepackage{tikz}
\usetikzlibrary{patterns,calc}
\usetikzlibrary{shapes.geometric}
\begin{document}
\begin{figure}[!h]
\centering
\begin{tikzpicture}
\coordinate (S) at (-5 ,0);
\coordinate (M'1) at (0,4.5);
\coordinate (M2) at (0,3);
\def\angleM{10}
\draw[color=Red, thick] (M'1) -- (intersection cs: first line={(M'1)--++(90 - \angleM:-8)}, second line={(-5,-5)--(5,5)}) circle (2pt) -- (S); % (S) -> (M'1)
\draw[color=Red, thick] (M2) -- (intersection cs: first line={(M2) --++(90 - \angleM:-8)}, second line={(45:-4)--(45:4)}) circle (2pt) -- (S); % (S) -> (M2)
\draw (S) node[ellipse, fill=white, minimum height=3cm,minimum width=2mm,draw]{$(S)$};
\begin{scope}[thick]
\draw[densely dashed] (M'1) ++(1,0) -- ++(-2,0) node[left]{$M'_1$};
\draw (M2) ++(1,0) -- ++(-2,0) node[left]{$M_2$};
\end{scope}
\fill[pattern=north east lines] (M'1) ++(1,0) rectangle ++(-2,0.2);
\fill[pattern=north east lines] (M2) ++(1,0) rectangle ++(-2,0.2);
\draw[very thick] (45:-2) -- (45:2);
\coordinate (L) at ( $ (80 :-8) + (0,4.5) $ );
\end{tikzpicture}
\end{figure}
\end{document}
Na verdade, você pode deixar um espaço em branco antes, --
mas não depois! Talvez isso possa ser considerado um bug?