如何在表格中“缩进整行”

如何在表格中“缩进整行”

我甚至不知道该如何提问。我一直在使用 longtable 来创建不可见的表,以便我可以对公式参数进行以下解释(如果有更好的方法,我很乐意听到):

我一直在使用 longtable 来制作公式参数的描述列表

但我不知道如何实现以下目标:

顶行实际上是“缩进”的

我怎样才能缩进,使它看起来像一个子项目符号,但当然没有项目符号。提前谢谢 :)

答案1

你可以像这样缩进文本,使用itemize环境的帮助enumitem允许指定边距宽度的包。

\documentclass{article}
\usepackage{enumitem}

\begin{document}

\begin{itemize}[nosep, left=11ex]
\item[$\sigma_\mathrm{FlimN}$] fatigue strength under pulsating stress, expressed by the nominal stress (values for different thermoplastics as a function of the required number of load cycles; see   Figure 3 and Table 5)
\end{itemize}

\begin{itemize}[nosep]
\item[$S_\mathrm{Fmin}$] required minimum safety factor (generally $S_\mathrm{Fmin }=2.0$ for continuous operation, where a setting of $N_\mathrm{L}=10^8$ load cycles is required and $S_\mathrm{Fmin}=1.6$ in the case of intermittent operation with $N_\mathrm{L}$ load cycles)
\end{itemize}

\end{document}

在此处输入图片描述

相关内容