答案1
Henri Menke 的答案的修改版,做了一些调整(比 Mico 的更简单)。主要是项目之间的一些垂直空间,但根目录的索引也略有升高。
\documentclass{article}
\usepackage{amsmath,booktabs}
\usepackage{newtxtext,newtxmath} % optional, just for full emulation
\begin{document}
The direct and inverse operations are summarized as follows:
\begin{equation}
\begin{tabular}{ @{} r l @{\qquad} r l @{} }
(a) & addition & (a$'$) & subtraction \\
& $a+b=c$ & & $b=c-a$ \\
\addlinespace
(b) & multiplication & (b$'$) & division \\
& $ab=c$ & & $b=c/a$ \\
\addlinespace
(c) & power & (c$'$) & root \\
& $b^a=c$ & & $b=\sqrt[\uproot3 a]{c}$ \\
\addlinespace
(d) & power & (d$'$) & logarithm \\
& $a^b=c$ & & $b=\log_{a} c$
\end{tabular}
\end{equation}
Now here is the idea. These relationships…
\end{document}
答案2
我只需使用array
并手动对项目进行编号。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\begin{array}{rl@{\hspace{3em}}rl}
\text{(a)} & \text{addition} & \text{(a')} & \text{subtraction} \\
& a + b = c & & b = c -a \\
\text{(b)} & \text{multiplication} & \text{(b')} & \text{division} \\
& ab = c & & b = c/a \\
\text{(c)} & \text{power} & \text{(c')} & \text{root} \\
& b^a = c & & b = \sqrt[a]{c} \\
\text{(d)} & \text{power} & \text{(d')} & \text{logarithm} \\
& a^b = c & & b = \log_a c \\
\end{array}
\end{equation}
\end{document}
您还可以tabular
在方程式中使用,如评论中所建议的那样。然后您只需在中包含公式即可$...$
。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\begin{tabular}{rl@{\hspace{3em}}rl}
(a) & addition & (a') & subtraction \\
& $a + b = c$ & & $b = c -a$ \\
(b) & multiplication & (b') & division \\
& $ab = c$ & & $b = c/a$ \\
(c) & power & (c') & root \\
& $b^a = c$ & & $b = \sqrt[a]{c}$ \\
(d) & power & (d') & logarithm \\
& $a^b = c$ & & $b = \log_a c$ \\
\end{tabular}
\end{equation}
\end{document}
答案3
这里的方法与Henri Menke 的回答,主要有以下两个区别:(a)我使用\textup
而不是\text
,以防止在类似定理的环境中排版方程的可能性(默认情况下以斜体呈现文本),以及(b)我在四个主要组之间插入额外的垂直空间。
我还建议使用$'$
来生成“素数”类型的重音符号而不是文本模式撇号,就像您发布的屏幕截图中所做的那样,并更明确地区分两个“幂”关系:我称一个为“多项式”,另一个为“指数”。
\documentclass{article}
\usepackage{amsmath,amsthm}
\newtheorem{definition}{Definition}
\usepackage{newtxtext,newtxmath} % optional: Times Roman font
\begin{document}
\begin{definition}
\begin{equation}
\begin{array}{@{} ll @{\hspace{1.5cm}} ll @{}}
\textup{(a)} & \textup{addition} & \textup{(a$'$)} & \textup{subtraction} \\
& a + b = c& & b = c-a \\[1ex]
\textup{(b)} & \textup{multiplication} & \textup{(b$'$)} & \textup{division}\\
& ab = c & & b = c/a \\[1ex]
\textup{(c)} & \textup{polynomial} & \textup{(c$'$)} & \textup{root} \\
& b^a = c & & b = \sqrt[\uproot{3}\leftroot{1}a]{c}\\[1ex]
\textup{(d)} & \textup{exponential} & \textup{(d$'$)} & \textup{logarithm} \\
& a^b = c & & b = \log_a c
\end{array}
\end{equation}
\end{definition}
\end{document}