Tikz画像インライン

Tikz画像インライン

tikzpicture コードをインラインに配置する方法はありますか? 実際に実現したいのは次のようになります:

凸関数は「凸性のための tikz コード

誰かがこれは可能だと教えてくれました。また、tikz-pgf チュートリアルでは、多くの tikz コードをインラインで見ました。たとえば、スケーリング セクションでは、著者は回転する楕円をインラインで配置しています (テキストの横)

これを実現するにはどうすればよいでしょうか?

答え1

tikzpicture環境として使用するか、\tikzインライン マクロとして使用します。

しかし、ラインが伸びる問題は明らかです。

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{shadings}

\begin{document}
A stupid text followed by \begin{tikzpicture}\draw[fill=red,line width=1pt]  circle(1ex);\end{tikzpicture}

A stupid text followed by \tikz{\draw[fill=red,line width=1pt]  circle(1ex);}

A stupid text followed by another stupid text followed

A stupid text followed by some dots \tikz{%
    \foreach \x /\cola in {1/blue,2/yellow,3/red,4/green,5/orange}  {%
      \shade[ball color=\cola] (\x,0)  circle(0.5ex*\x);
    }%
}
\end{document}

ここに画像の説明を入力してください

答え2

私が持っている実際の文書からの別の例:

\documentclass{article}

\usepackage{tikz}

\newcommand{\ground}{%
    \begin{tikzpicture}[scale=0.5, baseline=-3mm, thick]
    \draw (0,0) -- +(0mm,-4.0mm) {
        [yshift=-4mm]
        +(-2mm,0mm) -- +(2mm,0mm)
                +(-1mm,-1mm) -- +(1mm,-1mm)
                +(-0.3mm,-2mm) -- +(0.3mm,-2mm)
        };
    \end{tikzpicture}%
}

\begin{document}

We have a text here, and then I refer to the ground (\ground) connection point in the instrument. Clearly, the \ground{} symbol will change the spacing... 
you can play with the \texttt{scale} and \texttt{baseline=-3mm} parameters in the definition\dots 
\end{document}

上記のスニペットの出力

答え3

ここでは、インラインで配置し、tikz コードをテキストから十分に離す方法についての提案を示します。

\raisebox{-2pt}{\tikz{\draw[line width=1pt, >->] (0, 0) arc (-180:0:8pt);}}

出力は次のようになりましたが、これはかなり良いと思います。

ここに画像の説明を入力してください

関連情報