In my slides, I like to encircle quantities that I think the audience should pay attention to. So far I've been using node from tikzpicture, styling it with rounded corners so it looks "soft". I was wondering, is there a way to make these circles even more natural looking? For instance, if you had a tablet and made such a circle by hand, it has the look of a circle-ish figure drawn with a paintbrush (since the edges aren't uniform throughout), and also, the shape is slightly oval, and not a perfect rounded rectangle like we get using rounded corners. Example:
I really like that look and was wondering if there's a way to get that.
Here's my MWE, doing the simple thing I described above. I'd be grateful for any pointers to my question.
\documentclass{beamer}
\mode<presentation>
{
\usetheme{default} % or try Darmstadt, Madrid, Warsaw, ...
\usecolortheme{rose} % or try albatross, beaver, crane, ...
\usefonttheme{default} % or try serif, structurebold, ...
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{caption}[numbered]
}
\usepackage{collcell} %pdflatex.exe hangs without this one
\usepackage[customcolors,beamer]{hf-tikz} %for beautiful inline highlighted math. Thanks Claudio!
\AtBeginSection[]{
\begin{frame}
\vfill
\centering
\begin{beamercolorbox}[sep=8pt,center,shadow=true,rounded=true]{title}
\usebeamerfont{title}\insertsectionhead\par%
\end{beamercolorbox}
\vfill
\end{frame}
}
\newcommand\fiteq[1]{%
\sbox{\mybox}{$\displaystyle#1$}%
\ifdim\wd\mybox>.85\textwidth\resizebox{.85\textwidth}{!}{\usebox{\mybox}}%
\else\usebox{\mybox}\fi%
}
\usepackage[export]{adjustbox} %pdflatex.exe hangs without this one
\usepackage[skins]{tcolorbox}
\tcbuselibrary{theorems}
\usetikzlibrary{tikzmark, calc,decorations.pathmorphing,decorations.pathreplacing, patterns}
\usetikzlibrary{arrows.meta, positioning, quotes}
\usetikzlibrary{shapes.multipart}
\usetikzlibrary{matrix,overlay-beamer-styles}
\newtcbtheorem[]{mylemmma}{Lemma}{colframe=green,colback=white, width=\textwidth, left=0pt}{lem}
\tcbset{colframe=green, colback=white}
\resetcounteronoverlays{tcb@cnt@mylemmma}
\newcommand{\inprod}[2]{\left\langle#1, #2\right\rangle}
\newcommand{\1}{\mathbf{1}}
%% start1
\begin{document}
\begin{frame}[t]
\frametitle{my title}
\pause
\vspace{3mm}
\tikzmarknode{mypx}{f}
\begin{tikzpicture}[remember picture,overlay,
tagPx/.style = {
rounded corners,
draw = blue,
thick,
fill= white,
inner ysep=2pt,
inner xsep=1pt,
align = center
},
tagPxThm/.style = {
inner ysep=2pt,
inner xsep=1pt,
align = center
},]
\node [minimum width=0pt, style = tagPx] (phi) at ([xshift = 2cm, yshift=-1 cm]mypx) {$\scriptstyle(x+y)^2 = x^2 + y^2 + 2xy$};
\draw [stealth-,out=260,in=170] (mypx) to (phi.west);%%%%%
\end{tikzpicture}
\vspace{5mm}
\end{frame}
\end{document}

