使用 ShareLaTex,当我输入以下行:
. . . range of \textquoteleft interpretive tendencies\textquoteright or adjacent . . .
返回的结果是:
...一系列的“解释倾向”或相邻的...
我需要在哪里显示它:
...倾向’或相邻的...
' 和“或”之间有空格。我应该在这里使用不同的命令吗?还是我做错了什么?
答案1
默认情况下,LaTeX 会吞噬任何命令后的所有空格。因此,这里有三个解决方案:
\
在右引号后使用after\textquoteright
后跟空格添加强制空格。- 只需使用
'
而不是\textquoteright
。 - 使用包
\xspace
中的命令xspace
获取聪明的空格。
请参阅下面的解决方案:
\documentclass{article}
\usepackage{xspace}
\begin{document}
\textquoteleft interpretive tendencies\textquoteright\ or adjacent
`interpretive tendencies' or adjacent
\textquoteleft interpretive tendencies\textquoteright\xspace or adjacent
\end{document}