If you do not object to biblatex (which you can use with BibTeX), you can do
the following, which is what I use for my abstracts:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass{article}
\usepackage{paralist,setspace}
\usepackage[backend=bibtex,
firstinits=true,
uniquename=init,
autopunct=true,
natbib=true,
style=authoryear-icomp,
dashed=false,
doi=false,
url=false]{biblatex}
\bibliography{/path/to/your/bibliography}
\defbibenvironment{bibliography}{% begin code
\footnotesize % sets the size, but does not adapt line spacing
\pointlessenum
\begin{inparaenum}
\renewcommand\makelabel[1]{ [##1]}}
{\end{inparaenum}} % end code
{\item} % item code
\begin{document}
\citet{author2012}
\setstretch{0.8}
\renewcommand{\refname}{}
\printbibliography
\end{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
You can continue to use all the familiar natbib cite-commands, and your
standard bib-file.
Best,
Gerhard
Post by Christos VlachosIndeed this is for an abstract. Many thanks for all recommendations!
Best,
christos
Post by Arnold, DougMy solution prints the bibtex key as well as the entry. To fix this, you
should also redefine \bibitem; but if all you want to do is save space in
the bibliography, you eliminate the space between items by something
\setlength{\bibsep}{0pt}
each entry will start on its own line, but with no vertical space between them.
\setlength{\bibsep}{0.5\baselineskip}
entries will have half a normal line space between them.
This something I often play with when trying to stay within page limits.
\bibsep is the length used by natbib.sty; I don’t know what it would be in
other packages, but it should be easy enough to find out (and no need to
mess around with .bst files)
Best
Doug
Post by Christos VlachosHi,
does anybody know how to remove line breaks among bibliography entries
Bibliography entry 1
Bibliography entry 2
etc.
Bibliography entry 1. Bibliography entry 2. etc
If this is for an abstract, then you might try googling for something
like 'compact bibliography latex', though when I've needed such a
compact list of references in the past, there never seemed to be much
except ad-hoc solutions.
http://bibdesk-users.661331.n2.nabble.com/Very-compact-bibliography-style
s-td1332196.html
HTH