whats the correct way to put a cite in foot and the end of the document both at the same time?
I have to cite on the page and in a reference seciton at the same time with the same numbering.
I found many different solutions and im not sure what is the correct way to go.
this mwe sample bilds to a reference that shows the footcite with number 1 and in the reference with number 2. Thats not what i need. I nee both with the same number.
documentclass{article}
usepackage{filecontents}
usepackage[
backend=biber,
bibstyle=numeric,
citestyle=verbose,
sorting=none,
]{biblatex}
begin{filecontents}{jobname.bib}
@online{UseCase20,
title = {{Use-Case 2.0 ebook}},
journal = {Ivar Jacobson International},
year = {2014},
month = {7},
note = {[Online; accessed 24. Dec. 2018]},
url = {https://www.ivarjacobson.com/publications/white-papers/use-case-ebook}
}
@online{AlistairCockburn,
title = {{Alistair Cockburn {textendash} Wikipedia}},
year = {2018},
month = {12},
url = {https://de.wikipedia.org/wiki/Alistair_Cockburn},
note = {[Online; accessed 25. Dec. 2018]},
}}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
sometext cite{UseCase20}
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Ut purus elit, vestibulum ut, placerat ac, adipiscing vitae, felis. Curabitur dictum gravida mauris. Nam arcu libero, nonummy eget, consectetuer id, vulputate a, magna. Donec vehicula augue eu neque. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. some more text footcite{AlistairCockburn}
Sed commodo posuere pede. Mauris ut est. Ut quis purus. Sed ac odio. Sed vehicula hendrerit sem. Duis non odio. Morbi ut dui. Sed accumsan risus eget odio. In hac habitasse platea dictumst. Pellentesque non elit.
printbibliography
end{document}
For those who can read German this is the document that causes this question:
And this is a google translated english version (no guarantee that it is correct):
Abbreviations
In the text only abbreviations are to be used, which allows the Duden or which are colloquially familiar. Subject-related terms are either spelled out on first use and the abbreviations used below are added in brackets, or listed in alphabetical order in a glossary to be categorized according to the appendix.
footnotes
References and notes are in footnotes. These are separated from the text by a horizontal line. A small line spacing or a smaller font give the information the right-secondary weight. The footnotes are numbered throughout the work.
Guideline Diploma thesis valid from 2016S page 6 of 9
representations
Tables and figures are consecutively numbered and titled in the work. For example: Fig. 3: Organizational Chart Export Department, Tab. 8: Calculation Scheme
Tables and figures must be commented on, regardless of whether they are in the text or in the appendix. So there are no representations in the preliminary work that are not mentioned at least once in the text.
Greater representations inhibit the flow of thought. It is therefore convenient to include extensive material (e.g., full-page tables) in an appendix (see below)
bibliography
The bibliography gives information on the literature used. All literature used in the work and all information material processed / consulted is listed alphabetically according to the author name or the name of the newspaper / trade journal, for example in the case of official publications after the name of the office or the title of the decree (leaflet, directive, regulations, ordinance etc .).
edit: work in progress:
mwe:
documentclass{article}
usepackage{xcolor}
usepackage{longtable}
usepackage{multirow}
usepackage{filecontents}
usepackage[
style=numeric,
autocite=footnote,
]{biblatex}
begin{filecontents}{jobname.bib}
@online{UseCase20,
title = {{Use-Case 2.0 ebook}},
journal = {Ivar Jacobson International},
year = {2014},
month = {7},
note = {[Online; accessed 24. Dec. 2018]},
url = {https://www.ivarjacobson.com/publications/white-papers/use-case-ebook}
}
@online{AlistairCockburn,
title = {{Alistair Cockburn {textendash} Wikipedia}},
year = {2018},
month = {12},
url = {https://de.wikipedia.org/wiki/Alistair_Cockburn},
note = {[Online; accessed 25. Dec. 2018]},
}@book{Cockburn2003,
author = {Cockburn, Alistair},
title = {{Use Cases effektiv erstellen}},
year = {2003},
isbn = {978-382661344-9},
publisher = {REDLINE},
url = {https://www.amazon.de/Cases-effektiv-erstellen-Alistair-Cockburn/dp/3826613449}
}}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
textcolor{red}{footcite UseCase20:
footcite{UseCase20}}
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Ut purus elit,
textcolor{red}{footcite UseCase20:
footcite{UseCase20} }
ut, placerat ac, adipiscing vitae, felis. Curabitur dictum gravida mauris. Nam arcu libero, nonummy eget, consectetuer id, vulputate a, magna. Donec vehicula augue eu neque. Pellentesque habitant morbi tristique senectus et
textcolor{red}{textcite Cockburn2003:
textcite{Cockburn2003} }
et malesuada fames ac turpis egestas. some more
textcolor{red}{footcite AlistairCockburn:
footcite{AlistairCockburn}}
Sed commodo
textcolor{red}{smartcite AlistairCockburn:
smartcite{AlistairCockburn}}
pede. Mauris ut est. Ut quis purus. Curabitur dictum gravida mauris. Nam arcu libero, nonummy eget, consectetuer id, vulputate a, magna.
textcolor{red}{supercite AlistairCockburn:
supercite{AlistairCockburn}} Sed ac odio. Sed vehicula hendrerit sem. Duis non odio. Morbi ut dui. Sed accumsan risus eget odio. In hac habitasse platea dictumst. Pellentesque non elit.
et malesuada fames ac turpis egestas.
textcolor{red}{autocite AlistairCockburn:
autocite{AlistairCockburn}} Curabitur dictum gravida mauris.
printbibliography
end{document}
citing biber footer
|
show 8 more comments
I have to cite on the page and in a reference seciton at the same time with the same numbering.
I found many different solutions and im not sure what is the correct way to go.
this mwe sample bilds to a reference that shows the footcite with number 1 and in the reference with number 2. Thats not what i need. I nee both with the same number.
documentclass{article}
usepackage{filecontents}
usepackage[
backend=biber,
bibstyle=numeric,
citestyle=verbose,
sorting=none,
]{biblatex}
begin{filecontents}{jobname.bib}
@online{UseCase20,
title = {{Use-Case 2.0 ebook}},
journal = {Ivar Jacobson International},
year = {2014},
month = {7},
note = {[Online; accessed 24. Dec. 2018]},
url = {https://www.ivarjacobson.com/publications/white-papers/use-case-ebook}
}
@online{AlistairCockburn,
title = {{Alistair Cockburn {textendash} Wikipedia}},
year = {2018},
month = {12},
url = {https://de.wikipedia.org/wiki/Alistair_Cockburn},
note = {[Online; accessed 25. Dec. 2018]},
}}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
sometext cite{UseCase20}
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Ut purus elit, vestibulum ut, placerat ac, adipiscing vitae, felis. Curabitur dictum gravida mauris. Nam arcu libero, nonummy eget, consectetuer id, vulputate a, magna. Donec vehicula augue eu neque. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. some more text footcite{AlistairCockburn}
Sed commodo posuere pede. Mauris ut est. Ut quis purus. Sed ac odio. Sed vehicula hendrerit sem. Duis non odio. Morbi ut dui. Sed accumsan risus eget odio. In hac habitasse platea dictumst. Pellentesque non elit.
printbibliography
end{document}
For those who can read German this is the document that causes this question:
And this is a google translated english version (no guarantee that it is correct):
Abbreviations
In the text only abbreviations are to be used, which allows the Duden or which are colloquially familiar. Subject-related terms are either spelled out on first use and the abbreviations used below are added in brackets, or listed in alphabetical order in a glossary to be categorized according to the appendix.
footnotes
References and notes are in footnotes. These are separated from the text by a horizontal line. A small line spacing or a smaller font give the information the right-secondary weight. The footnotes are numbered throughout the work.
Guideline Diploma thesis valid from 2016S page 6 of 9
representations
Tables and figures are consecutively numbered and titled in the work. For example: Fig. 3: Organizational Chart Export Department, Tab. 8: Calculation Scheme
Tables and figures must be commented on, regardless of whether they are in the text or in the appendix. So there are no representations in the preliminary work that are not mentioned at least once in the text.
Greater representations inhibit the flow of thought. It is therefore convenient to include extensive material (e.g., full-page tables) in an appendix (see below)
bibliography
The bibliography gives information on the literature used. All literature used in the work and all information material processed / consulted is listed alphabetically according to the author name or the name of the newspaper / trade journal, for example in the case of official publications after the name of the office or the title of the decree (leaflet, directive, regulations, ordinance etc .).
edit: work in progress:
mwe:
documentclass{article}
usepackage{xcolor}
usepackage{longtable}
usepackage{multirow}
usepackage{filecontents}
usepackage[
style=numeric,
autocite=footnote,
]{biblatex}
begin{filecontents}{jobname.bib}
@online{UseCase20,
title = {{Use-Case 2.0 ebook}},
journal = {Ivar Jacobson International},
year = {2014},
month = {7},
note = {[Online; accessed 24. Dec. 2018]},
url = {https://www.ivarjacobson.com/publications/white-papers/use-case-ebook}
}
@online{AlistairCockburn,
title = {{Alistair Cockburn {textendash} Wikipedia}},
year = {2018},
month = {12},
url = {https://de.wikipedia.org/wiki/Alistair_Cockburn},
note = {[Online; accessed 25. Dec. 2018]},
}@book{Cockburn2003,
author = {Cockburn, Alistair},
title = {{Use Cases effektiv erstellen}},
year = {2003},
isbn = {978-382661344-9},
publisher = {REDLINE},
url = {https://www.amazon.de/Cases-effektiv-erstellen-Alistair-Cockburn/dp/3826613449}
}}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
textcolor{red}{footcite UseCase20:
footcite{UseCase20}}
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Ut purus elit,
textcolor{red}{footcite UseCase20:
footcite{UseCase20} }
ut, placerat ac, adipiscing vitae, felis. Curabitur dictum gravida mauris. Nam arcu libero, nonummy eget, consectetuer id, vulputate a, magna. Donec vehicula augue eu neque. Pellentesque habitant morbi tristique senectus et
textcolor{red}{textcite Cockburn2003:
textcite{Cockburn2003} }
et malesuada fames ac turpis egestas. some more
textcolor{red}{footcite AlistairCockburn:
footcite{AlistairCockburn}}
Sed commodo
textcolor{red}{smartcite AlistairCockburn:
smartcite{AlistairCockburn}}
pede. Mauris ut est. Ut quis purus. Curabitur dictum gravida mauris. Nam arcu libero, nonummy eget, consectetuer id, vulputate a, magna.
textcolor{red}{supercite AlistairCockburn:
supercite{AlistairCockburn}} Sed ac odio. Sed vehicula hendrerit sem. Duis non odio. Morbi ut dui. Sed accumsan risus eget odio. In hac habitasse platea dictumst. Pellentesque non elit.
et malesuada fames ac turpis egestas.
textcolor{red}{autocite AlistairCockburn:
autocite{AlistairCockburn}} Curabitur dictum gravida mauris.
printbibliography
end{document}
citing biber footer
2
A numbered bibliography and footnotes? Who came up with something this silly? It doesn't make sense.
– Johannes_B
Jan 12 at 10:27
well, i am writing a thesis and this is a requirement given by the inspectors. I agree with you fully.
– novski
Jan 12 at 10:45
How exactly is the style supposed to work? How do you cite your sources (all in text, all in footnotes, some here, some there)? How should the footnote citations look like? What happens if you cite the same source multiple times on the same page? What happens if you cite a source you've cited before again on a new page? What happens if you cite two sources you've cited before again on a new page in different order? In your example the footnote number is in no way tied to the number in the bibliography.
– moewe
Jan 12 at 14:44
@Johannes_B i could be a nonsense, but this sounds as rather an opinion than objective statement. As a PhD thesis advisor or referee, I find this very convenient.
– Jhor
Jan 12 at 14:52
1
cross-referencing is not the right tag concerning citing bibliographies etc.
– Christian Hupfer
Jan 14 at 15:50
|
show 8 more comments
I have to cite on the page and in a reference seciton at the same time with the same numbering.
I found many different solutions and im not sure what is the correct way to go.
this mwe sample bilds to a reference that shows the footcite with number 1 and in the reference with number 2. Thats not what i need. I nee both with the same number.
documentclass{article}
usepackage{filecontents}
usepackage[
backend=biber,
bibstyle=numeric,
citestyle=verbose,
sorting=none,
]{biblatex}
begin{filecontents}{jobname.bib}
@online{UseCase20,
title = {{Use-Case 2.0 ebook}},
journal = {Ivar Jacobson International},
year = {2014},
month = {7},
note = {[Online; accessed 24. Dec. 2018]},
url = {https://www.ivarjacobson.com/publications/white-papers/use-case-ebook}
}
@online{AlistairCockburn,
title = {{Alistair Cockburn {textendash} Wikipedia}},
year = {2018},
month = {12},
url = {https://de.wikipedia.org/wiki/Alistair_Cockburn},
note = {[Online; accessed 25. Dec. 2018]},
}}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
sometext cite{UseCase20}
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Ut purus elit, vestibulum ut, placerat ac, adipiscing vitae, felis. Curabitur dictum gravida mauris. Nam arcu libero, nonummy eget, consectetuer id, vulputate a, magna. Donec vehicula augue eu neque. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. some more text footcite{AlistairCockburn}
Sed commodo posuere pede. Mauris ut est. Ut quis purus. Sed ac odio. Sed vehicula hendrerit sem. Duis non odio. Morbi ut dui. Sed accumsan risus eget odio. In hac habitasse platea dictumst. Pellentesque non elit.
printbibliography
end{document}
For those who can read German this is the document that causes this question:
And this is a google translated english version (no guarantee that it is correct):
Abbreviations
In the text only abbreviations are to be used, which allows the Duden or which are colloquially familiar. Subject-related terms are either spelled out on first use and the abbreviations used below are added in brackets, or listed in alphabetical order in a glossary to be categorized according to the appendix.
footnotes
References and notes are in footnotes. These are separated from the text by a horizontal line. A small line spacing or a smaller font give the information the right-secondary weight. The footnotes are numbered throughout the work.
Guideline Diploma thesis valid from 2016S page 6 of 9
representations
Tables and figures are consecutively numbered and titled in the work. For example: Fig. 3: Organizational Chart Export Department, Tab. 8: Calculation Scheme
Tables and figures must be commented on, regardless of whether they are in the text or in the appendix. So there are no representations in the preliminary work that are not mentioned at least once in the text.
Greater representations inhibit the flow of thought. It is therefore convenient to include extensive material (e.g., full-page tables) in an appendix (see below)
bibliography
The bibliography gives information on the literature used. All literature used in the work and all information material processed / consulted is listed alphabetically according to the author name or the name of the newspaper / trade journal, for example in the case of official publications after the name of the office or the title of the decree (leaflet, directive, regulations, ordinance etc .).
edit: work in progress:
mwe:
documentclass{article}
usepackage{xcolor}
usepackage{longtable}
usepackage{multirow}
usepackage{filecontents}
usepackage[
style=numeric,
autocite=footnote,
]{biblatex}
begin{filecontents}{jobname.bib}
@online{UseCase20,
title = {{Use-Case 2.0 ebook}},
journal = {Ivar Jacobson International},
year = {2014},
month = {7},
note = {[Online; accessed 24. Dec. 2018]},
url = {https://www.ivarjacobson.com/publications/white-papers/use-case-ebook}
}
@online{AlistairCockburn,
title = {{Alistair Cockburn {textendash} Wikipedia}},
year = {2018},
month = {12},
url = {https://de.wikipedia.org/wiki/Alistair_Cockburn},
note = {[Online; accessed 25. Dec. 2018]},
}@book{Cockburn2003,
author = {Cockburn, Alistair},
title = {{Use Cases effektiv erstellen}},
year = {2003},
isbn = {978-382661344-9},
publisher = {REDLINE},
url = {https://www.amazon.de/Cases-effektiv-erstellen-Alistair-Cockburn/dp/3826613449}
}}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
textcolor{red}{footcite UseCase20:
footcite{UseCase20}}
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Ut purus elit,
textcolor{red}{footcite UseCase20:
footcite{UseCase20} }
ut, placerat ac, adipiscing vitae, felis. Curabitur dictum gravida mauris. Nam arcu libero, nonummy eget, consectetuer id, vulputate a, magna. Donec vehicula augue eu neque. Pellentesque habitant morbi tristique senectus et
textcolor{red}{textcite Cockburn2003:
textcite{Cockburn2003} }
et malesuada fames ac turpis egestas. some more
textcolor{red}{footcite AlistairCockburn:
footcite{AlistairCockburn}}
Sed commodo
textcolor{red}{smartcite AlistairCockburn:
smartcite{AlistairCockburn}}
pede. Mauris ut est. Ut quis purus. Curabitur dictum gravida mauris. Nam arcu libero, nonummy eget, consectetuer id, vulputate a, magna.
textcolor{red}{supercite AlistairCockburn:
supercite{AlistairCockburn}} Sed ac odio. Sed vehicula hendrerit sem. Duis non odio. Morbi ut dui. Sed accumsan risus eget odio. In hac habitasse platea dictumst. Pellentesque non elit.
et malesuada fames ac turpis egestas.
textcolor{red}{autocite AlistairCockburn:
autocite{AlistairCockburn}} Curabitur dictum gravida mauris.
printbibliography
end{document}
citing biber footer
I have to cite on the page and in a reference seciton at the same time with the same numbering.
I found many different solutions and im not sure what is the correct way to go.
this mwe sample bilds to a reference that shows the footcite with number 1 and in the reference with number 2. Thats not what i need. I nee both with the same number.
documentclass{article}
usepackage{filecontents}
usepackage[
backend=biber,
bibstyle=numeric,
citestyle=verbose,
sorting=none,
]{biblatex}
begin{filecontents}{jobname.bib}
@online{UseCase20,
title = {{Use-Case 2.0 ebook}},
journal = {Ivar Jacobson International},
year = {2014},
month = {7},
note = {[Online; accessed 24. Dec. 2018]},
url = {https://www.ivarjacobson.com/publications/white-papers/use-case-ebook}
}
@online{AlistairCockburn,
title = {{Alistair Cockburn {textendash} Wikipedia}},
year = {2018},
month = {12},
url = {https://de.wikipedia.org/wiki/Alistair_Cockburn},
note = {[Online; accessed 25. Dec. 2018]},
}}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
sometext cite{UseCase20}
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Ut purus elit, vestibulum ut, placerat ac, adipiscing vitae, felis. Curabitur dictum gravida mauris. Nam arcu libero, nonummy eget, consectetuer id, vulputate a, magna. Donec vehicula augue eu neque. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. some more text footcite{AlistairCockburn}
Sed commodo posuere pede. Mauris ut est. Ut quis purus. Sed ac odio. Sed vehicula hendrerit sem. Duis non odio. Morbi ut dui. Sed accumsan risus eget odio. In hac habitasse platea dictumst. Pellentesque non elit.
printbibliography
end{document}
For those who can read German this is the document that causes this question:
And this is a google translated english version (no guarantee that it is correct):
Abbreviations
In the text only abbreviations are to be used, which allows the Duden or which are colloquially familiar. Subject-related terms are either spelled out on first use and the abbreviations used below are added in brackets, or listed in alphabetical order in a glossary to be categorized according to the appendix.
footnotes
References and notes are in footnotes. These are separated from the text by a horizontal line. A small line spacing or a smaller font give the information the right-secondary weight. The footnotes are numbered throughout the work.
Guideline Diploma thesis valid from 2016S page 6 of 9
representations
Tables and figures are consecutively numbered and titled in the work. For example: Fig. 3: Organizational Chart Export Department, Tab. 8: Calculation Scheme
Tables and figures must be commented on, regardless of whether they are in the text or in the appendix. So there are no representations in the preliminary work that are not mentioned at least once in the text.
Greater representations inhibit the flow of thought. It is therefore convenient to include extensive material (e.g., full-page tables) in an appendix (see below)
bibliography
The bibliography gives information on the literature used. All literature used in the work and all information material processed / consulted is listed alphabetically according to the author name or the name of the newspaper / trade journal, for example in the case of official publications after the name of the office or the title of the decree (leaflet, directive, regulations, ordinance etc .).
edit: work in progress:
mwe:
documentclass{article}
usepackage{xcolor}
usepackage{longtable}
usepackage{multirow}
usepackage{filecontents}
usepackage[
style=numeric,
autocite=footnote,
]{biblatex}
begin{filecontents}{jobname.bib}
@online{UseCase20,
title = {{Use-Case 2.0 ebook}},
journal = {Ivar Jacobson International},
year = {2014},
month = {7},
note = {[Online; accessed 24. Dec. 2018]},
url = {https://www.ivarjacobson.com/publications/white-papers/use-case-ebook}
}
@online{AlistairCockburn,
title = {{Alistair Cockburn {textendash} Wikipedia}},
year = {2018},
month = {12},
url = {https://de.wikipedia.org/wiki/Alistair_Cockburn},
note = {[Online; accessed 25. Dec. 2018]},
}@book{Cockburn2003,
author = {Cockburn, Alistair},
title = {{Use Cases effektiv erstellen}},
year = {2003},
isbn = {978-382661344-9},
publisher = {REDLINE},
url = {https://www.amazon.de/Cases-effektiv-erstellen-Alistair-Cockburn/dp/3826613449}
}}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
textcolor{red}{footcite UseCase20:
footcite{UseCase20}}
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Ut purus elit,
textcolor{red}{footcite UseCase20:
footcite{UseCase20} }
ut, placerat ac, adipiscing vitae, felis. Curabitur dictum gravida mauris. Nam arcu libero, nonummy eget, consectetuer id, vulputate a, magna. Donec vehicula augue eu neque. Pellentesque habitant morbi tristique senectus et
textcolor{red}{textcite Cockburn2003:
textcite{Cockburn2003} }
et malesuada fames ac turpis egestas. some more
textcolor{red}{footcite AlistairCockburn:
footcite{AlistairCockburn}}
Sed commodo
textcolor{red}{smartcite AlistairCockburn:
smartcite{AlistairCockburn}}
pede. Mauris ut est. Ut quis purus. Curabitur dictum gravida mauris. Nam arcu libero, nonummy eget, consectetuer id, vulputate a, magna.
textcolor{red}{supercite AlistairCockburn:
supercite{AlistairCockburn}} Sed ac odio. Sed vehicula hendrerit sem. Duis non odio. Morbi ut dui. Sed accumsan risus eget odio. In hac habitasse platea dictumst. Pellentesque non elit.
et malesuada fames ac turpis egestas.
textcolor{red}{autocite AlistairCockburn:
autocite{AlistairCockburn}} Curabitur dictum gravida mauris.
printbibliography
end{document}
citing biber footer
citing biber footer
edited Jan 14 at 15:49
Christian Hupfer
149k14195390
149k14195390
asked Jan 12 at 10:11
novskinovski
51939
51939
2
A numbered bibliography and footnotes? Who came up with something this silly? It doesn't make sense.
– Johannes_B
Jan 12 at 10:27
well, i am writing a thesis and this is a requirement given by the inspectors. I agree with you fully.
– novski
Jan 12 at 10:45
How exactly is the style supposed to work? How do you cite your sources (all in text, all in footnotes, some here, some there)? How should the footnote citations look like? What happens if you cite the same source multiple times on the same page? What happens if you cite a source you've cited before again on a new page? What happens if you cite two sources you've cited before again on a new page in different order? In your example the footnote number is in no way tied to the number in the bibliography.
– moewe
Jan 12 at 14:44
@Johannes_B i could be a nonsense, but this sounds as rather an opinion than objective statement. As a PhD thesis advisor or referee, I find this very convenient.
– Jhor
Jan 12 at 14:52
1
cross-referencing is not the right tag concerning citing bibliographies etc.
– Christian Hupfer
Jan 14 at 15:50
|
show 8 more comments
2
A numbered bibliography and footnotes? Who came up with something this silly? It doesn't make sense.
– Johannes_B
Jan 12 at 10:27
well, i am writing a thesis and this is a requirement given by the inspectors. I agree with you fully.
– novski
Jan 12 at 10:45
How exactly is the style supposed to work? How do you cite your sources (all in text, all in footnotes, some here, some there)? How should the footnote citations look like? What happens if you cite the same source multiple times on the same page? What happens if you cite a source you've cited before again on a new page? What happens if you cite two sources you've cited before again on a new page in different order? In your example the footnote number is in no way tied to the number in the bibliography.
– moewe
Jan 12 at 14:44
@Johannes_B i could be a nonsense, but this sounds as rather an opinion than objective statement. As a PhD thesis advisor or referee, I find this very convenient.
– Jhor
Jan 12 at 14:52
1
cross-referencing is not the right tag concerning citing bibliographies etc.
– Christian Hupfer
Jan 14 at 15:50
2
2
A numbered bibliography and footnotes? Who came up with something this silly? It doesn't make sense.
– Johannes_B
Jan 12 at 10:27
A numbered bibliography and footnotes? Who came up with something this silly? It doesn't make sense.
– Johannes_B
Jan 12 at 10:27
well, i am writing a thesis and this is a requirement given by the inspectors. I agree with you fully.
– novski
Jan 12 at 10:45
well, i am writing a thesis and this is a requirement given by the inspectors. I agree with you fully.
– novski
Jan 12 at 10:45
How exactly is the style supposed to work? How do you cite your sources (all in text, all in footnotes, some here, some there)? How should the footnote citations look like? What happens if you cite the same source multiple times on the same page? What happens if you cite a source you've cited before again on a new page? What happens if you cite two sources you've cited before again on a new page in different order? In your example the footnote number is in no way tied to the number in the bibliography.
– moewe
Jan 12 at 14:44
How exactly is the style supposed to work? How do you cite your sources (all in text, all in footnotes, some here, some there)? How should the footnote citations look like? What happens if you cite the same source multiple times on the same page? What happens if you cite a source you've cited before again on a new page? What happens if you cite two sources you've cited before again on a new page in different order? In your example the footnote number is in no way tied to the number in the bibliography.
– moewe
Jan 12 at 14:44
@Johannes_B i could be a nonsense, but this sounds as rather an opinion than objective statement. As a PhD thesis advisor or referee, I find this very convenient.
– Jhor
Jan 12 at 14:52
@Johannes_B i could be a nonsense, but this sounds as rather an opinion than objective statement. As a PhD thesis advisor or referee, I find this very convenient.
– Jhor
Jan 12 at 14:52
1
1
cross-referencing is not the right tag concerning citing bibliographies etc.
– Christian Hupfer
Jan 14 at 15:50
cross-referencing is not the right tag concerning citing bibliographies etc.
– Christian Hupfer
Jan 14 at 15:50
|
show 8 more comments
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f469808%2fwhats-the-correct-way-to-put-a-cite-in-foot-and-the-end-of-the-document-both-at%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f469808%2fwhats-the-correct-way-to-put-a-cite-in-foot-and-the-end-of-the-document-both-at%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
A numbered bibliography and footnotes? Who came up with something this silly? It doesn't make sense.
– Johannes_B
Jan 12 at 10:27
well, i am writing a thesis and this is a requirement given by the inspectors. I agree with you fully.
– novski
Jan 12 at 10:45
How exactly is the style supposed to work? How do you cite your sources (all in text, all in footnotes, some here, some there)? How should the footnote citations look like? What happens if you cite the same source multiple times on the same page? What happens if you cite a source you've cited before again on a new page? What happens if you cite two sources you've cited before again on a new page in different order? In your example the footnote number is in no way tied to the number in the bibliography.
– moewe
Jan 12 at 14:44
@Johannes_B i could be a nonsense, but this sounds as rather an opinion than objective statement. As a PhD thesis advisor or referee, I find this very convenient.
– Jhor
Jan 12 at 14:52
1
cross-referencing is not the right tag concerning citing bibliographies etc.
– Christian Hupfer
Jan 14 at 15:50