答案1
答案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}