Text Formatting ⇒ Enumerating between [ ]
Enumerating between [ ]
How can I enumerate item, but have the numbers put between [ ]?
I tried to use the package "enumitem", but couldn't know the correct parameters!
Also, I would like a way that guarantees having the same enumeration when cross referencing any enumerated item.
Finally, does anyone know of an easy tutorial for BIBtex? because I couldn't understand it from most of the documentations I found online!
Thanks in advance!
Aly
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Enumerating between [ ]
Re: Enumerating between [ ]
Aly
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Enumerating between [ ]
Stefan
Enumerating between [ ]
Code: Select all
\documentclass[12pt,letter,english]{article}%{amsart}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{babel}
\usepackage[includeheadfoot,margin=2cm]{geometry}
\usepackage[font=small,labelfont=bf,tableposition=top]{caption}
\usepackage{booktabs,multirow}
\usepackage{lscape}
\usepackage{amsfonts}
\usepackage{amsmath, amsthm, amssymb}
\usepackage{enumitem}
Thanks a lot, Stefan for your continuous help. I really appreciate it!
Aly
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Enumerating between [ ]
You can create a bibliography manually by using the thebibliography environment and the corresponding \bibitem command. For bibliographies based on databases you should use BibTeX or the biblatex package. In all the cases you don't have to worry about enumeration of the references any more because it is done automatically in the shape you want.amegahed3 wrote:[…] Also, all what I need is to enumerate the references. So, in order to make that [1], [2],...etc enumeration look as the professional standard, what should I do? […]
Best regards
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Enumerating between [ ]
I would prefer the way mentioned by Thorsten, you would get a standard appearance by that.
If you still want to use an enumitem and if you really want to get smaller [] here's a quick workaround:
Code: Select all
\usepackage{relsize}
\newcommand*\leftbracket{\raise1.2pt\hbox{\textsmaller{[}}}
\newcommand*\rightbracket{\raise1.2pt\hbox{\textsmaller{]}}}
...
\begin{enumerate}[label=\leftbracket\arabic*\rightbracket]
...
\end{enumerate}
Stefan
Re: Enumerating between [ ]
But I also wanted to use the BibTeX, but I couldn't find a clear tutorial or documentation. Does anyone of you guys know of an easy clear one?
Thanks a lot for all your great help!
Aly