自分で作成した環境におけるセンターフォーミュラ

自分で作成した環境におけるセンターフォーミュラ

私は自分で作成したという環境を使用していますloesung。今、その環境に数式がありますが、その数式を中央揃えにしたいです。左揃えではなく、これが私のコードです:

%http://tex.stackexchange.com/questions/69043/center-formula-in-self-created-environment
\documentclass{book}

\usepackage[ngerman]{babel}
%\usepackage{geometry}
%\geometry{left=4cm,right=3cm, top=2cm, bottom=2cm} 
\usepackage{amsmath,amsthm}
\usepackage{mdframed}
\usepackage{xcolor}
\usepackage{hyperref}[2011/02/05]

\definecolor{cloesung}{rgb}{0.972,0.93725,0.85098}

\newtheoremstyle{mystyle2}
  {\topsep}{\topsep}{}{}%
  {\bfseries}{}{.5em}{}%

\newmdtheoremenv[hidealllines=true,
backgroundcolor=cloesung,skipabove=\topsep,
skipbelow=\topsep]{loesung}{L\"osung}

\begin{document}

\begin{loesung}\text{blafasel}\\
\begin{align*}
c &= a+b\\
\intertext{description} a+b \intertext{is ....}
d &= h+g
\end{align*}
\end{loesung}

\end{document}

私の問題は、数式を中央に配置する必要があるということです。どうすればこれができるでしょうか? 試してみましたが\centering\begin{center}うまくいきません。

ありがとうまたね

答え1

あなたの問題はあなたが自分で作り出した環境とは何の関係もありません。目撃者

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\hrule
\begin{align*}
  c &= a+b\\
  \intertext{description} 
  a+b 
  \intertext{is \dots}
  d &= h+g
\end{align*}
\hrule
\end{document}

非整列出力

つまり、あなたが本当に尋ねているのは、1 つの方程式を整列の中央に配置する方法です。これは、\intertext次のように、コマンド内の独自の数式環境内に追加の方程式を配置することで実現できます。

\begin{align*}
  c &= a+b\\
  \intertext{description \begin{equation*} a+b \end{equation*} is \dots}
  d &= h+g
\end{align*}

中央出力

サンプル環境に配置した場合、次のようになります。

サンプル出力

しかし、私は一般的にそのような大きく離れた配置を避け、あなたの例を次のように単純に書きます。

\begin{loesung}
  blafasel
  \begin{equation*}
c = a+b
\end{equation*}
description
\begin{equation*}
  a+b
\end{equation*}
is \dots
\begin{equation*}
d = h+g
\end{equation*}
\end{loesung}

よりシンプルな出力

答え2

あなたが望んでいるのはおそらくこれだと思います:

\begin{loesung}
\text{ }\\
\begin{align*}
c&=a+b\\
\intertext{description}
a+b\\ 
\intertext{is \dots}
d&=h+g
\end{align*}
\end{loesung}

ここに画像の説明を入力してください

関連情報