私はこのフィギュアを作成するのに何時間も費やしましたが、運がありませんでした。
tikz
さまざまな種類の、 usepackagespstricks
を試しましたmultido
。
私の最大の問題は、テキストを追加し、より正確なジグザグ線を追加し、2 本の破線を追加することです。
私のコードは次のようになります:
\documentclass{article}
\usepackage{MinionPro}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw[thick,-] (0,0) -- (4.5,0);
\draw[thick,-] (0,0) -- (0,4.5);
\draw[thick,-] (0,0) -- (-4.5,0);
\draw[thick,-] (0,0) -- (0,-4.5);
\draw (0,0) .. controls (0,2) and (2,2) .. (4,2);
\draw (-4,-3) .. controls (-2,-3) and (0,-2) .. (0,0);
\end{tikzpicture}
\end{document}
この数字は次のようになります:
答え1
これは Tikz を使用した簡単な解決策です。プロットを使用して実行することもできますが、この方法の方が簡単だと思います。
「プロット」曲線は、 コマンドで描画される単純なエッジです
\draw (-4.5,-3) edge[out=0,in=180,looseness=1.5] (4.5,3);
。
ご覧のとおり、開始点と終了点は対称です。エッジ内のコントロール オプションは、エッジが出てくる場所 (0 度) とエッジが入る場所 (180 度) を指定します。緩さは曲率を制御します。1 はデフォルト、0 は直線で、数値を大きくするほど強調されます。
\documentclass[margin=10pt]{standalone}
\usepackage{tikz}
\tikzset{
nodeax/.style={
text centered,
text width=2.5cm
},
every path/.style={
thick
}
}
\begin{document}
\begin{tikzpicture}
%X and Y axis and relative nodes
\draw (-4.5,0) node[nodeax,left] {Expectations failed} -- (4.5,0) node[nodeax,right] {Expectations exceeded}; % X Axis
\draw (0,-4.5) node[nodeax,below] {Dissatisfied} -- (0,4.5) node[nodeax,above] {Confirmation satisfied}; % Y Axis
% "plot"
\draw (-4.5,-3) edge[out=0,in=180,looseness=1.5] (4.5,3);
% dashed lines and relative nodes
\draw[dashed] (-1,-4.5) -- (-1,4.5) node[left, anchor=east, xshift=-1em] {Discomfirmation};
\draw[dashed] (1,-4.5) -- (1,4.5)
node[right, anchor=west, xshift=1em] {Affirmation}
node[nodeax,pos=0.3,left, xshift=-8em] {(Difference between perfomance and expectations)};
\end{tikzpicture}
\end{document}
ちなみに、破線はdashed
パス オプションへの追加で完了ですが、他にも次のものがあります。
\documentclass[margin=10pt]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[
y=.5cm,
every node/.style=midway, above, font=\scriptsize
]
\draw[densely dashdotted] (0,9) -- (5,9) node {densely dashdotted};
\draw[densely dotted] (0,8) -- (5,8) node {densely dotted};
\draw[densely dashed] (0,7) -- (5,7) node {densely dashed};
\draw[loosely dashdotted] (0,6) -- (5,6) node {loosely dashdotted};
\draw[loosely dotted] (0,5) -- (5,5) node {loosely dotted};
\draw[loosely dashed] (0,4) -- (5,4) node {loosely dashed};
\draw[dashdotted] (0,3) -- (5,3) node {dashdotted};
\draw[dotted] (0,2) -- (5,2) node {dotted};
\draw[dashed] (0,1) -- (5,1) node {dashed};
\draw (0,0) -- (5,0) node {normal};
\end{tikzpicture}
\end{document}
答え2
MetaPost で完了です。破線はdashed
演算子によって描画されます。
for k = u, -u: draw (k, ymin) -- (k, ymax) dashed evenly; endfor
見るMetaPostマニュアルダッシュ パターンを自由にカスタマイズする方法については、37 ページを参照してください。
曲線は次の単純な線で描かれます。
draw A{right} .. origin{dir 80} .. B{right};
中括弧内の命令は、度単位の角度で指定された接線の方向を示します (right
は の別名ですdir 0
)。
注意:hobby
パッケージは、tikz
ベジェ曲線の構築に関して MetaPost と同様の機能を提供します。
input latexmp; setupLaTeXMP(mode=rerun, textextlabel=enable);
numeric u, xmin, xmax, ymin, ymax;
u = cm; xmax = -xmin = ymax = -ymin = 4.5u;
pair A, B; A = (xmin, -3u); B = (xmax, 2u);
beginfig(1);
draw (xmin, 0) -- (xmax, 0);
draw (0, ymin) -- (0, ymax);
for k = u, -u: draw (k, ymin) -- (k, ymax) dashed evenly; endfor
draw A{right} .. origin{dir 80} .. B{right};
label.lft("\begin{tabular}{c}Expectations\\ failed \end{tabular}", (xmin, 0));
label.rt("\begin{tabular}{c}Expectations\\ exceeded \end{tabular}", (xmax, 0));
label.bot("Dissatisfied", (0, ymin));
label.top("\begin{tabular}{c}\textbf{Confirmation}\\Satisfied\end{tabular}", (0, ymax));
label.top("\textbf{Disconfirmation}", (.4[xmin,-u], ymax));
label.top("\textbf{Affirmation}", (.5[u,xmax], ymax));
label.lft("\begin{tabular}{c}Difference between\\Performance and\\Expectations\end{tabular}", (.5[xmin, u], .3ymin));
endfig;
end.
出力: