梅威瑟:
\documentclass{article}
\usepackage{amsmath,amsfonts,amssymb,amsthm}
\begin{document}
\begin{gather*}
y=3x-6 --- {1}\\
y=-x+5 --- {2}\\
\end{gather*}
\end{document}
图片:
如何将这三个破折号连接起来?
我尝试过\rule
,\line
但他们只给我一条与文本底部对齐的线。
答案1
如果你想要规则:
\documentclass{article}
\usepackage{amsmath,amsfonts,amssymb,amsthm}
\begin{document}
\begin{gather*}
y=3x-6 \mathrel{\vcenter{\hbox{\rule{2cm}{1pt}}}} {1}\\
y=-x+5 \mathrel{\vcenter{\hbox{\rule{2cm}{1pt}}}} {2}\\
\end{gather*}
\end{document}
根据规则的长度,您可以更改尺寸或简单地使用\text{---}
..