我有以下等式:
\documentclass{report}
\begin{document}
\begin{equation}
T_e=\frac{T_{disch}\cdot e^{\frac{T_{ahe}-T_{disch}}{LMTD}}-T_{ahe}}{e^{\frac{T_{ahe}-T_{disch}}{LMTD}}-1}
\end{equation}
\end{document}
我认为它看起来很糟糕,主要是因为分子和分母的分数太高。像这样的等式应该如何编码?
斜体/罗马字体的规则是什么?T
s 不应该是罗马字体吗?
答案1
当设置分数时,我会放弃幂并使用\exp
。
\documentclass{report}
\def\LMTD{\mathrm{LMTD}}
\def\disch{\mathrm{disch}}
\def\ahe{\mathrm{ahe}}
\begin{document}
\begin{equation}
T_e=\frac{T_{\disch}\cdot \exp\big(\frac{T_{\ahe}-T_{\disch}}{\LMTD}\big)-T_{\ahe}}%
{\exp\big(\frac{T_{\ahe}-T_{\disch}}{\LMTD}\big)-1}
\end{equation}
\end{document}
如果你想让它在\displaystyle
...
\documentclass{report}
\def\LMTD{\mathrm{LMTD}}
\def\disch{\mathrm{disch}}
\def\ahe{\mathrm{ahe}}
\def\mydfrac{\displaystyle\frac}
\begin{document}
\begin{equation}
T_e=\frac{T_{\disch}\cdot \exp\bigg(\mydfrac{T_{\ahe}-T_{\disch}}{\LMTD}\bigg)-T_{\ahe}}%
{\exp\bigg(\mydfrac{T_{\ahe}-T_{\disch}}{\LMTD}\bigg)-1}
\end{equation}
\end{document}
答案2
从你的帖子中看不出你想要什么。为什么 T 应该是直立的?它有特殊含义吗?一般来说,你应该输入这样的文本 ( \text{}
)。
您应该将常用术语包装在新命令中。这样,如果您不喜欢您的第一个决定,您可以稍后更改。例如,我认为 LMTD 是一些首字母缩略词,并将其设置为文本。如果不是,或者如果您想更改一些字距或类似内容,您可以在我的命令中调整它\LMTD
。
如果你觉得你的公式看起来不好或难以阅读,你应该重写它。我在 MWE 的第二部分中提出了一些建议。
% arara: pdflatex
\documentclass{report}
\usepackage{mathtools}
\newcommand*{\e}{\mathrm{e}} % supposing, this is the number e
\newcommand*{\di}{\text{disch}} % if you use these often. supposing these three are words or acronyms
\newcommand*{\ah}{\text{ahe}}
\newcommand*{\LMTD}{\mathrm{LMTD}}
\begin{document}
\begin{equation}
T_\e=\frac{T_{\di}\cdot \e^{\frac{T_{\ah}-T_{\di}}{\LMTD}}-T_{\ah}}{\e^{\frac{T_{\ah}-T_{\di}}{\LMTD}}-1}
\end{equation}
\begin{align}
T_\e&=\frac{T_{\di}\cdot \e^{Z}-T_{\ah}}{\e^{Z}-1}
\shortintertext{where}
Z&=\frac{T_{\ah}-T_{\di}}{\LMTD}
\end{align}
\end{document}
答案3
您的问题很难回答,因为“看起来真的很糟糕”是一个非常私人的问题。
但是,如果您不知道或者没有尝试过,我建议您选择这个nicefrac
套餐。
\documentclass{report}
\usepackage{nicefrac}
\begin{document}
\begin{equation}
T_e=\frac{T_{disch}\cdot exp(\nicefrac{(T_{ahe}-T_{disch})}{LMTD})-T_{ahe}}{exp(\nicefrac{(T_{ahe}-T_{disch})}{LMTD})-1}
\end{equation}
\end{document}