공식에서 매개변수에 동그라미 표시하기

공식에서 매개변수에 동그라미 표시하기

아래와 같이 수식이나 텍스트의 매개변수 주위에 원을 삽입하려면 어떻게 해야 합니까? 여기에 이미지 설명을 입력하세요

답변1

댓글에 링크된 모든 답변은 라이브러리 tikzmarknode에 추가되기 전에 작성되었습니다 tikzmark. 이 추가 기능을 사용하면 이와 같은 것을 얻는 것이 특히 간단합니다.

\documentclass{article}
\usepackage{amsmath,amssymb}
\usepackage{tikz}
\usetikzlibrary{tikzmark}
\begin{document}
\[\mathrm{i}\int\!\mathrm{d}t\,\mathrm{d}\theta\,\mathrm{d}\bar\theta\,
\tikzmarknode[circle,draw,dashed,inner sep=2pt]{tc}{\dfrac{\theta\bar\theta}{\hbar}}
\left(L[\Phi]+\mathbb{J}\right)\]
\end{document}

여기에 이미지 설명을 입력하세요

물론 를 사용하면 훨씬 더 많은 일을 할 수 있습니다 tikzmarknode.

\documentclass[fleqn]{article}
\usepackage{amsmath,amssymb}
\usepackage{tikz}
\usetikzlibrary{tikzmark}
\tikzset{dashed circle/.style={circle,draw,dashed,inner sep=2pt}}
\begin{document}
The conventional \dots
\begin{equation}\label{eq:conventional}
 \mathcal{Z}[\mathbb{J}]=\exp\left[\mathrm{i}\int\!\mathrm{d}t\,\mathrm{d}\theta\,\mathrm{d}\bar\theta\,
 \tikzmarknode[dashed circle]{11}{1}
 \left(L[\Phi]+\mathbb{J}\right)\right]\;.
\end{equation}
The modified \dots
\begin{equation}
 \mathcal{Z}'[\mathbb{J}]=\exp\left[\mathrm{i}\int\!\mathrm{d}t\,\mathrm{d}\theta\,\mathrm{d}\bar\theta\,
 \tikzmarknode[dashed circle]{tc1}{\dfrac{\theta\bar\theta}{\hbar}}
 \left(L[\Phi]+\mathbb{J}\right)\right]\;.\label{eq:Z'}
\end{equation}
\eqref{eq:conventional} except that $\tikzmarknode[dashed circle]{12}{1}$ got replaced by 
$\tikzmarknode[dashed circle]{tc2}{\dfrac{\theta\bar\theta}{\hbar}}$ in \eqref{eq:Z'}.
\begin{tikzpicture}[overlay,remember picture]
\draw[red,latex-latex,thick] (tc1) to[bend left=10] (tc2);
\end{tikzpicture}
\end{document}

여기에 이미지 설명을 입력하세요

관련 정보