I am using JabRef for my references. I export them as a .bib file and import them into LyX. They are all sorted correctly and referenced fine in the text. However, when I look in the actual bibliography section of my paper they look pretty ugly: some have URL's, some have extra spaces that look unprofessional. Is there a way to make all of the references that are printed have the same fields and format?
MWE:
Here are two bibtex entries:
@ARTICLE{ADRIAN2008,
author = {Adrian, Tobias And Rosenberg, Joshua},
title = {Stock Returns and Volatility: Pricing the Short-Run and Long-Run
Components of Market Risk},
journal = {The Journal of Finance},
year = {2008},
volume = {63},
pages = {2997--3030},
number = {6},
doi = {10.1111/j.1540-6261.2008.01419.x},
issn = {1540-6261},
owner = {home},
publisher = {Blackwell Publishing Inc},
timestamp = {2013.01.31},
url = {http://dx.doi.org/10.1111/j.1540-6261.2008.01419.x}
}
@ARTICLE{Ang2006,
author = {Ang, Andrew and Chen, Joseph and Xing, Yuhang},
title = {Downside Risk},
journal = {Review of Financial Studies},
year = {2006},
volume = {19},
pages = {1191-1239},
number = {4},
abstract = {Economists have long recognized that investors care differently about
downside losses versus upside gains. Agents who place greater weight
on downside risk demand additional compensation for holding stocks
with high sensitivities to downside market movements. We show that
the cross section of stock returns reflects a downside risk premium
of approximately 6% per annum. Stocks that covary strongly with the
market during market declines have high average returns. The reward
for beasring downside risk is not simply compensation for regular
market beta, nor is it explained by coskewness or liquidity risk,
or by size, value, and momentum characteristics. (<I>JEL</I> C12,
C15, C32, G12)},
doi = {doi:10.1093/rfs/hhj035},
owner = {home},
timestamp = {2013.01.31},
url = {http://www.ingentaconnect.com/content/oup/revfin/2006/00000019/00000004/art01191}
}
The LyX file:
%% LyX 2.0.5.1 created this file. For more info, see http://www.lyx.org/.
%% Do not edit unless you really know what you are doing.
\documentclass[11pt,openbib]{article}
\usepackage[latin9]{inputenc}
\usepackage{geometry}
\geometry{verbose,tmargin=1in,bmargin=1in,lmargin=1in,rmargin=1in}
\setlength{\parskip}{\medskipamount}
\setlength{\parindent}{0pt}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}
\bibliographystyle{plainnat}
\nocite{*}
\bibliography{C:/Users/home/Desktop/test}
\end{document}
It does look like part of the problem is that some entries have more information than others: ie URL's, etc. Do I have to edit each one or can BibTeX be run to only display certain aspects of an entry to make them all the same?
bibtexshould take care of most of this stuff by itself. Could you provide us with a minimal working example (MWE), please? – Benedikt Bauer Jan 31 at 20:54