在自己創建的環境中中心公式

在自己創建的環境中中心公式

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}它不起作用?

非常感謝 cya

答案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}

未對齊的輸出

所以你真正要問的是如何將一個方程式放在對齊的中間。這可以透過將額外的方程式放入\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}

在此輸入影像描述

相關內容