BibTeX, biblatex and biber ⇒ article in list citation
Re: article in list citation
Charles D. Keeling, Stephen C. Piper, Robert B. Bacastow, Martin Wahlen, Timothy P. Whorf, Martin Heimann, and Harro A. Meijer; Atmospheric CO2 and 13CO2 Exchange with the Terrestrial Biosphere and Oceans from 1978 to 2000: Observations and Carbon Cycle Implications; in: A History of Atmospheric CO2 and its effects on Plants, Animals, and Ecosystems, edited by, Ehleringer, J.R., T. E. Cerling, M. D. Dearing, Springer Verlag, New York, 2005.
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
article in list citation
bst
file into a custom one.(I am by no means an expert here as I have always simply used the standard styles… I hope someone with more expertise will join this conversation!)
Regards
Re: article in list citation
how to edit .bst???
article in list citation
So even if there exists a BiBTeX style providing what you need we will never know…ankhi wrote:its the convention I know....
This is beyond my expertiseankhi wrote:how to edit .bst???

I know that it is easier (or at least better documented) how to customize biblatex styles (which is not BiBTeX!). So if you're willing to switch to biblatex I could at least point you at some references how to start customizing the style.
Regards
Re: article in list citation
tell me about biblatex....

article in list citation
Instead of:
Code: Select all
\documentclass{article}
\begin{document}
\cite{companion}
\bibliographystyle{unsrt}
\bibliography{biblatex-examples}
\end{document}
Code: Select all
\documentclass{article}
\usepackage[backend=bibtex,sorting=none,style=numeric]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
\cite{companion}
\printbibliography
\end{document}
backend=bibtex
option the compilation order is exactly the same. biblatex however works best if you use backend=biber
and compile - (pdf)latex
- biber
- (pdf)latex
- (pdf)latex

On TeX.SE the three current maintainers of biblatex are very active so you can find loads and loads of useful information there. One of the maintainers, Joseph Wright is also active here.
Starting information on customizing biblatex styles may be found here: Guidelines for customizing biblatex styles.
Regards
Re: article in list citation

Re: article in list citation
also protex doesnt have biblatex option for compilation which may be a problem....
article in list citation
So it might be worth considering an other approach altogether.2.3.1 The Entry Type @inbook
Use the @inbookentry type for a self-contained part of a book with its own title only. It
relates to @book just like @incollection relates to @collection. See § 2.3.5 for examples.
If you want to refer to a chapter or section of a book, simply use the book type and add
a chapter and/or pages field. Whether a bibliography should at all include references to
chapters or sections is controversial because a chapter is not a bibliographic entity.
That being said, this is how far I got. Roughly speaking it is only a copy of another custom format by someone else and I really do not know if this is the best way. In fact I'm willing to bet there are better ways. Anyway:
Code: Select all
% arara: pdflatex
% arara: biber
% arara: pdflatex
\documentclass{article}
\usepackage[version=3]{mhchem}% for chemical formatting
\usepackage[backend=biber]{biblatex}
\addbibresource{\jobname.bib}
\DeclareFieldFormat[inbook]{chapter}{\mkbibemph{#1}}
\DeclareFieldFormat[inbook]{title}{In: \mkbibemph{#1}}
\DeclareBibliographyDriver{inbook}{%
\usebibmacro{bibindex}%
\usebibmacro{begentry}%
\usebibmacro{author/editor+others/translator+others}%
\setunit{\labelnamepunct}\newblock
\usebibmacro{chapter+pages}%
\newunit\newblock
\usebibmacro{maintitle+title}%
\newunit\newblock
\usebibmacro{byauthor}%
\newunit\newblock
\usebibmacro{byeditor+others}%
\newunit\newblock
\usebibmacro{publisher+location+date}%
\newunit
\printfield{pagetotal}%
\newunit\newblock
\iftoggle{bbx:isbn}
{\printfield{isbn}}
{}%
\newunit\newblock
\printfield{note}%
\newunit\newblock
\usebibmacro{addendum+pubstate}%
\setunit{\bibpagerefpunct}\newblock
\usebibmacro{pageref}%
\usebibmacro{finentry}}
\usepackage{filecontents}% to keep the example self-contained
\begin{filecontents}{\jobname.bib}
@inbook{kel05,
author = "Charles D. Keeling and Stephen C. Piper and Robert B. Bacastow
and Martin Wahlen and Timothy P. Whorf and Martin Heimann and Harro A. Meijer ",
title = "A History of Atmospheric \ce{CO2} and its effects on Plants, Animals,
and Ecosystems",
chapter = "Atmospheric \ce{CO2} and \ce{^{13}CO2} Exchange with the Terrestrial
Biosphere and Oceans from 1978 to 2000: Observations and Carbon Cycle Implications",
editor = "Ehleringer, J.R. and T. E. Cerling and M. D. Dearing",
publisher = "Springer Verlag, New York",
year = "2005",
}
\end{filecontents}
\begin{document}
\cite{kel05}
\printbibliography
\end{document}