如何在字母上显示宽条?

如何在字母上显示宽条?

我想显示宽条,XY但它只显示小条。有什么想法吗? 在此处输入图片描述

\item In the standard $(x,y)$ coordinate plane, point $X$ has coordinates $(-4,0)$ and point $Y$ has coordinates $(0,-8)$. What is the coordinates of the midpoint of $\bar{XY}$?\hfill
    \begin{enumerate}
    \item $(-6,-1)$     
    \item $(-2,-4)$ 
    \item $(0,2)$ 
    \item $(2,4)$ 
    \item $(6,-1)$          
    \end{enumerate} 

答案1

要获得上划线,好吧,只需使用\overlineTeX 原语!

\overline{XY}

你可能想添加一些语义。例如,定义一个宏

\newcommand*\midpoint[1]{\overline{#1}}

并使用

\midpoint{XY}

或类似的东西。

相关内容