如何隐藏 LaTeX 列表中的项目符号?

发布于 2024-07-13 03:40:14 字数 49 浏览 5 评论 0原文

从语义上讲,我想要一个逐项列表,但在视觉上我只想要一些空间。 怎样才能隐藏子弹呢?

Semantically, I want an itemized list, but visually I just want some space. How can I hide the bullets?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(8

剩一世无双 2024-07-20 03:40:14
\item[] text

或者,您可以在 [] 内放置一些内容。

\item[] text

Optionally, you can put something inside the [].

与他有关 2024-07-20 03:40:14

我不能谈论任何其他设置,但我在 MacTex 上使用 Tufte-Latex,并且我只需输入以下内容:

\begin{itemize}[]

它有效。 :-) 我喜欢猜测这样做。 因此,只需尝试在后面添加 [] 即可。

PS lindelof 的“通用”列表也有效,但它们没有像 itemize 那样很好地排列。 Jakub 的建议激发了我的猜测,当我尝试时,我得到了一堆“label=”字符串作为要点。

编辑:正如其他人指出的那样,更标准的方法是再次使用 [],但在列表中的每个项目旁边,如本页面上的其他答案所示。 如果您厌倦了在每行上看到方括号,请尝试本页上的其他方法:)

\begin{description}
\item[] first item
\end{description}

I can't speak for any other setup, but I'm using Tufte-Latex on MacTex, and I just typed the following:

\begin{itemize}[]

It worked. :-) I love it when guessing does that. So just try adding [] after.

P.S. the "generalized" list from lindelof worked also, but they didn't line up as nicely as with itemize. Jakub's suggestion was what inspired my guess, when I tried it, I got a bunch of "label=" strings as bullet points.

Edit: As others have pointed out, the more standard approach is to again use [], but next to each item in the list as in other answers on this page. If you tire of seeing square brackets on each line, try other approaches on this page :)

\begin{description}
\item[] first item
\end{description}
半﹌身腐败 2024-07-20 03:40:14

我的回复对于这个帖子来说已经很晚了,但我想我会添加它,以方便未来搜索者的利益。

我通过使用描述环境并在 \item 命令中使用空格来完成此操作。

例如,

\begin{description}
\item[] first item
\end{description}

这对我来说效果很好。

My response is quite late for this thread but thought I will add it for the benefit of any future searchers.

I accomplished this by using the description environment and using blanks for the \item commands.

e.g

\begin{description}
\item[] first item
\end{description}

That worked fine for me.

青衫儰鉨ミ守葔 2024-07-20 03:40:14

您可能想要的是一个通用列表:

\begin{list}{\quad}{}
\item ...
\end{list}

此环境的第二个参数是将插入到每个项目前面的符号。

What you probably want is a generalized list:

\begin{list}{\quad}{}
\item ...
\end{list}

The second argument to this environment is the symbol that will be inserted in front of every item.

治碍 2024-07-20 03:40:14

我认为最好的解决方案是使用 CTAN 的 enumitem 包:它存在于 teTeX 和 LaTex 中,并且也应该存在于大多数其他 TeX 发行版中。 然后您就可以使用:

\begin{itemize}[label=]
\item 1st item
\item ...
\end{itemize}

I think the best solution would be to use enumitem package from CTAN: It is present in teTeX and LaTex and should also be present in most other TeX distribution. Then you are able to use:

\begin{itemize}[label=]
\item 1st item
\item ...
\end{itemize}
小草泠泠 2024-07-20 03:40:14

项目符号本身是一个宏,因此您可以轻松地在全局范围内重新定义它,如下所示:

\renewcommand{\labelitemi}{$\star$}

在您的情况下,只需将宏留空即可。 请参阅此页面 了解详情。

The bullet itself is a macro so you can easily redefine it globally like this:

\renewcommand{\labelitemi}{$\star$}

In your case just leave the macro empty. See this page for details.

硪扪都還晓 2024-07-20 03:40:14

如果您想要的只是空间,而不是列表环境,您可以使用选项卡环境

\begin{tabbing}
\hspace{30pt}\=\hspace{30pt}\=\kill 
\> First Item\\
\> Second item\\
\> Third item
\end{tabbing}

If all you want is the space, rather than a list environment you could use the tabbing environment

\begin{tabbing}
\hspace{30pt}\=\hspace{30pt}\=\kill 
\> First Item\\
\> Second item\\
\> Third item
\end{tabbing}
dawn曙光 2024-07-20 03:40:14

您可以通过多种方式执行此操作:

\documentclass{article}
\usepackage{enumitem}

\begin{document}

% 1st way

\begin{itemize}
  \item[] First.
  \item[] Second.
\end{itemize}

% 2nd way    
\begin{itemize}[label={}]
  \item First.
  \item Second.
\end{itemize}

% 3rd way
{\renewcommand\labelitemi{}
\begin{itemize}
  \item First.
  \item Second.
\end{itemize}
}

\end{document}

You can do this in several ways:

\documentclass{article}
\usepackage{enumitem}

\begin{document}

% 1st way

\begin{itemize}
  \item[] First.
  \item[] Second.
\end{itemize}

% 2nd way    
\begin{itemize}[label={}]
  \item First.
  \item Second.
\end{itemize}

% 3rd way
{\renewcommand\labelitemi{}
\begin{itemize}
  \item First.
  \item Second.
\end{itemize}
}

\end{document}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文