답변1
다음에서 기호를 사용하려는 것 같습니다.수학일반 텍스트가 아닌 모드.
\documentclass{article}
\usepackage{newpxtext,newpxmath}
\usepackage{amsmath}
\newcommand{\Zstroke}{%
\text{\ooalign{\hidewidth\raisebox{0.2ex}{--}\hidewidth\cr$Z$\cr}}%
}
\newcommand{\zstroke}{%
\text{\ooalign{\hidewidth -\kern-.3em-\hidewidth\cr$z$\cr}}%
}
\begin{document}
\begin{equation*}
P(M_{i})=
\frac{\Zstroke^{\Zstroke+1}}{\Gamma(\Zstroke+1)}
\frac{M_{i}^{\Zstroke-1}}{M_{n}^{\Zstroke}}
\exp\Bigl(-\frac{\Zstroke M_{i}}{M_{n}}\Bigr)
\end{equation*}
\begin{equation*}
P(M_{i})=
\frac{\zstroke^{\zstroke+1}}{\Gamma(\zstroke+1)}
\frac{M_{i}^{\zstroke-1}}{M_{n}^{\zstroke}}
\exp\Bigl(-\frac{\zstroke M_{i}}{M_{n}}\Bigr)
\end{equation*}
\end{document}
답변2
한 가지 방법은 선과 z를 병합하여 자신만의 기호를 만드는 것입니다.
암호:
\documentclass[12pt,a4paper]{standalone}
\newcommand*{\xdash}[1][3em]{\rule[0.5ex]{#1}{0.55pt}}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\newcommand{\sZ}{\ensuremath{\scalebox{.86}{Z}
\kern-.41em\raisebox{.07em}{$\xdash[.3em]$}}}
\newcommand{\sz}{\ensuremath{\scalebox{.86}{z}
\kern-.3em\raisebox{-.045em}{$\xdash[.2em]$}}}
\begin{document}
~\sZ~\sz~
\end{document}
수확량: