带线和括号的图形

带线和括号的图形

我对乳胶绘图还很陌生,需要以下示例:

在此处输入图片描述

我不知道使用什么包来生成红线上的花括号以及随之而来的标签。

代码示例将不胜感激

PS:我没有提供序言,因为我不确定所需的包。

答案1

\documentclass[tikz,border=3mm]{standalone}
\usetikzlibrary{decorations.pathreplacing,calligraphy}
\begin{document}
\begin{tikzpicture}
 \draw[thick,stealth-stealth] (0,6.5) |- (6.5,0);
 \draw foreach \x in {1,...,5} {(\x,0.1) -- (\x,-0.1) node[below]{$\x$}
    (0.1,\x) -- (-0.1,\x) node[left]{$\x$}};
 \draw[dashed] foreach \x in {1,3,5 }{(\x,0) |- (0,\x)};
 \draw[red,thick] (3,3) -- (5,5);
 \draw[thick,decorate,decoration={calligraphic brace,raise=0.5ex}]
    (3,3) -- node[above left=0.6ex,align=center,font=\sffamily]{Completed\\
        Strategies}(5,5);
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容