将句子对齐。就像 Word 中的标尺一样!

将句子对齐。就像 Word 中的标尺一样!

本质上,我希望能够将非粗体句子对齐。在 Word 中,我会使用标尺。就像您忽略所有下划线一样

正则系综:具有固定粒子数、体积和温度的系统。__________________(微正则集合具有固定的能量而不是温度!)

答案1

这里介绍两种方式:一种是用description环境+调整参数,一种是用linegoal包:

\documentclass[11pt]{article}
\usepackage{geometry}
\usepackage{calc}
\usepackage{linegoal}
\usepackage{enumitem}

\begin{document}

\sffamily
\begin{description}[font = \sffamily\bfseries, leftmargin=\widthof{\bfseries Canonical Ensemble:\hskip\labelsep}]
\item[Canonical Ensemble:]System with fixed particle number, volume and temperature.\\ (Microcanonical ensemble has fixed energy instead of temperature!)
\end{description}
\vskip 1cm

\noindent\textbf{Canonical Ensemble:}\enspace\parbox[t]{\linegoal}{System with fixed particle number, volume and temperature.\\ (Microcanonical ensemble has fixed energy instead of temperature!)}

\end{document} 

在此处输入图片描述

答案2

\documentclass[10pt,a4paper]{article}
\usepackage{enumitem}
\begin{document}
    \begin{enumerate}[labelwidth=*, widest]
        \item[\textbf{Canonical}] Something \\something
        \item[\textbf{fooo}] bar
    \end{enumerate}
\end{document}

下一行缩进

在此处输入图片描述

但如果用它来提供某种词汇表,那么就有专门的软件包。

答案3

在此处输入图片描述

我推荐Sango建议的方法,但你也可以这样做。

\documentclass{standalone}
\begin{document}
\noindent
\begin{tabular}{p{0.3\textwidth} p{0.6\textwidth}}
\textbf{Canonical Ensemble:} & System with fixed particle number, volume and temperature.
   Microcanonical ensemble has fixed energy instead of temperature!
\end{tabular}
\end{document}

答案4

有人说了吗\phantom?因为你可以\phantom在这里使用!

Lorem ipsum ipsum lorem.

\phantom{Lorem} ipsum ipsum est!

示例截图

相关内容