如何缩小`*`和汉字之间的距离

2019-12-03 16:39发布

在文章中想实现以下MWE的效果 ``` \documentclass{ctexart} \begin{document} 弱\hspace{-.1ex}*\hspace{-.1ex}收敛 \end{...

在文章中想实现以下MWE的效果 ``` \documentclass{ctexart} \begin{document} 弱\hspace{-.1ex}*\hspace{-.1ex}收敛 \end{document} ``` ![image.png](https://i.loli.net/2019/12/03/M3STNHnLqaZtcj4.png) 但是使用简单的 ``` \documentclass{ctexart} \begin{document} 弱*收敛 \end{document} ``` 只能实现以下效果 ![image.png](https://i.loli.net/2019/12/03/LcK13ngBYvHhdXU.png) 请问有没有什么设置方式可以代替手动调整?
3条回答
论坛 github.com/C
2019-12-03 17:05
使用 `\normalspacedchars` 比直接修改 `CJKecglue` 更好一些。 ```tex \documentclass{ctexart} \normalspacedchars{`*} \begin{document} 弱*收敛abc中文 \end{document} ``` 参考 `texdoc xecjk`,sec. 3.4。

一周热门 更多>