Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は tikz を使用して、次のような構造を使用してグラフをプロットしています。
\draw plot [mark=ball] coordinates {(0,0) (1,1) ...};
ただし、ボールの色と形を変更できるようにしたいと思います-青い円として表示されます。方法がわかりませんでした (または理解できませんでした)。簡単な例をいただければ幸いです。
あなたは試すことができます
\draw [color=green, mark=triangle] plot coordinates { (0,0) (1,1) ...};
私があなたを正しく理解していれば。
色として、つまり赤、緑、青、黒、...を設定でき、マークとして、つまり円、o、x、星、...を設定できます。