0

I would like to have an example without a number in parentheses on the left. Is it possible?

Evgenii
  • 103
  • Please post MWE of what u tried – MadyYuvi Feb 15 '20 at 06:08
  • Welcome to TeX-SX! As a new member, it is recommended to visit the Welcome and the Tour pages to be informed about our format and also to know about Minimal Example. Otherwise, more specifically about your question: I think that you should precise a lot your question including your tries and research! – R. N Feb 15 '20 at 08:43

1 Answers1

1

The label can be set with an optional argument in brackets, see for example page 7 of the manual where \a.[$\alpha$)] and \b.[$\beta$)] are used to print the labels α) and β). You can also provide an empty argument [] to print an example without a label.

MWE:

\documentclass{article}
\usepackage{linguex}
\begin{document}
\ex. First example

\ex.[] Unnumbered example

\ex. Next example

\end{document}

Result:

enter image description here

You can also use the expex package (see for example Unnumbered linguistic examples with glosses) which defines the command \exdisplay for unnumbered examples. Unlike \ex.[] in the \linguex package, \exdisplay is not indented. The default line spacing is bigger.

MWE:

\documentclass{article}
\usepackage{expex}
\begin{document}
\ex First example \xe
\exdisplay Unnumbered example \xe
\ex Next example \xe
\end{document}

Result:

enter image description here

Marijn
  • 37,699