根据教程中给出的示例逐项列出列表中的项目

根据教程中给出的示例逐项列出列表中的项目

我有以下条目

\begin{itemize}
     \item[\renewcommand{labelitem}{$\cdot}] To be able to understand the anomaly detection techniques by existing service providers.
     \item[\textendash\textbf{ii}] To be able to implement an approach which can detect anomalies in a given data set.\\
\end{itemize}

我在这里读了一个例子http://texblog.org/2008/10/16/lists-enumerate-itemize-description-and-how-to-change-them/ 这表明 Itemization 可能是 Latex 中最常用的列表。它还提供四个级别。可以使用以下命令更改每个级别的项目符号:

\renewcommand{\labelitemi}{$\bullet$}
\renewcommand{\labelitemii}{$\cdot$}
\renewcommand{\labelitemiii}{$\diamond$}
\renewcommand{\labelitemiv}{$\ast$}

我想知道我使用 \renewcommand 的情况,就像我上面所做的那样,因为我遇到了很多错误。显然这是错误的,但正确的格式应该是什么样的。我想使用{$\cdot$} 在我的尝试中使用。我不知道怎么做。我尝试了上述方法,但遇到了很多错误。我正在使用一个我上传给我们的模板这里如果有人想看的话。我正在学习 latex,所以我不太清楚在哪里放置 \renewcommand 语句或使用 \itemize。我确实通过这种反复尝试准备了一份 35 页的不完整文档。我阅读了这里给出的示例https://en.wikibooks.org/wiki/LaTeX/List_Structures. 倒数第三个例子

\usepackage{amssymb}
\ListProperties(Hide=100, Hang=true, Progressive=3ex, Style*=-- ,
Style2*=$\bullet$ ,Style3*=$\circ$ ,Style4*=\tiny$\blacksquare$ )
% ...

\begin{easylist}
& Blah
& Blah
&& Blah
&&& Blah
&&&& Blah
&&&&& Blah
\end{easylist}

然而,我想要实现的是只有圆点作为项目的几个项目。不使用此模板对我来说不是一个选择。
更新 1
根据下面的评论我尝试过

\begin{itemize}
     \item[\renewcommand{labelitem}{$\cdot$}] To be able to understand the anomaly detection techniques by existing service providers.
     \item[\renewcommand{labelitem}{$\cdot$}] To be able to implement an approach which can detect anomalies in a given data set.\\
\end{itemize}

但这给了我错误

Command labelitem undefined. \item[\renewcommand{labelitem}{$\cdot$}]

Missing control sequence inserted. \item[\renewcommand{labelitem}{$\cdot$}]

我还有 2 个警告

\fancyhead's `E' option without twoside option is useless

fixltx2e is not required with releases after 2015(fixltx2e) All fixes are now in the LaTeX kernel.

我想知道要删除哪里以及要删除什么才能消除这些警告?这是模板https://github.com/kiotie32/original-template如果有人想看的话。我也不确定该怎么做才能摆脱这些警告。

答案1

你提到的博客已经过时了。在过去的 10 多年里,枚举项我敢说,这个包裹已经成为主包用于修改和自定义列表类环境,例如enumerateitemize。我建议您利用该包的众多功能。

以下 MWE 向您展示了如何开始。顺便说一句,我不会使用\cdot来标记 2 级项目化对象;该\cdot符号不够大,无法可靠地用作这种类型的标记。我会使用\circ而不是\cdot

在此处输入图片描述

\documentclass{article}
\usepackage{enumitem}
\setlist[itemize,1]{label=$\bullet$}
\setlist[itemize,2]{label=$\circ$}
\setlist[itemize,3]{label=$\diamond$}
\setlist[itemize,4]{label=$\ast$}
\begin{document}
\noindent
Hello
\begin{itemize}
\item Level 1
  \begin{itemize}
  \item Level 2
    \begin{itemize}
    \item Level 3
      \begin{itemize}
        \item Level 4
      \end{itemize}
    \end{itemize}
  \end{itemize}
\end{itemize}
\end{document}

相关内容