-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how to enter journal articles deviating from the traditional pages format #847
Comments
There is a field for \documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[style=authoryear, backend=biber]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{betsumiya,
author = {Koichi Betsumiya and Masaaki Harada and Akihiro Munemasa},
title = {A complete classification of doubly even self-dual codes of length 40},
journal = {The Electronic Journal of Combinatorics},
volume = {19},
number = {3},
eid = {P18},
date = {2012},
pages = {1-12},
}
@article{betsumiya:alt,
author = {Koichi Betsumiya and Masaaki Harada and Akihiro Munemasa},
title = {A complete classification of doubly even self-dual codes of length 40},
journal = {The Electronic Journal of Combinatorics},
volume = {19},
number = {3},
date = {2012},
pages = {P18},
pagination = {none},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}
\begin{document}
\cite{sigfridsson,betsumiya,betsumiya:alt}
\printbibliography
\end{document} Alternatively you can use Related questions on TeX.SX: https://tex.stackexchange.com/q/172190/35864, https://tex.stackexchange.com/q/230403/35864, https://tex.stackexchange.com/q/297002/35864 |
Thank you for this detailed answer! I was not aware of the eid entry. In the presence of the pagetotal field, using the pages field for the number of pages feels a bit like cheating. Is there a particular reason why there is no pagetotal for @Article? Would it make sense to add it? |
Well I guess the idea was that I'm not sure if it is a good idea to add Of course there is nothing stopping you from adding the field for your personal documents (https://tex.stackexchange.com/q/151752/35864), but I'm sceptical about adding it to |
7201185 adds a few more words about |
Thank you! I agree that a |
Honestly, I have no idea. I don't have statistics on people's One of the (supposed) selling points of TeX (and LaTeX) is its stability: A TeX document compiled twenty years ago should look the same when I compile it today. As it turns out, absolute stability is incredibly hard to achieve if you want your system to move forward, improve and make use of and adapt to general developments in its surrounding ecosystem. Even the LaTeX kernel is being changed (very carefully, but still) again and moves forward (UTF-8 is now the standard encoding, ...).
I can definitely see that the suggestion makes sense, but we have to keep in mind the possible consequences of such a change and weigh that against the benefits of the change. I personally don't think that having the total number of pages of an With requests like these I usually try to make the case to retain the status quo to show the 'opposite side' of the argument, regardless of whether I believe the change should be made or not.
Yes, that would be an alternative, but not one I would seriously consider. |
@plk Any comments here?
|
I think the |
Wouldn't it be possible to display the |
Yup that would be an option. The question is how we would implement that with as little changes to I would have added the |
Adding For added safety we could implement an Moving/adding
even if many of these styles are more or less actively maintained and even if I have grossly overcounted styles, I think the number of styles we would potentially break is in no relation to the good that would come from adding We could think about adding |
Suggested changes to the standard styles are at #1000. Comments are welcome. |
I'm just a "normal" user, not a style developer. I do, however, find myself increasingly frequently citing papers (most typically FYI, as a stopgap, I've sometimes used non-numbers in |
@spakin Thank you very much for your feedback! It's interesting to see that people are so fond of displaying the number of pages in the bibliography. As I wrote above I'm concerned that adding |
As I mentioned, I personally don't much care if |
I didn't find an answer on this elsewhere, so I hope opening this issue is ok.
There are modern electronic-only journals which deviate from the traditional pages format. Instead, the articles within the same volume get some identifier.
An example is the Electronic Journal of Combinatorics. Let's look at this article. It is given as Volume 19, Issue 3 (2012), Paper #P18. In mathscinet it is given as Electron. J. Combin. 19 (2012), no. 3, Paper 18, 12 pp.
How should we add such references with biblatex?
Type should be article, I guess. The closest thing I can think of is pages = "#P18", pagetotal = "12 pp.". However, "#P18" might couse formatting problems at some places since it is not a page number or a page number range. And the field "pagetotal" is not supported by the type article, at the moment.
The text was updated successfully, but these errors were encountered: