我刚刚完成了我的第一个 LaTex 文档。我喜欢这个程序和排版,但有一件事让我很恼火,那就是必须使用独特的标签来引用方程式。有没有办法通过将方程式直接链接到 LaTex 分配给它的方程式编号来引用方程式?我一直在使用 MS Word 中的 MathType,它就是这样做的。我正在使用 TexStudio。
答案1
欢迎来到 TeX.SE。这个 MWE 是否响应了您的请求?\label{eq:Pythagoras}
用于为方程式命名。\eqref{eq:Pythagoras}
是方程式的参考。
\documentclass[a4paper,12pt]{article}
\usepackage{amsmath}
\begin{document}
This is my first equation
\begin{equation}\label{eq:Pythagoras}
a^2=b^2+c^2
\end{equation}
with the reference~\eqref{eq:Pythagoras}.
\end{document}