h*****r 发帖数: 1052 | 1 我希望部分公式左对齐,部分公式居中
如果我在开头加入fleqn,即
\documentclass[11pt,fleqn]{article}
所有的公式自动左对齐,想居中的对\begin{center}\end{center}无效
如果我开头不加fleqn的话
那所有的公式自动居中,我想左对齐的公式用flalign也无效
请大家帮忙看看这是怎么回事啊?
我用的模板如下,谢谢大家了!
\documentclass[11pt,fleqn]{article}
\title{Experiments of Variance Reduction for Financial Options}
\author{Na Sun}
\date{\today}
\usepackage[dvips]{graphics}
\usepackage{natbib}
\usepackage{graphicx}
\usepackage{float}
\usepackage{epsfig}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{booktabs}
\use |
|
T*******n 发帖数: 493 | 2 In most cases this should work.
\documentclass[fleqn]{...}
Or you can locate the file fleqn.clo and load it manually.
左? |
|
T*******n 发帖数: 493 | 3 Try "gather" instead of "align".
Default behavior of "gather" is to center each equation.
If you already use the "fleqn" document class and amsmath option,
"gather" will left-align each equation instead of centering them.
No & is needed or should be used.
If you have to use "align", try putting the & at the beginning of
each equation, not at the = sign. |
|
s******r 发帖数: 85 | 4 article里用fleqn就行,但是book里没用 |
|
g*********r 发帖数: 124 | 5 \usepackage[fleqn]{amsmath}
\makeatletter
\setlength{\@mathmargin}{1em}
\makeatother |
|
|
|
|
S**I 发帖数: 15689 | 9 \documentclass[fleqn]
\begin{equation}
\end{equation} |
|