在 rSubSection 中缩进 \item

在 rSubSection 中缩进 \item

我有一个 rSubSection,里面有几个 \item。例如这里:

\begin{rSubsection}{Title}{}{}{}
\item A
\item B
\item C
\end{rSubsection}

我想缩进“B”和“C”。这是一个更广泛的项目的一部分,所以我无法列举这些项目,因为这会改变整体格式。我怎样才能将第二和第三项稍微推一下?我觉得这真的很简单,但我找不到任何可行的方法。

答案1

假设你指的是rSubSection 的定义,有一个简单但不太优雅的解决方法。

\documentclass{article}
\usepackage{ifthen}
% from https://tex.stackexchange.com/questions/209627/how-to-disable-list-in-the-rsubsection
\newenvironment{rSubsection}[4]{% 4 input arguments - company name, year(s) employed, job title and location
 {\bf #1} \hfill {#2} % Bold company name and date on the right
 \ifthenelse{\equal{#3}{}}{}{ % If the third argument is not specified, don't print the job title and location line
  \\
  {\em #3} \hfill {\em #4} % Italic job title and location
  }\smallskip
  \begin{list}{$\cdot$}{\leftmargin=0em} % \cdot used for bullets, no indentation
   \itemsep -0.5em \vspace{-0.5em} % Compress items in list together for aesthetics
  }{
  \end{list}
  \vspace{0.5em} % Some space after the list of bullet points
}
\begin{document}
\noindent%
\begin{rSubsection}{Title}{}{}{}
\item A 
\vspace*{-0.2em}
\begin{list}{$\cdot$}{\leftmargin=1em} % <- change identation here
\item B
\item C
\end{list}
\end{rSubsection}
\end{document}

在此处输入图片描述

如果您想让更多人关注您的问题,请考虑在您的帖子中添加 MWE。

相关内容