有没有办法将打字机包的效果本地封装到环境中,例如按照建议Phelype Oleinik 的评论在一个相关问题(类似于\begin{typewriter}...\end{typewriter}
)?
大卫·卡莱尔提出了一些想法评论但这远远超出了我的能力范围……
如果需要的话,这里有一个非工作最小示例:
\documentclass{article}
\usepackage{typewriter}
\usepackage{verbatim}% For presentation purposes only.
\begin{document}
Some text with normal font, i.e. "typewriter mode" disabled (doesn't work in this example).
Some Math $ \frac{\sqrt{x}}{2} $
\verb!\begin{typewriter}!
Some text with the "typewriter mode" enabled.
Some Math $ \frac{\sqrt{x}}{2} $
\verb!\end{typewriter}!
\end{document}