有没有一种免费的小包方法可以在 pdflatex 和 LaTeX 中实现这样的功能?
我希望的结果
\documentclass{article}
\begin{document}
`It's a nice day!'
\end{document}
成为
今天天气很好
我知道由于引号内有一个撇号可能会弄乱东西,所以我很乐意使用函数或宏(比如\apos
)来插入它。
我知道我想要的撇号的 Unicode 值为 39,因此在标准 ASCII 实现中也是如此。“U+0027 '撇号 (HTML: '
'
) 打字机撇号。”
答案1
这是一个相当不寻常的惯例,但如果你想要它那么:
\documentclass{article}
\usepackage{textcomp}
\begin{document}
`It\textquotesingle s a nice day!'
\end{document}
答案2
David 的回答更可取,但如果您不想加载任何包来处理它,这里还有另一种选择。
\documentclass{article}
\begin{document}
`It\textsc{\char13}s a nice day!'
\end{document}