如何显示公式?

如何显示公式?

我对所有使用以下格式

\begin{math}
newP = p + vt + 0.5a(t square)
\end{math}

我如何

  • 从左对齐到居中对齐
  • 公式前后各留一行空白
  • 在符号之间留一个空格,
  • 同时对所有公式执行此操作

答案1

一个简单的例子,可以帮助你更快地学习。

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}
\begin{document}
The position of a moving particle along the $x$-axis is given by,
\[
x_t = x_0 + vt + \tfrac{1}{2}at^2
\]
where $x_0$ represents the initial position, \ldots.

The speed can be obtained by derivating the position with respect to $t$ as follows,
\begin{equation}
\frac{\textrm{d}x_t}{\textrm{d}t} = v + at
\end{equation}
\end{document}

评论:

  • 使用\[...\]\begin{equation*}...\end{equation*}显示未编号的方程式。
  • 用于\begin{equation}...\end{equation}显示编号的方程式。
  • 使用\begin{align*}...\end{align*}\[\begin{aligned}...\end{aligned}\]显示多行未编号的水平对齐方程式。
  • 用于\begin{align}...\end{align}显示多行编号的水平对齐方程式,或\begin{equation}\begin{aligned}...\end{aligned}\end{equation}显示多行水平对齐方程式但只有一个方程编号。

答案2

你需要数学align* 的包,因此请确保你\usepackage{amsmath}的序言(before \begin{document})中包含此行。

\begin{align*}
newP = p + vt + 1/2at^2
\end{align*}

相关内容