修改 tocloft 获取的自定义列表

修改 tocloft 获取的自定义列表

我使用 tocloft 包为会议计划书创建了一组摘要的自定义列表。在我的实际问题中,内容行前面的数字与示例中的数字一样多余。

1)如何去掉“章节”前面的数字?[已解决]

在示例图中,你可以看到摘要列表相当混乱。我认为如果可以将一行内容分成两行会更好看:

第一作者
NTPNTTSP 会议的第一个摘要标题。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。1 第二
作者,第三作者
第二个摘要标题可能非常长,因为参与者并不真正关心。。。。。。2

2)如何将类似内容表的行分成两行?

在此处输入图片描述

\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{tocloft}

\newcommand{\listexamplename}{Abstracts}
\newlistof{customchapter}{cc}{\listexamplename}

\newcommand{\customchapter}[1]
{%
   \refstepcounter{customchapter}
   \addcontentsline{cc}{customchapter}
{\protect\numberline{\thecustomchapter}#1}\par
}

\begin{document}

\listofcustomchapter

\customchapter{authorus primus -- First abstract title for conference on NTPNTTSP}
\null\newpage

\customchapter{authorus secundus, authorus tertius -- second abstract title that could be horrendous long because of participants don't really care}
\null\newpage


\customchapter{authorus quartus -- not giving f. anyway}
\null\newpage 

\end{document}

相关内容