答案1
\kern
只需使用和\raisebox
与单位的“适当”组合,em
并ex
根据当前应用的字体大小进行缩放。
的字距调整-0.2em
将缩小 和 的水平距离.
,/
而 则将根据 的值\raisebox
提高或降低。用于垂直提升和水平移动。.
ex
em
调整值以适合最佳个人品味 - 给定的值只是“任意”的值。
\documentclass{article}
\usepackage{textcomp}
\newcommand{\textdis}{\raisebox{1.2ex}{.}\kern-0.2em/\kern-0.2em\raisebox{-0.5ex}{.}}
\begin{document}
\textdis
{\large \textdis}
{\Large \textdis}
{\LARGE \textdis}
{\huge \textdis}
{\Huge \textdis}
Normal \textdiscount
And now bold:
\bfseries
\textdis
{\large \textdis}
{\Large \textdis}
{\LARGE \textdis}
{\huge \textdis}
{\Huge \textdis}
\end{document}