创建替代 \textdiscount

创建替代 \textdiscount

我的目的是创造\textdiscount使用/\cdot(点)。你能帮助我吗?

======================================

摘自 Christian Hupfer 的解决方案

在此处输入图片描述

答案1

\kern只需使用和\raisebox与单位的“适当”组合,emex根据当前应用的字体大小进行缩放。

的字距调整-0.2em将缩小 和 的水平距离./而 则将根据 的值\raisebox提高或降低。用于垂直提升和水平移动。.exem

调整值以适合最佳个人品味 - 给定的值只是“任意”的值。

\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} 

在此处输入图片描述

相关内容