我需要制作以下图像:
我\boxdot
在 ams 封装中找到了符号,但找不到任何虚线框。
答案1
这dashbox 包可以进行调整来做你想做的事情:
\documentclass{article}
\usepackage{dashbox}
\newcommand\emptydottedbox{%
\setlength{\dashlength}{1pt}% % length of dash + gap
\setlength{\dashdash}{0.5pt}% % length of dash
\setlength{\fboxrule}{0.5pt}% % width of line
\setlength{\fboxsep}{0pt}% % separation between box and inner content
\dbox{\ensuremath{\phantom{x}}}%
}
\begin{document}
\[
\int_{\emptydottedbox}^{\emptydottedbox} \emptydottedbox
\]
\end{document}
答案2
使用 tikz 你可以绘制这些框:
\documentclass{article}
\usepackage{tikz}
\newcommand{\smallbox}{\begin{tikzpicture}
\draw[thick,dotted] (0,0) rectangle
(0.3, 0.3);
\end{tikzpicture}
}
\newcommand{\medbox}{\begin{tikzpicture}
\draw[thick,dotted] (0,0) rectangle
(0.5, 0.5);
\end{tikzpicture}
}
\begin{document}
\[\int_{\smallbox}^{\smallbox} {\medbox} \]
\end{document}
也许您需要对尺寸和/或间距进行一些调整。