如何用方框来框住内联文本?

如何用方框来框住内联文本?

我正在尝试构建一个像这样的内联文本:

在此处输入图片描述

以上文字摘自 Kristopher Tapp 所著的《曲线和曲面的微分几何》一书。

根据一些用户的要求,需要编辑一些代码:

\documentclass{article}

\usepackage{amsmath}
\usepackage{amsthm}

\theoremstyle{plain}
\newtheorem{theorem}{Theorem}[section]

\begin{document}

\begin{theorem}
    Bla bla bla.
\end{theorem}

\begin{proof}
    Bla bla bla bla.

    (1) \(\implies\) (2) Bla bla bla.
\end{proof}

\end{document}

答案1

像这样:

在此处输入图片描述

代码:

\documentclass{article}

\usepackage{amsmath}
\usepackage{amsthm}

\theoremstyle{plain}
\newtheorem{theorem}{Theorem}[section]

\begin{document}
    
    \begin{theorem}
        Bla bla bla.
    \end{theorem}
    
    \begin{proof}
        Bla bla bla bla.
        
        \fbox{(1) \(\implies (2)\)} Bla bla bla.
    \end{proof}
    
\end{document}

相关内容