BibTeX, biblatex and biber ⇒ IEEEtran - IEEEabrv: Author is dashed out
IEEEtran - IEEEabrv: Author is dashed out
The problem I've got is that in the created document the author is dashed out if this author appears twice in the references like this:
D. Name, Title. Address: Publisher, Year.
------, Title. Address: Publisher, Year.
I already tried to set CTLdash_repeated_names to "no", but without sucess.
I found this document about this topic (search for CTLdash_repeated_names):
http://www.tex.ac.uk/tex-archive/macros ... xample.bib
I created a new BiBTex entry like this:
IEEEtranBSTCTL{IEEEexample:BSTcontrol,
CTLuse_article_number = "yes",
CTLuse_paper = "yes",
CTLuse_forced_etal = "no",
CTLmax_names_forced_etal = "10",
CTLnames_show_etal = "1",
CTLuse_alt_spacing = "yes",
CTLalt_stretch_factor = "4",
CTLdash_repeated_names = "no",
CTLname_format_string = "{f.~}{vv~}{ll}{, jj}",
CTLname_latex_cmd = ""
};
Futhermore I added the command \bstctlcite{IEEEexample:BSTcontrol} to my tex file before using \cite{} but nothing works out.
Did I miss out anything to be changed?
Thank you in advance!
Daniel
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: IEEEtran - IEEEabrv: Author is dashed out
IEEEtran - IEEEabrv: Author is dashed out
Code: Select all
\documentclass[journal]{IEEEtran}
\usepackage[T1]{fontenc} %show german umlauts
% *** CITATION PACKAGES ***
%
\usepackage{cite}
% cite.sty was written by Donald Arseneau
% V1.6 and later of IEEEtran pre-defines the format of the cite.sty package
% \cite{} output to follow that of IEEE. Loading the cite package will
% result in citation numbers being automatically sorted and properly
% "compressed/ranged". e.g., [1], [9], [2], [7], [5], [6] without using
% cite.sty will become [1], [2], [5]--[7], [9] using cite.sty. cite.sty's
% \cite will automatically add leading space, if needed. Use cite.sty's
% noadjust option (cite.sty V3.8 and later) if you want to turn this off.
% cite.sty is already installed on most LaTeX systems. Be sure and use
% version 4.0 (2003-05-27) and later if using hyperref.sty. cite.sty does
% not currently provide for hyperlinked citations.
% The latest version can be obtained at:
% http://www.ctan.org/tex-archive/macros/latex/contrib/cite/
% The documentation is contained in the cite.sty file itself.
\hyphenation{op-tical net-works semi-conduc-tor Gold-ratt}
\begin{document}
%
% paper title
% can use linebreaks \\ within to get better formatting as desired
\title{The Theory of Constraints}
%
%
\author{Name}% <-this % stops a space
% make the title area
\maketitle
\begin{abstract}
...
\end{abstract}
\section{Introduction}
\IEEEPARstart{T}{his} is an example. \bstctlcite{IEEEexample:BSTcontrol}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Only section}
This is the only section. \cite{Goldratt.1990}
\section{Conclusion}
...
% references section
\nocite{*} %list all references in the bib tex file
% can use a bibliography generated by BibTeX as a .bbl file
% BibTeX documentation can be easily obtained at:
% http://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/
% The IEEEtran BibTeX style support page is at:
% http://www.michaelshell.org/tex/ieeetran/bibtex/
\bibliographystyle{IEEEtran}
% argument is your BibTeX string definitions and bibliography database(s)
\bibliography{IEEEabrv,IEEEtest}
%
% <OR> manually copy in the resultant .bbl file
% set second argument of \begin to the number of references
% (used to reserve space for the reference number labels box)
%\begin{thebibliography}{1}
%\bibitem{IEEEhowto:kopka}
%H.~Kopka and P.~W. Daly, \emph{A Guide to \LaTeX}, 3rd~ed.\hskip 1em plus
% 0.5em minus 0.4em\relax Harlow, England: Addison-Wesley, 1999.
%\end{thebibliography}
\end{document}
Code: Select all
IEEEtranBSTCTL{IEEEexample:BSTcontrol,
CTLuse_article_number = "yes",
CTLuse_paper = "yes",
CTLuse_forced_etal = "no",
CTLmax_names_forced_etal = "10",
CTLnames_show_etal = "1",
CTLuse_alt_spacing = "yes",
CTLalt_stretch_factor = "4",
CTLdash_repeated_names = "no",
CTLname_format_string = "{f.~}{vv~}{ll}{, jj}",
CTLname_latex_cmd = ""
};
@book{Goldratt.1994,
author = {Goldratt, E. M.},
year = {1994},
title = {{I}t's {N}ot {L}uck},
address = {Great Barrington, Massachusetts},
publisher = {North River Press},
isbn = {978-0884271154}
}
@book{Goldratt.1997,
author = {Goldratt, E. M.},
year = {1997},
title = {{C}ritical {C}hain},
address = {Great Barrington, Massachusetts},
publisher = {North River Press}
}
@book{Goldratt.1990,
author = {Goldratt, E. M.},
year = {1990},
title = {{W}hat is this thing called {T}heory of {C}onstraints and how should it be implemented?},
address = {Great Barrington, Massachusetts},
publisher = {North River Press},
isbn = {0-88427-166-8}
}
The database I used can be obtained here:
http://www.ieee.org/web/publications/pu ... lates.html
I attached the resulting .pdf file, so you can have a look to the problem.
It would be great if there is a solutin for this problem!
Thank you in advance!
Daniel
- Attachments
-
- IEEEtest.pdf
- (40.26 KiB) Downloaded 671 times