简体   繁体   English

如何在乳胶中编写水平项目符号列表?

[英]How to Write horizontal bullet point list in latex?

I want to write horizontal bullet points in latex.我想在乳胶中写水平项目符号点。 How can I do that?我怎样才能做到这一点? as far as I got some solution on the internet is a vertical list with numbers.据我在互联网上得到的一些解决方案是一个带有数字的垂直列表。

How can I get bullet points instead of numbers?我怎样才能得到要点而不是数字?

My current code is something like this-我当前的代码是这样的-

  \documentclass[twoside = false, % doppelseitiger Druck
    DIV=17,                 % DIV Faktor für Satzspiegelberechnung, sie Doku zu KOMA Script
    BCOR=15mm,              % Bindekorrektur
    chapterprefix=false,
    headinclude=true,
    footinclude=false,
    pagesize,               % write pagesize to DVI or PDF
    fontsize=11pt,          % use this font size
    paper=a4,               % use ISO A4
    bibliography=totoc,     % write bibliography-chapter to table of contents
    index=totoc,            % write index-chapter to table of contents
    cleardoublepage=plain,  % \cleardoublepage generates pages with pagestyle empty
     headings=big,          % A4/B5
    listof=flat,            % improved list of tables
    numbers=noenddot
  ]{scrbook}
\begin{inparaenum}
    \item  A
    \item  B
    \item  C
    \item  D
    \item  E
    \item  F
    \item  G
\end{inparaenum}
\end{document}

在此处输入图像描述

Assuming you are using the paralist package... use the inparaitem instead of inparaenum假设您使用的是paralist包...使用inparaitem而不是inparaenum

\documentclass[11pt]{article}
\usepackage{paralist}
\begin{document}
This list includes the following :
\begin{inparaitem}
\item option A
\item option B 
\item option C
\end{inparaitem}\\
Please choose an option
\end{document}

在此处输入图像描述

For horizontal list:对于水平列表:

\documentclass{article}

\usepackage[inline]{enumitem}

\begin{document}

Text before list.
\begin{enumerate*}
  \item My first in list.
  \item My second in list.
\end{enumerate*}
Text after list.

\end{document}

For more examples, please visit overleaf .如需更多示例,请访问背面

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM