[Tex/LaTex] Dotted frame around the text

framed

I need to do a dotted frame, something this one: enter image description here

Is it possible to do?

Best Answer

You can use TikZ:

\documentclass{article}

\usepackage{tikz}

\begin{document}

    \begin{tikzpicture}
        \node[draw,dotted] {My text};
    \end{tikzpicture}

\end{document}

dotted

Zooming in your example picture reveals that you might wish a “dashed” instead of a “dotted” frame. In this case, just replace dotted with dashed:

dashed