(框架)环境空白处

(框架)环境空白处

这可能是一个初学者的问题,但仍然如此。考虑以下几点:

\usepackage{framed}
\usepackage{tikz}
\usepackage{listings}
...
\newcommand{\some}{\textcolor{red}{\lstinline{some}}}
\newcommand{\other}{\textcolor{blue}{\lstinline{other}}}
...
\begin{document}
....
\begin{framed}
  \some \other
\end{framed}
....
\end{document}

以下是其中的内容:在此处输入图片描述

some为什么源中有空格,而 和之间没有空格other?如何让它考虑输出中的空格?

相关内容