Vos commentaires

You are using the old format, which is the one that had the limitation for groups. As indicated in this comment, you need to use

https://bibbase.org/zotero-group/:userID/:groupID

to get the whole group content.

Hi Alexandra,

As has already been mentioned the function "generate BibBase page from your Zotero Library" is limited to very few references.

Can you elaborate? I don't think anyone has said anything about the page generated from their library yet. That one should not be limited, and at least for me, I see my entire library. The limitation has always been with collection and in the past also with groups. How many items do you have in your library and how many are displayed? If possible, could you also send me a link to the page/URL where you see things missing?

Thanks.

Thanks. I took a look and poked around a little. I do get the sense that you are right and that it is some sort of incompatibility between the libraries used by BibBase and others on your page. Could you try the following workaround to see whether this works?

1. do not use folding

2. add this small script to your page:

<script type="text/javascript">
  window.onload = function() {
    setTimeout(toggleAll, 1000);
  };
</script>

The idea here is let your page finish loading everything it wants (incl. its own libraries), and only then fold everything.

Let me know if that works.

Could you create a separate page where the default is folded? I'd need to see it in-situ to tell what might be going wrong.

I can't reproduce that issue. In this example, e.g., it is working:

https://bibbase.org/show?bib=https://bibbase.org/bibs/thesis.bib&folding=1

Can you send me a link/URL to the page where you are having this issue?

Great suggestions! Just added 1 and 1.2, which were easy. Still need to collect population data to do 2.

Thanks for the suggestion. That does seem useful in cases of long reference lists, but not so much for the average BibBase user who uses it to list their own publication. That said, we'll look into what it would take. Can you point us to that page of yours with the 6000 references so we can use that as an example to consider?

There seems to be some funny CSS rules on your page (in style.css) that dictate a margin-top:


@media only screen and (min-width: 721px) img {
    border-radius: 5%;
    height: auto;
    margin-top: 8%;
    max-width: 75%;
}
@media only screen and (min-width: 721px) img {
    border-radius: 5%;
    height: auto;
    margin-top: 8%;
    max-width: 75%;
}

When I disable that margin-top, it renders correctly.

Not sure whether you can remove that rule in your style.css, if not then you should still be able to overwrite it by adding:


img.bibbase_icon {
  margin-top: 0px;
}

Does that work?

Mike, thanks for suggesting this, we finally got around fixing it and I agree, it makes things a lot easier to read.