BibTeX, biblatex and biber ⇒ remove label in My Bibliography
remove label in My Bibliography
My question is apparently a nonsense, but I am writing a book in which I do not have to call references but I have to show my bibliography. What the editor is asking me is to remove my numeric label.I need a list of my books and article, that is all and on two column.
I am using bibtopic and my file .bib already exist from my Thesis;
How should I do ?
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
remove label in My Bibliography
For a lot of styles, it might work to simply do this to remove the labels (in the preamble):
Code: Select all
\makeatletter
\renewcommand\@biblabel[1]{}
\makeatother
A minimal working example would be very helpful here.
For the columns, I'd just use the multicol package.