将 \textstyle 设置为单一制表环境

将 \textstyle 设置为单一制表环境

我有\tabbing一个\theorem环境中的环境。
我怎样才能在其中添加文本单身的 \tabbing直立而不是斜体? MWE:

\documentclass[a4paper,12pt,oneside]{article}
\usepackage{amsmath, amsthm, amssymb}

\newtheorem{theorem}{Theorem}

\begin{document}
    
\begin{theorem}
    Some italic text.
    \begin{tabbing}
        Some non-italic \=text\\
        where I \>can use tabbing.
    \end{tabbing}
\end{theorem}

\end{document}

答案1

您正在寻找的命令是\upshape\itshape。有关更多信息,系列/系列/形状区别的起源是什么?

正如我在评论中指出的那样范围,如果\upshape在进入环境之前有效tabbing,它将适用于 的所有行tabbing。如果它在 内调用tabbing,它将仅适用于其特定的范围,对于 来说tabbing,是单行。

\documentclass[a4paper,12pt,oneside]{article}
\usepackage{amsmath, amsthm, amssymb}

\newtheorem{theorem}{Theorem}

\begin{document}
    
\begin{theorem}
    Some italic text.
    \upshape\begin{tabbing}
        Some non-italic \=text\\
        where I \>can use tabbing.
    \end{tabbing}\itshape
    More text.
\end{theorem}
\end{document}

在此处输入图片描述

相关内容