こんにちは。平行の記号のかき方の忘備録です。
簡易版
![]()
TikZ
\usepackage{tikz}
\begin{tikzpicture}[scale=1.5]
\coordinate (A) at (0,0) node [below left] at (A) {A};
\coordinate (B) at (5,0) node [below right] at (B) {B};
\draw [thick] (A) -- node[sloped] { $>$ } (B);
\end{tikzpicture}![]()
TikZ
\usepackage{tikz}
\usetikzlibrary{calc}
\begin{tikzpicture}[scale=1.5]
\coordinate (A) at (0,0) node [below left] at (A) {A};
\coordinate (B) at (5,0) node [below right] at (B) {B};
\draw [thick] (A)--(B);
\draw [thick] ($(A)!0.5!(B)!3.5pt!135:(B)$) -- ($(A)!0.5!(B)$) -- ($(A)!0.5!(B)!3.5pt!-135:(B)$);
\end{tikzpicture}
数樂管理人のブログ 