tex で、複数行を書いたときに分数がつぶれないようにする。
displaystyle を使う。
例
first $\frac{1}{1+\sqrt{x}+\sqrt{y}}$
のかわりに、
second $\displaystyle \frac{1}{1+\sqrt{2}+\sqrt{3}}$
とする。
結果

上の段は分数がつぶれているが、下の段は分数がつぶれない。
雑記
投稿日:2020年11月6日 更新日:
tex で、複数行を書いたときに分数がつぶれないようにする。
displaystyle を使う。
first $\frac{1}{1+\sqrt{x}+\sqrt{y}}$
のかわりに、
second $\displaystyle \frac{1}{1+\sqrt{2}+\sqrt{3}}$
とする。
上の段は分数がつぶれているが、下の段は分数がつぶれない。
執筆者:seyanen
関連記事
文字色を RGB で指定する。例では、\definecolor で、「samplecolor」という色を定義して使っている。 例 \usepackage{xcolor}\begin{document} …
xcolor パッケージを使っておく。rowcolor で指定する。 例 \usepackage[table]{xcolor} \begin{document} \begin{table} \begi …
中央揃えにしたい列を、c で指定すればよい。その他は l (左)または r (右)揃えに指定する 例 \begin{table} \begin{tabular}{ |r|c|r|} \hline Ta …
2023/01/18
matplotlib のグラフ作成と gnuplot との対応 比較
2022/10/14
pythonで配列(リスト)の、ある要素がわかっているときにその次の要素を取得する方法。