BibTeX, biblatex and biber ⇒ Problem with successive authors
Problem with successive authors
I am using BibTex and I have a little problem with the formatting of my references. When I have the same author for several successive references, the author's name is replaced by a line in the bibliography.
For example:
[1] W. P. Mason, Electrical wave filters employing quartz crystals as elements, Bell System Technical Journal, vol. 13, pp. 405-452, 1934.
[2]--------, An electromechanical representation of a piezoelectric crystal used as a transducer, Bell System Technical Journal, vol. 14, pp. 718-723, 1935.
I would like the name of the author to appear in the second line of the bibliography. Any idea on how to do that?
Thanks
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
-
- Site Moderator
- Posts: 814
- Joined: Tue Jul 01, 2008 2:19 pm
Re: Problem with successive authors
Re: Problem with successive authors
-
- Site Moderator
- Posts: 814
- Joined: Tue Jul 01, 2008 2:19 pm
Re: Problem with successive authors
Problem with successive authors
Here is the part of the preamble containing the packages I am using:
\documentclass[b5paper,twoside,10pt]{book}
\usepackage{bm}
\usepackage{epsf}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{rotating}
\usepackage{verbatim}
\usepackage{longtable}
\usepackage[bookmarks=true, linktocpage=true]{hyperref}
\usepackage{array}
\hypersetup{colorlinks,
citecolor=black,
filecolor=black,
linkcolor=black,
urlcolor=black}
\usepackage[retainorgcmds]{IEEEtrantools}
\usepackage[fleqn]{amsmath}
\usepackage{fancyhdr}
\usepackage{subfigure}
\usepackage{afterpage}
\usepackage{textcomp}
\usepackage{ccaption}
\usepackage{appendix}
\usepackage[square, comma, numbers, sort&compress]{natbib}
\usepackage[PetersLenny]{fncychap}% change the chapter style
\usepackage{tocbibind}
-
- Site Moderator
- Posts: 814
- Joined: Tue Jul 01, 2008 2:19 pm
Problem with successive authors
Code: Select all
@IEEEtranBSTCTL{IEEE:BSTcontrol,
CTLdash_repeated_names = "no",
}
Then in your LaTeX file, put
Code: Select all
\bstctlcite{IEEE:BSTcontrol}
Code: Select all
\bibliography{CTLIEEEtrans, ...}
Re: Problem with successive authors
Michael.