我想写一个更宽的\Downarrow
,我在我知道的任何包中都找不到,所以我尝试了:
\documentclass[11pt,a4paper]{book}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\Big\Downarrow
%\Large\Downarrow
\end{equation}
\end{document}
但似乎它只会变得更长,我想要它更宽:我该怎么做?
编辑:为了更清楚,我添加了一张图片:
左边是我拥有的,右边是我想要的。
答案1
这是一种实现此目的的方法,同时还能保证符号周围的正确间距:
\documentclass[a4paper,12pt]{article}
\usepackage{graphicx}
\usepackage{relsize}
\newcommand\wideDownarrow{\mathrel{\scalebox{1.2}[1]{$\Downarrow$}}}
\begin{document}
\[ A\Downarrow B \wideDownarrow C \]
\end{document}
答案2
\scalebox
根据比例缩放 --> 可能不需要\resizebox
使用宽度和高度信息->可能产生失真。
\documentclass[11pt,a4paper]{book}
\usepackage{amsmath}
\usepackage{graphicx}%
\begin{document}
\begin{equation}
\Big\Downarrow % No?
\scalebox{1.5}{$\Downarrow$} % No!
\resizebox{0.05\textwidth}{11pt}{$\Downarrow$} % perhaps?
\resizebox{0.2\textwidth}{11pt}{$\Downarrow$} % weird!
\end{equation}
\end{document}