1

Adding tabs or creating my own command In this link there are three programs each of which is having programs for setting tab but they have numbering.

1. Format
2. 
3. 

1 Answers1

2

In Fran's answer to that question the numbering is generated by the enumerate environment, so just remove that. E.g.

\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}
Torbjørn T.
  • 206,688