我该如何将我的整个方程式/计算集向左移动,以与“示例”对齐?
\documentclass[11pt,a4paper]{report}
\usepackage{amsmath,amsfonts,amssymb,amsthm,epsfig,epstopdf,titling,url,array}
\usepackage{parskip}
\theoremstyle{plain}
\newtheorem{thm}{Theorem}[chapter] % reset theorem numbering for each chapter
\newtheorem{lem}[thm]{Lemma}
\newtheorem{prop}[thm]{Proposition}
\newtheorem*{cor}{Corollary}
\theoremstyle{definition}
\newtheorem{defn}[thm]{Definition} % definition numbers are dependent on theorem numbers
\newtheorem{exmp}[thm]{Example} % same for example numbers
\newtheorem{conj}[thm]{Conjecture}
\theoremstyle{remark}
\newtheorem*{rem}{Remark}
\newtheorem*{note}{Note}
\title{My Thesis Title}
\author{My Name}
\date{\today}
\renewcommand\labelenumi{(\theenumi)}
\renewcommand\theenumi{\roman{enumi}}
\setlength{\parindent}{1em}
\begin{document}
\chapter{Addition}
\begin{exmp}
Here is an example.
\begin{align} \nonumber
(a+b)^3 &= (a+b)^2(a+b)\\ \nonumber
&=(a^2+2ab+b^2)(a+b)\\ \nonumber
&=(a^3+2a^2b+ab^2) + (a^2b+2ab^2+b^3)\\ \nonumber
&=a^3+3a^2b+3ab^2+b^3 \nonumber
\end{align}
\end{exmp}
\end{document}
答案1
更改此行:
\usepackage{amsmath,amsfonts,amssymb,amsthm,epsfig,epstopdf,titling,url,array}
对于这些:
\usepackage[fleqn]{amsmath}
\setlength{\mathindent}{0pt}
\usepackage{amsfonts,amssymb,amsthm,epsfig,epstopdf,titling,url,array}
严格来说,当 fleqn 选项生效时,
amsmath
包并不使用来控制显示方程的左缩进:而是使用内部参数。但是,为了与现有的 LaTeX 文档兼容,变成的别名。这里有一个小风险:在普通的 LaTeX 实现中, 是一个 dimen 寄存器,但与 amsmath是一个跳过寄存器,并且, 也是。如果任何包或文档类以依赖于它作为 dimen 寄存器的方式使用,则当与包结合使用时,它可能容易受到与原始 TeX 查找加号或减号关键字有关的众所周知的陷阱。但是,如果使用标准 LaTeX 命令和来修改,则不会出现这个问题。\mathindent
\@mathmargin
amsmath
\mathindent
\@mathmargin
\mathindent
\@mathmargin
\mathindent
\mathindent
amsmath
\setlength
\addtolength
\mathindent
以上内容可在以下网址找到关于 amsmath 包的技术说明。