我怎样才能写出这样的“定义”?

我怎样才能写出这样的“定义”?

在此处输入图片描述图片上的定理用粗体字写出来,我的意思是:定理 1.2(勾股定理)。我想用那种格式写定义。另外,最好用小写字母写。先谢谢了。

答案1

看看amsthm包。它允许你做类似的事情

\documentclass{article}

\usepackage{amsthm}

\newtheorem{defn}{Definition}

\begin{document}

    \begin{defn}[\scshape Definition]
        A definition is a definition.
    \end{defn}

\end{document}

如果要更改外观,您可以使用中的三个预定义定理样式之一amsthm,或者使用\newtheoremstyle创建自己的样式,如下所示:

\documentclass{article}

\usepackage{amsthm}
\usepackage[T1]{fontenc}

\newtheoremstyle{mijail}
    {3pt}
    {3pt}
    {\itshape}
    {}
    {\bfseries}
    {}
    {.5em}
    {\thmname{#1} \thmnumber{#2} \thmnote{(\scshape #3)}}

\theoremstyle{mijail}
\newtheorem{defn}{Definition}

\begin{document}

    \begin{defn}[Definition]
        A definition is a definition.
    \end{defn}

\end{document}

请注意,您的标准字体可能不包含粗体小型大写字母,因此使用\usepackage[T1]{fontenc}

相关内容