italic

Purpose

Finds documents containing arguments in italic.

Syntax

italic()

Arguments

The function has no required arguments.

The function accepts the following optional named parameters:

Parameter

Comments

Supported values

size

Specifies text’s size.

size:=18

name

Specifies font’s name.

name:="Times New Roman"

scope

text — maximum text fragment that matches the query conditions (default value)

token — a token matching the query

sentence — a sentence or its part matching the query

paragraph — a paragraph or its part matching the query

The scope parameter is only applicable if function arguments are not specified.

For example, in the query italic(noun()) query, the scope parameter is unnecessary because the function will find the text fragment corresponding to a noun.

The function works in docx format documents.

Returned Value

Documents matching the query.

Examples

italic(size:=14, name:="Times New Roman") finds texts in italic written in Times New Roman font and 14 size.

italic(size:=14, name:="Times New Roman", noun()) finds nouns in italics written in Times New Roman font and 14 size.

italic(bold()) finds bold text in italics.

italic(bold(noun(), size:=12)) finds nouns written both in bold and italics in size 12.