我使用自己创建的环境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}
所以你真正想问的是如何将一个方程式置于比对的中间。这可以通过将额外的方程式放在命令\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}