📜  圆圈中的乳胶数字 - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:00.749000             🧑  作者: Mango

代码示例1
\documentclass{article}
\usepackage{tikz}
\newcommand*\circled[1]{\tikz[baseline=(char.base)]{
            \node[shape=circle,draw,inner sep=2pt] (char) {#1};}}
\begin{document}
Numbers aligned with the text:  \circled{1} \circled{2} \circled{3} end.
\end{document}