如何打印——在 Latex 中

如何打印——在 Latex 中

如何--在Latex中输出。我直接用的时候只会显示一个-。我在前面加了音译字符,但是都报错。

当我把它放到数学环境中时,它就变成了lscpu − −extend

谢谢

答案1

\documentclass{article}
% https://tex.stackexchange.com/questions/621751

\begin{document}

\Huge
\begin{itemize}
    \item -- (\texttt{-\,-}) % You do not want that.
    \item -\,- (\texttt{-\textbackslash,-}) % Maybe better.
    \item -\kern 0pt- (\texttt{-\textbackslash kern 0pt-}) % Maybe better.
\end{itemize}
% See also https://tex.stackexchange.com/questions/74353
% and https://tex.stackexchange.com/questions/53413.

\end{document}

在此处输入图片描述


更新:我发现了一个相关的问题:如何防止 LaTeX 创建 en-dash 和 em-dash?。特别是Werner的回答似乎很适合你的情况。

在此处输入图片描述

相关内容