I've heard that title capitalization in bibliography is the bibliography style's role (the bst file). Is there a bibliography style file that capitalizes book titles but not paper titles? For example, a paper title should be like
Hello world and hello kitty
a book title should be like
Hello World and Hello Kitty
bib style plain.bst doesn't seem to capitalize book titles. A minimal example:
minbib.tex
\documentclass{article}
\begin{document}
See \cite{book1}.
\bibliographystyle{plain}
\bibliography{min}
\end{document}
min.bib
@book{book1,
AUTHOR = {Petersen, K.},
TITLE = {Ergodic theory},
PUBLISHER = {Cambridge University Press},
YEAR = 1989,
}
The book title in the dvi output is "Ergodic theory", not "Ergodic Theory".