这是我的代码:
\begin{align*}
\le \left|\frac{(0,128568071\ \mathrm{\frac{W}{mK}})^2\cdot (0,003686\ \mathrm{m})^2+(0,2709520216\ \mathrm{\frac{W}{mK}})^2\cdot (6,348\cdot 3,686)10^{-3}\ \mathrm{m}}{0,128568071\ \mathrm{\frac{W}{mK}}\cdot 6,348\cdot 10^{-3}\ \mathrm{m}+0,2709520216\ \mathrm{\frac{W}{mK}}\cdot 3,686\ \cdot 10^{-3}\ \mathrm{m}}\cdot 0,004667699579\ \mathrm{\frac{W}{mK}}\right|
\end{align*}
它看起来像这样
我怎样才能将方程式分成两列,以便整个方程式填满纸面?我取方程式的绝对值,这让拆分变得更加困难。
答案1
我建议这样做,它依赖于siunitx
、\medmath
命令、来自nccmath
和splitfrac
来自 的命令mathtools
:
\documentclass{article}
\usepackage[utf8]{inputenc}%
\usepackage{showframe}
\renewcommand{\ShowFrameLinethickness}{0.3pt}
\usepackage{mathtools, nccmath}
\usepackage{siunitx}
\DeclareSIUnit{\mK}{\milli\kelvin}
\begin{document}
\begin{align*}
\sisetup{per-mode = fraction, exponent-product = \cdot}
\le \left|{\medmath{\frac{\splitfrac{(\SI{0,128568071}{\W\per\mK})^2\cdot (\SI{0,003686}{\m})^2}{+(\SI{0,2709520216}{\W\per\mK})^2\cdot (6,348\cdot 3,686)\SI{e-3}{\m}}}{\splitfrac{\SI{0,128568071}{\W\per\mK}\cdot \SI{6,348 e-3}{\m}}{+\SI{0,2709520216}{\W\per\mK}\cdot \SI{3,686e-3}{\m}}}\cdot \SI{0,004667699579}{\W\per\mK}}}\right|
\end{align*}
\end{document}