LyXAdd a gloss within a footnote

Information and discussion about LyX, a WYSIWYM editor, available for Linux, Windows and Mac OS X systems.
Post Reply
plaerc
Posts: 1
Joined: Sun Dec 02, 2012 1:42 pm

Add a gloss within a footnote

Post by plaerc »

Hi, everybody,

Does anyone know how to add a gloss inside a footnote?
I am using a Linguistics module for glosses.
Thanks!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

nlct
Posts: 276
Joined: Thu Nov 06, 2008 11:15 am

Add a gloss within a footnote

Post by nlct »

Which linguistic package are you using? Here's an example that works fine with the gb4e package:

Code: Select all

\documentclass{article}

\usepackage{gb4e}

\begin{document}

\begin{exe}
\ex
\gll Wenn jemand in die W\"uste zieht \ldots \\
If someone in the desert draws and lives \ldots \\
\trans `if one retreats to the desert and \ldots '
\end{exe}

Now as a footnote\footnote{%
\begin{exe}
\ex
\gll Wenn jemand in die W\"uste zieht \ldots \\
If someone in the desert draws and lives \ldots \\
\trans `if one retreats to the desert and \ldots '
\end{exe}
}

\end{document}
If that's not what you want, you'll have to provide a minimal working example.

Regards
Nicola Talbot
Post Reply