Code: Select all
Doe, John: The Book Title, Publisher (Place), Chapter 1: Chapter name, Page
Code: Select all
Doe, John: The Book Title, Publisher (Place), Ch. 1 , Page
Code: Select all
Doe, John: The Book Title, Publisher (Place), Year
Code: Select all
Doe, John: The Book Title, Publisher (Place), Chapter 1: Chapter name, Page
Code: Select all
Doe, John: The Book Title, Publisher (Place), Ch. 1 , Page
Code: Select all
Doe, John: The Book Title, Publisher (Place), Year
NEW: TikZ book now 40% off at Amazon.com for a short time.
Code: Select all
\cite[Ch.\ 1, p.\ 6]{key}
Well that would be an option but than he puts one P. in front of it. It looks like this:localghost wrote:What about using the optional argument for the \cite command?Code: Select all
\cite[Ch.\ 1, p.\ 6]{key}
Best regards
Thorsten
Code: Select all
\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{babel}
\parindent0em
\begin{document}
\cite[Ch.\ 4, p. 69ff]{lamport94}
\begin{thebibliography}{99}
\bibitem{lamport94} L.\ Lamport: \textsl{\LaTeX\ - A Document Preparations System}. User's Guide and Reference Manual. Second Edition. Addison-Wesley, 1994.
\end{thebibliography}
\end{document}
This is exactly what I want!localghost wrote:It's not clear to me what you really want. At the moment it seems that you want a single entry in the bibliography with the cited chapters and pages listed behind it.
Ok here is mine MWE:localghost wrote:My idea was based on a usual bibliography entry with a reference to chapter and page in the text itself. This would be done by the following example.Doing this with a database file and BibTeX would work in the same way. Please explain by means of a minimal working example (MWE) how references in the text and the bibliography entry should look like.Code: Select all
\documentclass[11pt,a4paper,english]{article} \usepackage[T1]{fontenc} \usepackage[latin1]{inputenc} \usepackage{babel} \parindent0em \begin{document} \cite[Ch.\ 4, p. 69ff]{lamport94} \begin{thebibliography}{99} \bibitem{lamport94} L.\ Lamport: \textsl{\LaTeX\ - A Document Preparations System}. User's Guide and Reference Manual. Second Edition. Addison-Wesley, 1994. \end{thebibliography} \end{document}
You could additionally take a look at the backref option of the hyperref package or directly at the backref package.
Code: Select all
\documentclass[12pt,a4paper]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{jurabib}
\usepackage{brechtbib}
\begin{document}
text text text text \footcite[Ch.\ 4, p. 69ff]{lamport94}
\bibliographystyle{jurabib}
\bibliography{bibliography}
\end{document}
Code: Select all
@book{lamport94,
Address = {London},
Author = {Leslie Lamport},
Date-Added = {2009-08-13 05:27:16 +0200},
Date-Modified = {2009-08-13 05:30:59 +0200},
Publisher = {Addison-Wesley Professional},
Title = {LaTeX - A Document Preparations System},
Year = {1994}}
and this is how I want it to look:Lamport, Leslie: LaTeX - A Document Preparations System. London: Addison-Wesley Professional, 1994, S. Ch. 4, p. 69ff.
The S. that I marked with red color is what I dont want there. Its added there because Latex recognizes [Ch.\ 4, p. 69ff] as same as he would recognize [69] so he adds S. in front of it (S. is for german "Seite" in english it would be P. for Page).Lamport, Leslie: LaTeX - A Document Preparations System. London: Addison-Wesley Professional, 1994, Ch. 4, p. 69ff.
Of course I know what this »S« stands for in this case. Take a short look to the right at my location.Yeats wrote:[...] (S. is for german "Seite" in english it would be P. for Page).
Code: Select all
\footcite[69, Kap.\ 4]{lamport94}
I know your location very well. I wrote what S. means mostly for the other people that are reading forum. You once said to me that the point of having this forum is that other members should benefit from the posts too, so thats why i explained it like that.localghost wrote:Of course I know what this »S« stands for in this case. Take a short look to the right at my location.Yeats wrote:[...] (S. is for german "Seite" in english it would be P. for Page).
The only thing I can offer is a workaround. Just swap page and chapter in your reference.Perhaps that is something you can live with.Code: Select all
\footcite[69, Kap.\ 4]{lamport94}
NEW: TikZ book now 40% off at Amazon.com for a short time.