我怎样才能在 LateX 中的方程式下的图中添加类似的解释?
答案1
像这样吗?
\documentclass{article}
\usepackage{amsmath} % for "align*" environment
\begin{document}
\[ \text{(main equation here)} \]
\begin{align*}
\text{where:}\quad
K &= \text{conveyance for subdivision}\\
n &= \text{Manning's roughness coefficient for subdivision}\\
A &= \text{flow area for subdivision}\\
R &= \text{hydraulic radius for subdivision (area\slash wetted perimeter)}
\end{align*}
\end{document}
附录:如果符号右侧的文本=
很长,则可能会出现行溢出。如果是这种情况,您可以使用\parbox[t]{5cm}{...}
而不是\text{...}
说明,其中5cm
是所需文本框宽度的替代值。我建议将材料设置为窄宽度文本框,\RaggedRight
而不是完全对齐(这是默认设置);如果文本框很窄,后者会产生较大的单词间间隙。
\documentclass{article}
\usepackage{amsmath} % for "align*" environment
\usepackage{ragged2e} % for "\RaggedRight" macro
\begin{document}
\[ \text{(main equation here)} \]
\begin{align*}
\text{where:}\quad
K &= \text{conveyance for subdivision}\\
n &= \parbox[t]{5cm}{\RaggedRight Manning's roughness coefficient for subdivision}\\
A &= \text{flow area for subdivision}\\
R &= \parbox[t]{5cm}{\RaggedRight hydraulic radius for subdivision (area\slash wetted perimeter)}
\end{align*}
\end{document}