-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Store LaTeX-free version inside each BibTeX entry #518
Comments
Should this field be UTF-8 or how should non-ASCII characters be handled? Should it be stored it the .bib-field or dynamically generated? |
I'd suggest to use the internal Java Unicode encoding. if I understand stefan-kolb right he wants to have a clean and easy to use API. Caching would improve the performance at the cost of memory. May be it can be made configurable? If the cache value exists hand it out, otherwise check whether the caching bit is set and save the generated value in the cache. The performance-hit should not be very large. |
+1 for internal Java Unicode encoding which should be equal to UTF-8 and +1 for caching. No storage in the fields read or written by BibtexParser or BibEntryWriter. Refs #161. |
Just noting that this sort of functionality (minus the caching) have been sort of implemented in the new and improved main table renderer. |
See #1252 |
I think, this is implemented in #2091. |
In a way, but not properly. |
Is implemented in #2102 |
Each bibtex entry should store a latex-free version of its fields for searching and passing to search engines/downloader/general search/... Add wrapper to be able to change default returns of getField to latex-free version of the field value. Probably useful for all fetchers to get correct results.
The text was updated successfully, but these errors were encountered: