2010-12-04 5 views
4

私はTikZでユーロ記号を再構築しようとしています。私の基本的なガイドは、私はに実行した問題は、私がこれまでに全ての交点を計算することができるということです http://upload.wikimedia.org/wikipedia/commons/5/57/Euro_Construction.svgpgf/tikzでEUR記号を作成する

ですが、 は、私は、例えばから弧を描くようには、TikZを指示することができませんAからKまで。私は を描くことができましたが、クリッピングを使用して、私が理解している限り、接続された パスが得られません。私は手ですべての角度を計算することを避けようとしています。それは少しやり過ぎのようですけれども、\ pgfpatharctoがあるSVGのサポートについては

、 それは次の問題に私をリードして仕事をし、行う可能性があります:どのように私は、例えば座標という名前 から\ pgfpointsを得るのですか(A)\ pgfpatharctoでそれらを使う?さらに良い: どのように私はsvgパスのデータに名前付き座標を使用できますか?それは基本的には と書くことに問題を減らす \ draw ...(B) - (A)svg "a 6 6 0 0 0(K)" - (O)...;

は私が既に持っていることはこれです:

Alt text http://img.skitch.com/20101204-ef3a3xwh2reqis67phqenmuxa2.png
Skitch

を使用してアップロード:

\begin{tikzpicture} 
\draw[step=5mm, gray, very thin] (-7.5,-7.5) grid (7.5,7.5); % grid 

% inner and outer circle to be used for the intersections 
\path[name path=outer] (0,0) circle[radius=6]; 
\path[name path=inner] (0,0) circle[radius=5]; 

% upper, semi upper, semi lower and lower horizontal lines. 
\path[name path=U] (-7.5,1.5) -- (4,1.5); 
\path[name path=u] (-7.5,0.5) -- (4,0.5); 
\path[name path=l] (-7.5,-0.5) -- (4,-0.5); 
\path[name path=L] (-7.5,-1.5) -- (4,-1.5); 

% the upwards slope and the vertical line at +-40 deg at 5 units. 
\path[name path=slope] ($(0,-6)!0.25!(40:5)$) -- ($(0,-6)!1.25!(40:5)$); 
\path[name path=fourty] ($(40:5)!0.5!(-40:5)$) -- ($(40:5)!1.25!(-40:5)$); 

% naming all the intersections. 
\path[name intersections={of=outer and slope, by={A}}]; 
\path[name intersections={of=inner and slope, by={B}}]; 

\path[name intersections={of=U and slope, by={C}}]; 
\path[name intersections={of=u and slope, by={D}}]; 
\path[name intersections={of=l and slope, by={E}}]; 
\path[name intersections={of=L and slope, by={F}}]; 

\path[name intersections={of=U and inner, by={G}}]; 
\path[name intersections={of=u and inner, by={H}}]; 
\path[name intersections={of=l and inner, by={I}}]; 
\path[name intersections={of=L and inner, by={J}}]; 

\path[name intersections={of=U and outer, by={K}}]; 
\path[name intersections={of=u and outer, by={L}}]; 
\path[name intersections={of=l and outer, by={M}}]; 
\path[name intersections={of=L and outer, by={N}}]; 

\coordinate (O) at ($(-7.5,0.5)+(C)-(D)$); 
\coordinate (P) at (-7.5,0.5); 
\coordinate (Q) at ($(-7.5,-1.5)+(E)-(F)$); 
\coordinate (R) at (-7.5,-1.5); 

\path[name intersections={of=fourty and inner, by={S}}]; 
\path[name intersections={of=fourty and outer, by={T}}]; 

% drawing the intersections 
\foreach \p in {A,...,T} \fill[red] (\p) circle (2pt) node[above left,black] {\footnotesize\p}; 

% constructing the path 
\draw (A) -- (B) (G) -- (C) -- (D) -- (H) (I) -- (E) -- (F) -- (J) (S) -- (T) (N) -- (R) -- (Q) -- (M) (L) -- (P) -- (O) -- (K); 

% missing segments 
\draw[gray,dashed] circle[radius=5] circle[radius=6]; 

\end{tikzpicture} 

UPDATE(PGFのマリンの助けを借りて、私たちは、以下のソリューションに到着グラムリスト)

\draw[thick,fill] let \p1=(A), \p2=(K), \p3=(L), \p4=(M), \p5=(N), \p6=(T), 
       \p7=(S), \p8=(J), \p9=(I), \p{10}=(H), \p{11}=(G), \p{12}=(B), 
       \n{aA}={atan2(\x1,\y1)}, \n{aK}={atan2(\x2,\y2)}, 
       \n{aL}={atan2(\x3,\y3)}, \n{aM}={360+atan2(\x4,\y4)}, 
       \n{aN}={360+atan2(\x5,\y5)}, \n{aT}={360+atan2(\x6,\y6)}, 
       \n{aS}={360+atan2(\x7,\y7)}, \n{aJ}={360+atan2(\x8,\y8)}, 
       \n{aI}={360+atan2(\x9,\y9)}, \n{aH}={atan2(\x{10},\y{10})}, 
       \n{aG}={atan2(\x{11},\y{11})}, \n{aB}={atan2(\x{12},\y{12})} 
       in (A) arc (\n{aA}:\n{aK}:6) -- (O) -- (P) 
       -- (L) arc (\n{aL}:\n{aM}:6) -- (Q) -- (R) 
       -- (N) arc (\n{aN}:\n{aT}:6) 
       -- (S) arc (\n{aS}:\n{aJ}:5) -- (F) -- (E) 
       -- (I) arc (\n{aI}:\n{aH}:5) -- (D) -- (C) 
       -- (G) arc (\n{aG}:\n{aB}:5) -- cycle; 

これは、は、TikZは点の角度を計算し、それがアークへの単純な呼び出しだその上からできます。 私にとって難しい部分は、数学エンジンの使用でした。ドキュメントはあまりにも圧倒的でした と中括弧を使用して数学エンジンで新しい値が割り当てられている部分が見つかりませんでした。

+1

BTW - この質問はここで話題になっていますが、tex.stackexchange.comでラテックスユーザーがより多く集まっています。移行パスはないので、再送信する必要があります。 – dmckee

答えて

1

私は今まで描かれてきたことを許可することは1(1を、それを数える)は、TikZの図、

\draw (A) arc (Aangle:Kangle:outerRadius) 
outerRadiusは6と Aangleは40度であるように思わように思わ

、私の何が問題になっています提供されたデータでKanglesを即座に見ることはできません(ただし値は完全に制約されています... arcsin(1.5/6)のように見えます)。

+0

はい、これは正しいアプローチです。私が立ち往生したところでは、角度の計算は、上記を参照してください。 – angerman

関連する問題