https://github.com/altaris/bibliography
My main bibliography file :books:
https://github.com/altaris/bibliography
bibliography latex
Last synced: 3 months ago
JSON representation
My main bibliography file :books:
- Host: GitHub
- URL: https://github.com/altaris/bibliography
- Owner: altaris
- License: mit
- Created: 2018-11-15T10:18:09.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-07T09:29:23.000Z (over 4 years ago)
- Last Synced: 2025-01-07T22:39:04.346Z (4 months ago)
- Topics: bibliography, latex
- Language: TeX
- Homepage:
- Size: 505 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# **何それ**:question::exclamation:
This repo stores by main bibliography `.bib` file. If you read this, you
probably are collaborating with me (sorry about that) on writing a TeX
document.# Contributing
The preferred way to edit the bibliography is by using
[Jabref](http://www.jabref.org/). Regardless, here is a couple guidelines
:pray:## 1. The BibTeX key
It should be the name of the first author (first letter capitalized, all
accents and spaces removed), followed by the year. If that key is aleady used,
add a lowercase letter. Here are some examples:
```
@Book{Adamek1994a,
title = {Locally presentable and accessible categories},
publisher = {Cambridge University Press, Cambridge},
year = {1994},
author = {Ad{\'{a}}mek, Ji{{\v{r}}}{\'{i}} and Rosick{\'{y}}, Ji{{\v{r}}}{\'{i}}},
volume = {189},
series = {London Mathematical Society Lecture Note Series},
isbn = {0-521-42261-2},
doi = {10.1017/CBO9780511600579},
keywords = {18Axx (18-02)},
mrnumber = {1294136},
pages = {xiv+316},
}
```## 2. Names
The `author` field is list of names (of the authors), and should satisfy the
following grammar:
```
AUTHOR_FIELD_VALUE ::= {AUTHOR_LIST}
AUTHOR_LIST ::= AUTHOR_NAME
| AUTHOR_NAME and AUTHOR_LIST
AUTHOR_NAME ::= first_name, last_name
```
(it is not LL1 but i'm sure you can manage)## 3. Special characters
Do not assume unicode is supported, so use LaTeX macros instead of special
characters directly. [Here is a usefule cheatsheet for
accents](https://en.wikibooks.org/wiki/LaTeX/Special_Characters#Escaped_codes).# Testing
A test TeX file is present in directory (test)[test/]. You can compile it by
running
```sh
cd test
make
```
The output pdf should display the whole bibliography.# References
* [BibTeX guide, including a table of mandatory
fields](https://en.wikibooks.org/wiki/LaTeX/Bibliography_Management#BibTeX)