OpenSesame videos
Python videos
Supported by Supported by

Text

How can I present text?

The most common way to show text is using a sketchpad or feedback item. These allow you to enter text and other visual stimuli. For a questionnaire-like way to show text, you can use forms.

Note: The text_display plugin has been removed as of OpenSesame 3.0.0, because it was outdated and did not provide any functionality that is not offered by forms and sketchpad items.

HTML formatting

You can use a HTML tags, which you can simply insert into your text. You can use these tags everywhere: In sketchpad items, in inline_scripts (provided you use the Canvas class), in forms, etc.

Note: Using color, size, and style directly as keywords in a <span> tag no longer works. This was invalid HTML, and has been deprecated as of OpenSesame 3.2. The example below shows the correct way to change the family (style), size, and color of text.

Example:

OpenSesame supports a sub-set of HTML tags:
- <b>Bold face</b>
- <i>Italic</i>
- <u>Underline</u>

In addition, you can pass 'color', 'size', and 'style' as keywords to a 'span' tag:
- <span style='color:red;'>Color</span>
- <span style='font-size:32px;'>Font size</span>
- <span style='font-family:serif;'>Font style</span>

Finally, you can force newlines with the 'br' tag:
Line 1<br>Line 2

Variables and inline Python

You can embed variables in text using the [...] syntax. For example, the following:

The subject number is [subject_nr]

... might evaluate to (for subject 1):

The subject number is 1

You can embed Python code using the [=...] syntax. For example, the following:

The subject number modulo five is [=var.subject_nr % 5]

... might evaluate to (for subject 7)

The subject number modulo five is 2

Vertical alignment

Note: This section on vertical alignment applies to OpenSesame 3.2

As of OpenSesame 3.2, text is aligned based on the bounding box around the text. This is not ideal if you present text as individual words. For example, the word 'get' (with a downwards-protruding 'g') will appear higher than the word 'bet' (with an upwards-protruding 'b'):

/pages/manual/stimuli/img/text/font-misaligned.png

Figure 1. Individually presented words are not always correctly aligned.

As a workaround, you can place (nearly) invisible characters around the text that you want to display, so that the bounding boxes of the different words are the same height. To make characters invisible, you can place them inside a span and set the color to nearly transparent using an rgba() color.

The following will show 'get', flanked on both sides by (nearly) invisible 'gb' characters:

<span style='color:rgba(0,0,0,.01)'>gb</span>get<span style='color:rgba(0,0,0,.01)'>gb</span>

If you do this for both 'get' and 'bet', the result will be perfectly aligned text:

/pages/manual/stimuli/img/text/font-aligned.png

Figure 2. Perfectly aligned words!

Fonts

Default fonts

You can select one of the default fonts from the font-selection dialogs (Figure 3). These fonts are included with OpenSesame and your experiment will therefore be fully portable when you use them.

/pages/manual/stimuli/img/text/font-selection-dialog.png

Figure 3. A number of default fonts, which are bundled with OpenSesame, can be selected through the font-selection dialogs.

The fonts have been renamed for clarity, but correspond to the following open-source fonts:

Name in OpenSesame Actual font
sans Droid Sans
serif Droid Serif
mono Droid Sans Mono
chinese-japanese-korean WenQuanYi Micro Hei
arabic Droid Arabic Naskh
hebrew Droid Sans Hebrew
hindi Lohit Hindi

Selecting a custom font through the font-selection dialog

If you select 'other ...' in the font selection dialog, you can select any font that is available on your operating system. If you do this, your experiment is no longer fully portable, and will require that the selected font is installed on the system that you run your experiment on.

Placing a custom font in the file pool

Another way to use a custom font is to put a font file in the file pool. For example, if you place the font file inconsolata.ttf in the file pool, you can use this font in a sketchpad item, like so:

draw textline 0.0 0.0 "This will be inconsolata" font_family="inconsolata"

Note that the font file must be a truetype .ttf file.

Supported by Supported by