@@ -18,7 +18,7 @@ def abstract(self) -> Optional[str]:
1818 @property
1919 def affiliation (self ) -> Optional [List [NamedTuple ]]:
2020 """A list of namedtuples representing listed affiliations in
21- the form (id, name, city, country).
21+ the form ` (id, name, city, country)` .
2222 """
2323 out = []
2424 aff = namedtuple ('Affiliation' , 'id name city country' )
@@ -50,10 +50,10 @@ def authkeywords(self) -> Optional[List[str]]:
5050 @property
5151 def authorgroup (self ) -> Optional [List [NamedTuple ]]:
5252 """A list of namedtuples representing the article's authors organized
53- by affiliation, in the form (affiliation_id, dptid, organization,
53+ by affiliation, in the form ` (affiliation_id, dptid, organization,
5454 city, postalcode, addresspart, country, collaboration, auid, orcid,
55- indexed_name, surname, given_name).
56- If " given_name" is not present, fall back to initials.
55+ indexed_name, surname, given_name)` .
56+ If ` given_name` is not present, fall back to initials.
5757 Note: Affiliation information might be missing or mal-assigned even
5858 when it looks correct in the web view. In this case please request
5959 a correction. It is generally missing for collaborations.
@@ -111,8 +111,8 @@ def authorgroup(self) -> Optional[List[NamedTuple]]:
111111 @property
112112 def authors (self ) -> Optional [List [NamedTuple ]]:
113113 """A list of namedtuples representing the article's authors, in the
114- form (auid, indexed_name, surname, given_name, affiliation). In case
115- multiple affiliation IDs are given, they are joined on ";".
114+ form ` (auid, indexed_name, surname, given_name, affiliation)` . In case
115+ multiple affiliation IDs are given, they are joined on ` ";"` .
116116 Note: The affiliation referred to here is what Scopus' algorithm
117117 determined as the main affiliation. Property `authorgroup` provides
118118 all affiliations.
@@ -146,8 +146,8 @@ def citedby_link(self) -> str:
146146 @property
147147 def chemicals (self ) -> Optional [List [NamedTuple ]]:
148148 """List of namedtuples representing chemical entities in the form
149- (source, chemical_name, cas_registry_number). In case multiple
150- numbers given, they are joined on ";".
149+ ` (source, chemical_name, cas_registry_number)` . In case multiple
150+ numbers given, they are joined on ` ";"` .
151151 """
152152 path = ['enhancement' , 'chemicalgroup' , 'chemicals' ]
153153 items = listify (chained_get (self ._head , path , []))
@@ -209,7 +209,7 @@ def confsponsor(self) -> Optional[Union[List[str], str]]:
209209 @property
210210 def contributor_group (self ) -> Optional [List [NamedTuple ]]:
211211 """List of namedtuples representing contributors compiled by Scopus,
212- in the form (given_name, initials, surname, indexed_name, role).
212+ in the form ` (given_name, initials, surname, indexed_name, role)` .
213213 """
214214 path = ['source' , 'contributor-group' ]
215215 items = listify (chained_get (self ._head , path , []))
@@ -240,8 +240,8 @@ def copyright_type(self) -> str:
240240 @property
241241 def correspondence (self ) -> Optional [List [NamedTuple ]]:
242242 """List of namedtuples representing the authors to whom correspondence
243- should be addressed, in the form (surname, initials, organization,
244- country, city_group). Multiple organziations are joined on semicolon.
243+ should be addressed, in the form ´ (surname, initials, organization,
244+ country, city_group)´ . Multiple organziations are joined on semicolon.
245245 """
246246 fields = 'surname initials organization country city_group'
247247 auth = namedtuple ('Correspondence' , fields )
@@ -310,7 +310,7 @@ def endingPage(self) -> Optional[str]:
310310 @property
311311 def funding (self ) -> Optional [List [NamedTuple ]]:
312312 """List of namedtuples parsed funding information in the form
313- (agency, agency_id, string, funding_id, acronym, country).
313+ ` (agency, agency_id, string, funding_id, acronym, country)` .
314314 """
315315
316316 def _get_funding_id (f_dict : dict ) -> list :
@@ -343,7 +343,7 @@ def funding_text(self) -> Optional[str]:
343343
344344 @property
345345 def isbn (self ) -> Optional [Tuple [str , ...]]:
346- """ISBNs Optional[str] to publicationName as tuple of variying length,
346+ """ISBNs ` Optional[str]` to publicationName as tuple of variying length,
347347 (e.g. ISBN-10 or ISBN-13)."""
348348 isbns = listify (chained_get (self ._head , ['source' , 'isbn' ], []))
349349 if len (isbns ) == 0 :
@@ -353,7 +353,7 @@ def isbn(self) -> Optional[Tuple[str, ...]]:
353353
354354 @property
355355 def issn (self ) -> Optional [NamedTuple ]:
356- """Namedtuple in the form (print electronic).
356+ """Namedtuple in the form ` (print electronic)` .
357357 Note: If the source has an E-ISSN, the META view will return None.
358358 Use FULL view instead.
359359 """
@@ -495,9 +495,9 @@ def refcount(self) -> Optional[int]:
495495 @property
496496 def references (self ) -> Optional [List [NamedTuple ]]:
497497 """List of namedtuples representing references listed in the document,
498- in the form (position, id, doi, title, authors, authors_auid,
498+ in the form ` (position, id, doi, title, authors, authors_auid,
499499 authors_affiliationid, sourcetitle, publicationyear, coverDate, volume,
500- issue, first, last, citedbycount, type, text, fulltext).
500+ issue, first, last, citedbycount, type, text, fulltext)` .
501501
502502 `position` is the number at which the reference appears in the
503503 document, `id` is the Scopus ID of the referenced document (EID
@@ -587,7 +587,7 @@ def self_link(self) -> str:
587587 @property
588588 def sequencebank (self ) -> Optional [List [NamedTuple ]]:
589589 """List of namedtuples representing biological entities defined or
590- mentioned in the text, in the form (name, sequence_number, type).
590+ mentioned in the text, in the form ` (name, sequence_number, type)` .
591591 """
592592 path = ['enhancement' , 'sequencebanks' , 'sequencebank' ]
593593 items = listify (chained_get (self ._head , path , []))
@@ -634,7 +634,7 @@ def startingPage(self) -> Optional[str]:
634634 @property
635635 def subject_areas (self ) -> Optional [List [NamedTuple ]]:
636636 """List of namedtuples containing subject areas of the article
637- in the form (area abbreviation code).
637+ in the form ` (area abbreviation code)` .
638638 Note: Requires the FULL view of the article.
639639 """
640640 area = namedtuple ('Area' , 'area abbreviation code' )
0 commit comments