emilianoeheyns
About
- Username
- emilianoeheyns
- Joined
- Roles
- Member
Comments
-
My pleasure. It's a one-line change to add the LB line to RIS, the rest is just the latest RIS translator I grabbed from zotero's github repo just now.
-
Ah, I think you mean this. That modded translator requires BBT to be installed. I've made a new copy that doesn't overwrite the standard RIS translator but adds a new one ("RIS with citation key"): https://gist.github.com/0fbc09d7d6556ebae595e5c8491…
-
The link you included just links to adamsmith's profile. I've forgotten what I did to the translator then and I probably don't have a copy, but if you can link to the thread where we discussed this I can take a look.
-
Next release of BBT will support this behavior.
-
I know it is nitpicking, but that title should lose the outer quotes, and the family name does not need the extra braces.
-
@iagogv how would you expect to see these preprints expressed in biblatex?
-
I thought the comment earlier meant the stock tex exporters also reacted to that setup.
-
@bwiernik if I export a Report with a Type: article line in extra with the stock BibLaTeX exporter I just get a report, and the Type: article in a note field
-
They're in the Zotero preferences, so they'll end up in the prefs.js in your Zotero profile dir.
-
With a BBT postscript: if (Translator.BetterTeX) reference.add({ name: 'key', value: item.itemKey }) but the key is only unique to the library, not across library/groups.
-
I haven't ever dealt with creating/modifying a bib(la)tex style, so I'm not of much help here.
-
For automatic exports you select the format when you set it up at first export. If you export over your existing file, but choose better bibtex rather than better biblatex, check "keep updated", and export, the existing auto-export will be replaced.…
-
You should let zotero manage the extensions, it won't work otherwise. If the extensions are appearing in the "my documents" folder (which is what you mean, right? Not that they are appearing in a Word document?) that indicates your zotero profile is…
-
The better bibtex plugin has a Collected Notes exporter that exports only notes, but the plugin is relatively heavyweight if that's all you need.
-
It is when you install the better bibtex plugin.
-
Next release will ship with CSL YAML import.
-
Edit: wait, the rest is retained? That's not the info I previously received. I've transferred the github discussion to issue 1860, let's continue diagnosis there.
-
I don't readily know of a repo where it would fit, but feel free to put it up somewhere.
-
Do you know why all HTML tags are prefixed with html:? It's the xhtml namespace. It should work but I'd probably need to declare it as xhtml. This will just strip them: #!/usr/bin/env python3 import xml.etree.ElementTree as ET import sys def cite…
-
If you mean you want them sorted on cite count, this works for me: pandoc -s --bibliography=biblio.bib --citeproc main.md | ./count-and-sort.py #!/usr/bin/env python3 import xml.etree.ElementTree as ET import sys class CiteCount: def __init__(…
-
If you change the code to citation_count = {} count = { Cite = function(el) for _, item in pairs(el.citations) do if citation_count[item.id] == nil then citation_count[item.id] = 0 end citation_count[item.id] = cita…
-
Going through live citations + ref extractor could do it, but if all you need are the counts, this should get the job done: citation_count = {} count = { Cite = function(el) for _, item in pairs(el.citations) do if citation_count[item.…
-
I have no explanation for why it would work without error. Obviously nothing has changed about BBT.
-
But then why have this "1st" in the date field at all?
-
That wasn't supposed to be a fix, but an aid in diagnosis. But you can start Zotero normally now? Can you still get me the file zotero_debug.txt?
-
No change.
-
There's actually a few minor differences: there is a pandoc-specific date format that is slightly different the rich-text fields will probably be markdown, although it can be HTML (as HTML is valid markdown) YAML is a really icky format to parse,…
-
I can't replicate this on my windows system. I recall there was something special about having Zotero log to console on windows, anyone here remember what that was?
-
It should be possible with the API though. You'd have to register library ID + item key in the extra field of the item in C so you can find the matching item from A/B.
-
My mistake! I thought you were writing to the db. Sorry!
Upgrade Storage