尝试使用函数 /item 缩进文本时出现问题

尝试使用函数 /item 缩进文本时出现问题

我正在尝试使用命令\item来缩进文本的某个部分,使其看起来像这样:

在此处输入图片描述

但它看起来是这样的:

在此处输入图片描述

有人能告诉我出了什么问题吗?

答案1

有很多不同的方法可以实现所需的结果(例如,使用\parbox[t]{..}{..}要对齐的部分)。但我建议使用普通的表格而不是描述环境。

\documentclass{article}
\begin{document}
   \begin{tabular}{ll}
   \large \textbf{Keywords:} & Nonlinear Dynamics \\
                             & Isogeometric Analysis\\
                             & Porosity-dependent properties\\
                             & Functionally graded materials\\
                             & Non-classical continuum elasticity
   \end{tabular}
\end{document}

在此处输入图片描述

答案2

尝试这个:

% indentprob.tex  SE 599715
\documentclass{article}
\begin{document}
   \begin{description}
     \item[\large Key Words:] \mbox{} \\ % move to next line
Nonlinear Dynamics \\
Isogeometric Analysis\\
Porosity-dependent properties\\
Functionally graded materials\\
Non-classical continuum elasticity
   \end{description}
\end{document}

在此处输入图片描述

答案3

抱歉回复晚了,因为我不怎么使用 Stack Overflow,也没有收到电子邮件通知,但与此同时我已经实施了解决方案尼科建议,但我收到另一个错误 :/

事情是这样的:

在此处输入图片描述

就像是得到了某种缩进。我尝试\setlength{\parindent}{0pt}在文档开头使用命令,并将对齐位置从更改ll为其他选项(如cc或)rl,但得到了相同的输出。还尝试\large在括号内而不是外面使用命令,但仍然没有区别。:/

我还能做什么吗?

相关内容