使用列表(枚举、描述、逐项列举)中的项目作为小节或小子节的标题

使用列表(枚举、描述、逐项列举)中的项目作为小节或小子节的标题

我有个问题...

如果我有这样的列表

\begin{enumerate}

\item Objective 1

\item Objective 2

\item Objective 3

\end{enumerate}

我想将每个项目用作描述每个项目的子部分。我该使用什么?我搜索了很多,但找不到答案。

我希望在枚举环境之后,使用标签而不是再次写下所有目标并将该目标描述为小节。

非常感谢您的回答!

答案1

您可以加载enumitem并编写如下内容:

\begin{enumerate}[label=Objective \arabic*., wide=0pt, font=\bfseries]
   \item Description of Objective1
   \item Description of Objective2
   \item Description of Objective3
\end{enumerate}

答案2

您可以使用列表:查看答案这里用于创建带有自定义分隔符的列表以在 foreach 循环中使用(您需要它可以在句子中添加逗号)

我将使用@HeikoOberdiek 对上述链接的回答提供代码:

\documentclass[a4paper,10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{pgffor}
\usepackage{etoolbox}
\usepackage{etexcmds}
\DeclareListParser*{\forvertlist}{|}

\makeatletter
\newcommand{\vertocomma}[2]{%
  \let#1\@empty
  \forvertlist{\@verttocomma{#1}}{#2}%
}
\newcommand{\@verttocomma}[2]{%
  \edef#1{%
    \ifx#1\@empty
    \else
      \etex@unexpanded\expandafter{#1},%
    \fi
    {\etex@unexpanded{#2}}%
  }%
}
\makeatother

\newcounter{ii}
\vertocomma\mylist{sentenceA|| One big sentence to see if it works with the section and if it breaks lines..|se,nt,en,ce,B| sentenceC | }
\foreach \x in \mylist {%
  \stepcounter{ii}%
  %\typeout{[\meaning\x]}%
  \global\expandafter\let\csname myObj\arabic{ii}\endcsname\x%
}





\usepackage{titlesec}
\titleformat{\section}[display]
{\normalfont\bfseries}
{Item \arabic{section}:\space \csname myObj\arabic{section}\endcsname}{0pt}{}
\begin{document}
\setcounter{ii}{0}
\begin{enumerate}
\foreach \x in \mylist
{\stepcounter{ii}
\item\label{it:\arabic{ii}} \x
}
\end{enumerate}


\section{}

This item is the \ref{it:\arabic{section}} item and ends with a full-stop.\csname myObj1\endcsname

\section{}

The item \ref{it:2} is a sentence with many commas


\end{document}

您可以选择制作列表的方式,也可以复制并使用此方式。

结果是:

在此处输入图片描述

(编辑:如果您不喜欢 titleformat 命令,您也可以在小节中使用“nameref”(我认为它会起作用)。)

祝你好运(这些部分可以根据你的需要格式化,也可以像我的一样留空)

答案3

您是否尝试制作如下面的最小工作示例(MWE)中的目录?

或者可能是迷你目录?(也在 MWE 中)

否则,您可以使用该nameref包(当然也可以在 MWE 中):

姆韦

\documentclass{article}
\usepackage{lipsum} % for dummy text
\usepackage{minitoc}
\usepackage{nameref} % Note: Do not load it before minitoc ! 
\begin{document}

\dosecttoc

\tableofcontents

\section{Introduction} Bla bla bla ...
\section{Objectives}

\begin{enumerate}
\item \nameref{obj1}
\item \nameref{obj2}
\item \nameref{obj3}
\end{enumerate}

\renewcommand\stctitle{} %no title for minitoc
\nostcpagenumbers % no page numbers
\secttoc[c]


\subsection{The first funny objective}\label{obj1}\lipsum[1] 
\subsection{The hard and really complex objective}\label{obj2}\lipsum[2] 
\subsection{The last and final objective}\label{obj3}\lipsum[3] 

\end{document}

相关内容