TikZ学習帳

筆者がマジでTikZのお勉強をするブログです。

2019-05-01から1ヶ月間の記事一覧

扇型を描く

\begin{tikzpicture} \draw [-stealth](-2,0)--(2,0); \draw [-stealth](0,-2)--(0,2); \filldraw [fill=blue, opacity=.5, draw=red](0,0)--(1,0)--(1,0)arc(0:120:1)--cycle; \end{tikzpicture} <script type="text/tikz"> \begin{tikzpicture} \draw [-stealth](-2,0)--(2,0); \dra…

図を傾ける or 回転させる

中心が原点の場合 原点を中心に普通の楕円を描いた。 \begin{tikzpicture} \draw [-stealth](-2,0)--(2,0); \draw [-stealth](0,-2)--(0,2); \draw (0,0) circle [x radius=2, y radius=1]; \end{tikzpicture} <script type="text/tikz"> \begin{tikzpicture} \draw [-stealth](-2,0)-…

図に文字を書き込む TeXを使う

そのまま書く \begin{tikzpicture}[x=3cm,y=3cm] \draw (0,0)--(1,1); \node (end) at (1,1) [above] {a}; \end{tikzpicture} \begin{tikzpicture}[x=3cm,y=3cm] \draw (0,0)--(1,1); \node (end) at (1,1) [above] {a}; \end{tikzpicture} </script> なにも設定しな…

図に文字を書き込む

オプション無し \begin{tikzpicture}[x=3cm,y=3cm] \draw (0,0)--(1,1); \node (end) at (1,1) {a}; \end{tikzpicture} <script type="text/tikz"> \begin{tikzpicture}[x=3cm,y=3cm] \draw (0,0)--(1,1); \node (end) at (1,1) {a}; \end{tikzpicture} </script> 図に文字を書き込むにはソース…

数式テスト

Mathjaxインラインモード [tex: ]と冒頭に一度書いておいて、はてなブログの数式モードを呼び出せば、そのページではフル機能のMathjaxを使用できる。 普通に書いてみる ほげ(ax_12 + (bx_1 + c) > 0) ほげ ほげ\(ax_1^2 + (bx_1 + c) > 0\) ほげ Mathjax記…

文字入力のテスト

\begin{tikzpicture} \draw[-stealth]( 0,-3.5) -- (0,3.5); \draw[-stealth](-3.5,0) -- (3.5,0); \draw(-0.3,-0.1) node[below]{0}; \foreach \x in {-3,-2,-1,1,2,3} \draw (\x,-0.1)node[below]{\x} -- (\x, 0.1); \foreach \y in {-3,-2,-1,1,2,3} \dra…

線の基本色

xcolor 19色 \tikz \draw (1,2) -- (3,4); \tikz[red] \draw (1,2) -- (3,4); \tikz[green] \draw (1,2) -- (3,4); \tikz[blue] \draw (1,2) -- (3,4); \tikz[cyan] \draw (1,2) -- (3,4); \tikz[yellow] \draw (1,2) -- (3,4); \tikz[olive] \draw (1,2) --…

x軸とy軸を作る

中心が原点 \begin{tikzpicture}[x=3cm,y=3cm] \node (O) at (0,0) [below left] {O}; \draw [thick, -stealth](-1.5,0)--(1.5,0) node [anchor=north]{$x$}; \draw [thick, -stealth](0,-1.2)--(0,1.2) node [anchor=east]{$y$}; \end{tikzpicture} <script type="text/tikz"> \begin…

インライン形式と独立形式

TikZには2種類の描画方法がある。簡単な図を描くインライン形式と、複雑な図も描ける独立形式である。 同じ図を描いてそれぞれの見え方を比べる。 インライン形式 ああああ \tikz \draw (0,0) circle (2); いいいい ああああ<script type="text/tikz"> \tikz \draw (0,0) circle (2); </script>…