You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a bibtex file using year and month fields. I need to sort the output list by years and within the years by months. As far as I understand the documentation, I can sort it by uasort($entries, 'compare_bib_entry_by_year,compare_bib_entry_by_month');
but this does not give the expected result. The years are still unsorted. The alternatives uasort($entries, 'compare_bib_entry_by_month,compare_bib_entry_by_year');
or
I have a bibtex file using year and month fields. I need to sort the output list by years and within the years by months. As far as I understand the documentation, I can sort it by
uasort($entries, 'compare_bib_entry_by_year,compare_bib_entry_by_month');
but this does not give the expected result. The years are still unsorted. The alternatives
uasort($entries, 'compare_bib_entry_by_month,compare_bib_entry_by_year');
or
also do not sort as expected, because the months are not in the correct order within the individual years.
How can I have a resulting list with correctly sorted time?
Thanks!
The text was updated successfully, but these errors were encountered: