g****g 发帖数: 1828 | 1 In probability theory, the normal (or Gaussian) distribution, is a
continuous probability distribution that is often used as a first
approximation to describe real-valued random variables that tend to cluster
around a single mean value. The graph of the associated probability density
function is “bell”-shaped, and is known as the Gaussian function or bell
curve:[nb 1]
f(x) = \tfrac{1}{\sqrt{2\pi\sigma^2}}\; e^{ -\frac{(x-\mu)^2}{2\sigma^2}
},
where parameter μ is the mean (location of the pe... 阅读全帖 |
|
d**********o 发帖数: 1321 | 2 第一个项目report
这时偶刚到CSAC工作不久,与小A同学还不熟,我用的还是latex。随着贴的作业越来越
多,应该是用有共同爱好的小伙伴更亲密些。这次贴latex,下次才再org-mode。
\documentclass[b5paper,11pt, abstraction, titlepage]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{CJKutf8}
\usepackage{multirow}
\usepackage{multicol}
\usepackage{listings}
\usepackage{geometry}
\geometry{b5paper}
\usepackage{graphicx,floatrow}
\usepackage{graphicx,subfigure}
\newsavebox{\abstractbox}
\renewenvironment{abstract}
{\begin{lrbox}{0}\begin{minipage}{\t... 阅读全帖 |
|
d**********o 发帖数: 1321 | 3 第一个项目report
这时偶刚到CSAC工作不久,与小A同学还不熟,我用的还是latex。随着贴的作业越来越
多,应该是用有共同爱好的小伙伴更亲密些。这次贴latex,下次才再org-mode。
\documentclass[b5paper,11pt, abstraction, titlepage]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{CJKutf8}
\usepackage{multirow}
\usepackage{multicol}
\usepackage{listings}
\usepackage{geometry}
\geometry{b5paper}
\usepackage{graphicx,floatrow}
\usepackage{graphicx,subfigure}
\newsavebox{\abstractbox}
\renewenvironment{abstract}
{\begin{lrbox}{0}\begin{minipage}{\t... 阅读全帖 |
|
w**********i 发帖数: 24 | 4 \begin{figure}
\centering
\subfloat[][]{}
\qquad
\subfloat[][]{}
\caption
\label
\end{figure}
\begin{figure}
\ContinuedFloat
\centering
\subfloat[][]{}
\qquad
\subfloat[][]{}
\caption
\label
\end{figure} |
|
T*******n 发帖数: 493 | 5 Try this; use \quad instead of \qquad if you want half the space.
\documentclass{minimal}
\usepackage{amsmath}
\begin{document}
\begin{alignat}{2}
x&=a+b, & \qquad & \text{if $abc$} \\
y&=c+d+c, & & \text{if $abcde$}
\end{alignat}
\end{document} |
|
A**********e 发帖数: 3102 | 6 \text
you may need to control the alignment by using split, align, \qquad, \:, etc
. |
|
T*******n 发帖数: 493 | 7 \documentclass{minimal}
\usepackage{amsmath}
\begin{document}
\begin{subequations}
\begin{alignat}{2}
x&=a+b, & \qquad & \text{if $abc$} \\
y&=c+d+c, & & \text{if $abcde$}
\end{alignat}
\end{subequations}
\end{document} |
|
a****9 发帖数: 418 | 8 does this work for you?
\begin{equation}
\textrm{(Mass-energy equivalence)}\qquad E&=&mc^2
\label{eq:me}
\end{equation} |
|