将数学模式中的方程式与逐项列出的项目符号对齐

将数学模式中的方程式与逐项列出的项目符号对齐

我想将数学模式中的方程式与项目符号垂直对齐。

\documentclass{article}
\begin{document}
\begin{itemize}
\item $$\tan(x+y) = \frac{\tan x + \tan y}{1-\tan x \tan y}$$
\item $$\tan(x-y) = \frac{\tan x - \tan y}{1+\tan x \tan y}$$
\end{itemize}
\end{document}

在此处输入图片描述 如您所见,公式与要点并不完全对齐。我不想将公式置于内联模式。

答案1

在显示样式中使用内联数学:

在此处输入图片描述

\documentclass{article}
\begin{document}
\begin{itemize}
\item $\displaystyle \tan(x+y) = \frac{\tan x + \tan y}{1-\tan x \tan y}$
\item $\displaystyle \tan(x-y) = \frac{\tan x - \tan y}{1- +\tan x \tan y}$
\end{itemize}
\end{document}

答案2

我添加了我的选项以使项目符号与公式和文本对齐。

\documentclass[12pt]{article}
\usepackage{mathtools}
\begin{document}
\begin{itemize}
    \item{$\tan(x+y) = \dfrac{\tan x + \tan y}{1-\tan x \tan y};$\quad } this is the first formula.
    \item{$\tan(x-y) = \dfrac{\tan x - \tan y}{1 +\tan x \tan y};$\quad } this is the second formula.
\end{itemize}
\end{document}

在此处输入图片描述

答案3

这使用 flalign 在左侧包含一个假项目。&&\hspace{\labelwidth}右侧的有助于平衡方程式。

\documentclass{article}
\usepackage{amsmath}
\usepackage{showframe}% MWE only
\newcommand{\fakeitem}{\makebox[\labelwidth][r]{\textbullet}}
\begin{document}
\begin{flalign*}
\fakeitem && \tan(x+y) &= \frac{\tan x + \tan y}{1-\tan x \tan y} &&\hspace{\labelwidth}\\[\itemsep]
\fakeitem && \tan(x-y) &= \frac{\tan x - \tan y}{1+\tan x \tan y}
\end{flalign*}
\end{document}

演示

相关内容