答案1
和stackengine
:
\documentclass[]{article}
\usepackage{stackengine}
\newcommand\dhookrightarrow{\mathrel{%
\ensurestackMath{\stackanchor[.1ex]{\hookrightarrow}{\hookrightarrow}}
}}
\begin{document}
$a \dhookrightarrow b$
\end{document}
如果您需要跨數學風格:
\documentclass[]{article}
\usepackage{stackengine,scalerel}
\newcommand\dhookrightarrow{\mathrel{\ThisStyle{\abovebaseline[-.6\LMex]{%
\ensurestackMath{\stackanchor[.15\LMex]{\SavedStyle\hookrightarrow}{%
\SavedStyle\hookrightarrow}}}}}}
\begin{document}
$a \dhookrightarrow b$\par
$\scriptstyle a \dhookrightarrow b$\par
$\scriptscriptstyle a \dhookrightarrow b$\par
\end{document}
答案2
我想你所追求的命令是\hookrightarrow
.你可以找到這裡諸如此類的問題的答案。
答案3
我猜你想要兩個箭頭一個在另一個之上。
\documentclass{article}
\usepackage{amsmath}
\makeatletter
\newcommand{\compemb}{\mathrel{\mathpalette\comp@emb\relax}}
\newcommand{\comp@emb}[2]{%
\vcenter{%
\offinterlineskip\m@th
\ialign{$#1##$\cr\hookrightarrow\cr\noalign{\vskip1pt}\hookrightarrow\cr}%
}%
}
\makeatother
\begin{document}
\[
A\compemb X
\]
\end{document}
這也按下標和上標縮放。
答案4
我認為如果箭頭的頭小一點看起來會更好,就像那些old-arrows
包裹。
\documentclass{article}
\usepackage{amsmath}
\usepackage[old]{old-arrows}
\newlength{\hookwidth}
\newlength{\hookheight}
\settowidth{\hookwidth}{$\varhookrightarrow$}
\settoheight{\hookheight}{$\varhookrightarrow$}
\newcommand{\compemb}{%
\mathrel{%
\raisebox{-.35\hookheight}{$\varhookrightarrow$}\hspace*{-\hookwidth}%
\raisebox{ .55\hookheight}{$\varhookrightarrow$}%
}%
}
\begin{document}
\(A \compemb X\)
\end{document}
old-arrows
使用該選項載入old
不會影響 定義的命令amsmath
,因為 引入的命令old-arrows
都是用\var
該選項的前綴定義的。