tikz-pgf를 사용하여 유틸리티 곡선 그리기

tikz-pgf를 사용하여 유틸리티 곡선 그리기

저는 Sharpe(1964)의 그림을 가지고 있는데 tikz-pgf를 사용하여 다시 만들고 싶습니다. 유틸리티 곡선

나는 tikz-pgf 패키지를 처음 접했기 때문에 어디서부터 시작해야 할지 잘 모르겠습니다. 나는 그림과 비슷한 작업을 하고 싶지만 유틸리티 곡선을 뒤집어 볼록하게 만들고 싶습니다. 실현 가능한 영역(그림의 음영 부분으로 표시)을 포함하고 싶지만 꼭 그 모양일 필요도 없고 글자도 필요하지 않지만 있으면 좋을 것 같습니다.

그런 일을 시작하는 방법을 아는 사람이 있나요? 미리 감사드립니다!

답변1

\documentclass[border=3pt]{standalone}
\makeatletter 
\newcommand*{\bottop}{% from https://tex.stackexchange.com/a/414828/121799
  \mathpalette\@bottop{}%
}
\newcommand*{\@bottop}[2]{%
  % #1: math style
  % #2: unused
  \rlap{$#1\bot\m@th$}% put \bot to the right without moving the current point
  \top
}
\makeatother
\usepackage{tikz}
\usetikzlibrary{positioning,calc}
\begin{document}
\begin{tikzpicture}
 \node[label=right:$F$] (F) at (8.8,4){$\bullet$};
 \node[label=below:$A$] (A) at (4.3,1.6){$\bullet$};
 \node[label=right:$X$] (X) at (11.6,11.8){$\bullet$};
 \node[label=right:$C$] (C) at (10.9,8.3){$\bullet$};
 \node[label=right:$D$] (D) at (10.75,7.9){$\bullet$};
 \node[label=right:$D$] (B) at (10.3,7){$\bullet$};
 \draw[thick] (0,0) -- (0,16) node[left,pos=0.9]{$\sigma_\mathrm{R}$};
 \draw[thick] (0,0) -- (16,0) node[below,pos=0.9]{$E_\mathrm{R}$};
 \draw[thick,fill=gray] (1.3,3.2) to (3.6,7) to[bend right=10] (6.6,10)
 to[bend right=14] (X.center) 
 to[bend left=14] (C.center)
 to[bend left=4] (D.center)
 to[bend left=4] (B.center)
 to[bend left=4] (F.center) 
 to[bend left=24] (A.center) to[bend left=24]  cycle;
 \draw[ultra thick,dashed] (3,0) to[bend left=7] (6,5.6) to[bend left=22] 
 (15,11.2) node[right] {$\bottop$};
 \draw[ultra thick,dashed] (6.5,0) to[bend left=7] (F) to[bend left=22] 
 (15,8.2) node[right] {$\bottop\!\!\bottop$};
 \draw[ultra thick,dashed] (9.7,0) to[bend left=17] 
 (15,5.2) node[right] {$\bottop\!\!\bottop\!\!\bottop$};
 \draw[thick,latex-] (B.center) -- (B|-C) node[label=left:$Z$](Z){$\bullet$};
 \draw[thick,-latex] (Z.center) -- (C.center);
 \draw[thick,-latex] (Z.center) -- (D.center);
\end{tikzpicture} 
\end{document}

여기에 이미지 설명을 입력하세요

관련 정보