-
-
Notifications
You must be signed in to change notification settings - Fork 399
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[docs] add DocumenterCitations (#3596)
* [POC] BibTeX -> cite with DocumenterCitations * fix format * Fix * Add Knuth * Update make.jl * Update documentation.yml * Update * Update docs/make.jl * Apply suggestions from code review * Try with accents --------- Co-authored-by: Oscar Dowson <[email protected]> Co-authored-by: odow <[email protected]>
- Loading branch information
1 parent
280f5fb
commit 60dc624
Showing
6 changed files
with
108 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
.citation dl { | ||
display: grid; | ||
grid-template-columns: max-content auto; } | ||
.citation dt { | ||
grid-column-start: 1; } | ||
.citation dd { | ||
grid-column-start: 2; | ||
margin-bottom: 0.75em; } | ||
.citation ul { | ||
padding: 0 0 2.25em 0; | ||
margin: 0; | ||
list-style: none;} | ||
.citation ul li { | ||
text-indent: -2.25em; | ||
margin: 0.33em 0.5em 0.5em 2.25em;} | ||
.citation ol li { | ||
padding-left:0.75em;} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Bibliography | ||
|
||
```@bibliography | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
@Book{Barvinok2002, | ||
author = {Barvinok, Alexander}, | ||
title = {A course in convexity}, | ||
publisher = {American Mathematical Society}, | ||
series = {Graduate studies in mathematics}, | ||
year = {2002}, | ||
volume = {54}, | ||
doi = {https://doi.org/10.1090/gsm/054}, | ||
} | ||
|
||
@Article{Bertsimas2018, | ||
author = {Bertsimas, Dimitris and Gupta, Vishal and Kallus, Nathan}, | ||
journal = {Mathematical Programming}, | ||
title = {Data-driven robust optimization}, | ||
year = {2018}, | ||
issn = {1436-4646}, | ||
number = {2}, | ||
pages = {235--292}, | ||
volume = {167}, | ||
doi = {10.1007/s10107-017-1125-8}, | ||
} | ||
|
||
@Article{Knuth1994, | ||
author = {Knuth, Donald E.}, | ||
title = {The sandwich theorem}, | ||
journal = {The Electronic Journal of Combinatorics}, | ||
volume = {1}, | ||
year = {1994}, | ||
doi = {10.37236/1193}, | ||
} | ||
|
||
@InProceedings{Linial2002, | ||
author = {Linial, Nathan}, | ||
title = {Finite Metric Spaces: Combinatorics, Geometry and Algorithms}, | ||
year = {2002}, | ||
address = {New York, NY, USA}, | ||
pages = {63}, | ||
publisher = {Association for Computing Machinery}, | ||
series = {SCG '02}, | ||
doi = {10.1145/513400.513441}, | ||
isbn = {1581135041}, | ||
location = {Barcelona, Spain}, | ||
numpages = {1}, | ||
} | ||
|
||
@Book{Matousek2013, | ||
author = {Matou{\v{s}}ek, Jiri}, | ||
publisher = {Springer Science \& Business Media}, | ||
title = {Lectures on discrete geometry}, | ||
year = {2013}, | ||
isbn = {978-1-4613-0039-7}, | ||
number = {1}, | ||
series = {Graduate Texts in Mathematics}, | ||
volume = {212}, | ||
doi = {10.1007/978-1-4613-0039-7}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters