-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc(bibliograpy): more scope examples
- Loading branch information
Samuel Andrés
committed
Nov 3, 2024
1 parent
c3b0981
commit 7ee17cf
Showing
3 changed files
with
27 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
from bibliograpy.api import * | ||
|
||
|
||
MAP_PROJECTIONS = Book.generic(cite_key='map_projections', | ||
editor='UNITED STATES GOVERNMENT PRINTING OFFICE, WASHINGTON', | ||
publisher='', | ||
title='Map Projections - A Working Manual', | ||
year='1987', | ||
non_standard=NonStandard(url='https://pubs.usgs.gov/pp/1395/report.pdf'), | ||
scope=SHARED_SCOPE) |
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,12 @@ | ||
from bibliograpy.api import * | ||
|
||
SCOPE: dict[str, Reference] = {} | ||
|
||
|
||
MAP_PROJECTIONS = Book.generic(cite_key='map_projections', | ||
editor='UNITED STATES GOVERNMENT PRINTING OFFICE, WASHINGTON', | ||
publisher='', | ||
title='Map Projections - A Working Manual', | ||
year='1987', | ||
non_standard=NonStandard(url='https://pubs.usgs.gov/pp/1395/report.pdf'), | ||
scope=SCOPE) |
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