| This module is rated as alpha. It is ready for limited use and third-party feedback. It may be used on a small number of pages, but should be monitored closely. Suggestions for new features or adjustments to input and output are welcome. |
| Editing of this module by new or unregistered users is currently disabled. See the protection policy and protection log for more details. If you cannot edit this module and you wish to make a change, you can submit an edit request, discuss changes on the talk page, request unprotection, log in, or create an account. |
This page contains the data configurations for Module:IA Citation for all book keys starting with the letter "I".
To add a new citation, follow the existing examples in the code.
- Book Key eg. `['III4']`
- Use a unique yet recognizable name, all caps, spaces converted to "_", and that starts with "I".
- Engine Parameters (Top-level):
- template = (Required) "cite book", "cite journal", etc.
- id = <Internet Archive identifier> (e.g.,
encyclopaediabrit01chisrich). Required for a single book on IA. - query = <Internet Archive search query> (Optional. Use instead of `id` for multi-volume works. Links the title to an IA search page. Page linking will not work.)
- ex. query = 'title:"Encyclopaedia Britannica" AND date:1911'
- iadisplay = "full screen" (Optional. Opens the book in full-screen mode instead of 2-up.)
- iasearch = "none" (Optional. Disables the default dummy search string. More info: Module:IA_Citation#Dummy_search)
- Citation Parameters (Inside `cite_params`):
- cite_params = A table of standard CS1 parameters displayed by default. Users can override these within the invoking templates.
- title, author, year, isbn, etc.
- url = If the work is not on the Internet Archive, omit `id` and `query` from the top level, and provide a hardcoded `url` (e.g., to Google Books) directly inside this `cite_params` table. This method nullifies features such as direct linking to page numbers, full screen display.
- cite_params = A table of standard CS1 parameters displayed by default. Users can override these within the invoking templates.
local library = {}
-- The Ismāʿı̄lı̄s: Their History and Doctrines (1st Edition)
-- Template:Daftary-The Ismailis
library['ISMAILIS_DAFTARY_1990'] = {
template = 'cite book',
id = "ismalstheirhisto0000daft",
cite_params = {
['title'] = "The Ismāʿı̄lı̄s: Their History and Doctrines",
['last'] = "Daftary",
['first'] = "Farhad",
['author-link'] = "Farhad Daftary",
['location'] = "Cambridge",
['publisher'] = "Cambridge University Press",
['year'] = "1990",
['isbn'] = "978-0-521-37019-6"
}
}
-- The Ismāʿı̄lı̄s: Their History and Doctrines (2nd Edition)
-- Template:Daftary-The Ismailis
library['ISMAILIS_DAFTARY_2007'] = {
template = 'cite book',
id = "ismlstheirhistor0000daft_z5a1_2ed",
cite_params = {
['title'] = "The Ismāʿı̄lı̄s: Their History and Doctrines",
['last'] = "Daftary",
['first'] = "Farhad",
['author-link'] = "Farhad Daftary",
['edition'] = "Second",
['location'] = "Cambridge",
['publisher'] = "Cambridge University Press",
['year'] = "2007",
['isbn'] = "978-0-521-61636-2"
}
}
-- The Ottoman Empire, 1300–1650: The Structure of Power by Palgrave Macmillan
-- Template:Imber-The Ottoman Empire, 1300–1650
library['IMBER_THE_OTTOMAN_EMPIRE_2002'] = {
template = 'cite book',
id = "ottomanempire1300000imbe",
cite_params = {
['first'] = "Colin",
['last'] = "Imber",
['author-link'] = "Colin Imber",
['title'] = "The Ottoman Empire, 1300–1650: The Structure of Power",
['publisher'] = "Palgrave Macmillan",
['year'] = "2002",
['location'] = "Basingstoke",
['isbn'] = "978-0-3336-1386-3",
['edition'] = "First"
}
}
library['IMBER_THE_OTTOMAN_EMPIRE_2009'] = {
template = 'cite book',
cite_params = {
['first'] = "Colin",
['last'] = "Imber",
['author-link'] = "Colin Imber",
['title'] = "The Ottoman Empire, 1300–1650: The Structure of Power",
['publisher'] = "Palgrave Macmillan",
['year'] = "2009",
['location'] = "Basingstoke",
['isbn'] = "978-1-1370-1406-1",
['edition'] = "Second"
}
}
library['IMBER_THE_OTTOMAN_EMPIRE_2019'] = {
template = 'cite book',
id = "",
cite_params = {
['first'] = "Colin",
['last'] = "Imber",
['author-link'] = "Colin Imber",
['title'] = "The Ottoman Empire, 1300–1650: The Structure of Power",
['publisher'] = "Red Globe Press",
['year'] = "2019",
['location'] = "London",
['isbn'] = "978-1-352-00496-0",
['edition'] = "Third"
}
}
return library