我很难做这种格式。有人知道怎么做吗?如果有人知道的话,那将是一个很大的帮助。非常感谢。
这是我做的:
\documentclass{article}
\begin{document}
\begin{equation}
\begin{split}
\lambda_{N} &= \ln N \text{{\itshape NBIC/SC} \citep{t}}\\
\lambda_{N} &= 2 \text{{\itshape AIC} \citep{a}}\\
\lambda_{N} &= 1 +\ln N \text{{\itshape CAIC} \citep{e}}\\
\lambda_{N} &= 2 \ln\ln N \text{{\itshape HQIC} \citep{o}}.
\end{split}
\end{equation}
\end{document}
这就是显示的..
答案1
您可以使用aligned
:
\documentclass{article}
\usepackage{amsmath,natbib}
\begin{document}
\begin{equation}
\begin{aligned}
\lambda_{N} &= \ln N && \text{{\itshape NBIC/SC} \citep{t}}\\
\lambda_{N} &= 2 && \text{{\itshape AIC} \citep{a}}\\
\lambda_{N} &= 1 +\ln N && \text{{\itshape CAIC} \citep{e}}\\
\lambda_{N} &= 2 \ln N && \text{{\itshape HQIC} \citep{o}}
\end{aligned}
\end{equation}
\end{document}