当我不需要 1、2、3 等顺序时,如何在 Latex 中设置标签

当我不需要 1、2、3 等顺序时,如何在 Latex 中设置标签

添加选项卡或创建自己的命令 在此链接中有三个程序,每个程序都有用于设置选项卡的程序,但它们都有编号。

1. Format
2. 
3. 

答案1

在 Fran 对该问题的回答中,编号是由环境生成的enumerate,因此只需将其删除即可。例如

\documentclass{article}
\usepackage{tabto}
\begin{document}
\NumTabs{6}
Format: 
      \tab $math$ formula
      \tab is
      \tab (the real number)

Example: 
      \tab $\pi$
      \tab is (first digits)
      \tab 3.141593

Example: 
      \tab $\pi$
      \tab is (more digits)
      \tab 3.141592653589793238

One more example: 
      \tab $\log_{10}(\pi)$
      \tab is
      \tab 1.14473
\end{document}

相关内容