Digiclass:Tutorial

From The Digital Classicist Wiki
Revision as of 18:06, 26 November 2025 by GabrielBodard (talk | contribs) (first version of tutorial page (with thanks to Becky, Elli, Darcy, Tom, Sarah, Paolo, etc.))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Overview

The Digital Classicist Wiki contrains three broad types of page:

  1. Projects, which may be based on fixed-term funding or long-term research by single scholars or teams, often including a concrete (usually digital) output
  2. Tools, including those not specific to classics or ancient studies, but which are also used to study, find or transform ancient data
  3. Methods, overview or FAQs, which do not necessary address individual projects or tools (but may in some cases link to several)

Most pages include the following structure, as appropriate:

  • Available (where the project or tool can be found, URL or other information (including library records, description of legacy resources)
  • Authors/editors, naming the lead individuals responsible for the resource, project leads, etc.
  • Description, in the editor's own words or quoted (with attribution) from the project website
  • Several categories, to help users browse to the resource. See the list of categories.

Tutorial

  • tba: Link to video tutorial

1. Request an account

The “Create Account” option in this wiki has been disabled to limit spambots, so accounts have to be created for you by one of the administrators. Please contact any one of the people listed at Administrators to request an account. Please give a brief explanation of who you are and the reason for your interest in editing the Wiki.

Your username and password will be sent to you when your account is created. The default format for your username will be “ForenameSurname”. If you have a usual or preferred name that may not be obvious to the administrator from your email, please provide that information in the email requesting access.

2. Log in

In the upper-right corner, click “Log in.” Enter your username and password (as provided in step 1, above). If this is your first time logging in, you should change your password to something both more secure and memorable.

3. Wiki Syntax

It is possible to use the wiki markup toolbar at the top of the editing area to insert markup as you edit. However, you should be familiar with the conventions used in wiki markup, especially if you are editing an existing page. The following are the most commonly used formatting codes in the Digital Classicist wiki. Mediawiki provides a comprehensive guide to formatting, linking and other markup.

Headings

Enclose the heading text in equal signs.

  • = Level 1 heading = will create a level-one heading (equivalent to html <h1>)
  • == Level 2 heading == will create a level-two heading (equivalent to html <h2>)
  • === Level 3 heading === will create a level-three heading (equivalent to html <h3>)
    • up to
  • ====== Level 6 heading ====== will create a level-six heading (equivalent to html <h6>)

Try to use headings in sequence, so that you only use level 4 if it is preceded by levels 1, 2, and 3 for example. If there are 4 or more headings (of any level) in a document, a table of contents will automatically be generated at the top of the page.

Note: In order for headings to render correctly, there should be no spaces at the beginning of the line.

Italic

''italicized txt'' renders as italicized txt

Bold

'''bolded txt''' renders as bolded txt

Links

Links usually have two parts: the link text, which is what a user sees and clicks on, and the URL, the actionable link address. In some cases, these are the same, as when a URL is visible and clickable in a document.

There are two main permutations of link syntax.

  • To link to a page in the Digital Classicist Wiki, just put the name of the page inside double square brackets. For example, [[Prosopographia Imperii Romani]] will display as Prosopographia Imperii Romani and link to the project description page. Note that the text inside the double square brackets is the name of the page, not the actual link. If you would like link text that differs from the page name, you can use the full syntax, which includes the link text separated from the link address by a vertical bar. For example, [[Prosopographia Imperii Romani|Roman Prosopography]] will display as Roman Prosopography but link to the same page as in the fist example.
  • To link to an external page, the syntax is similar but not identical. The link text and link address are enclosed in single square brackets, and there is no need for the vertical bar to separate them. For example, [http://nytimes.com New York Times] will display as New York Times and link to the NY Times web site. You can also specify only the link address without square brackets, if you want the URL to be the visible, clickable link. http://nytimes.com will display as http://nytimes.com. Single square brackets around the URL only will create a numbered reference linking to that address: [http://nytimes.com] will display as [1].

Media Wiki Help page on Links

Lists

Lists are indicated by putting an asterisk or a hash mark at the beginning of a line. Each line in unordered or bullet list begins with an asterisk. A second level is indicated using two asterisks, with additional asterisk rendering as further nesting.

* First unordered list item
* Second unordered list item
** A nested item
*** A further nested item

renders as:

  • First unordered list item
  • Second unordered list item
    • A nested item
      • A further nested item

Ordered or numbered lists work exactly the same way, but instead of an asterisk, you insert a hash mark.

# First unordered list item
# Second unordered list item
## A nested item
### A further nested item

renders as:

  1. First unordered list item
  2. Second unordered list item
    1. A nested item
      1. A further nested item

Media Wiki Help page on Lists