章节中 Linguex 包的问题

章节中 Linguex 包的问题

当我想要在文档的其他章节中使用 \ex. 时,Linguex 包出现了一些问题。它显示了以下错误:

./EncabezadoTesisMSc.tex:100: Runaway argument? \a . John es inglés pero es temperamental \b . inglés(john) $\wedge \ETC. File ended while scanning use of \ex. <inserted text> \par l.100 \include{Kap3/Kap3}

于是我查看了 ./EncabezadoTesisMsc.tex:100 并检查代码中是否存在问题。但是没有问题,因为我已经在上一章中使用了 linguex 包:kap2/kap2

我将从序言中复制并粘贴相关代码。

    \documentclass[12pt,spanish,fleqn,openany,letterpaper,pagesize]{scrbook}

\usepackage[utf8]{inputenc}
\usepackage[spanish]{babel}

\usepackage[]{linguex}


\usepackage{Befehle}


\begin{document}
\pagenumbering{roman}
\include{HojaTitulo/HojaTituloMSc}


    {\newpage{\pagestyle{empty}\cleardoublepage}}
\pagenumbering{arabic}
\include{Kap1/Kap1}
\include{Kap2/Kap2}
\include{Kap3/Kap3}
\include{Kap4/Kap4}
\include{Kap5/Kap5}

\end{document}

在 Kap3.tex 文件中我只是尝试使用然后出现错误。

\chapter{this is chapter 3}
\ex. some example

答案1

您需要一个空行来终止的参数\ex

这有效:

\documentclass{article}
\usepackage[]{linguex}
\begin{document}
\ex. some example

\end{document}

这没有,但给出了错误File ended while scanning use of \ex.

\documentclass{article}
\usepackage[]{linguex}
\begin{document}
\ex. some example
\end{document}

这是一个更长的例子;请注意空行。

\documentclass{scrbook}
\usepackage[]{linguex}
\begin{document}
\ex. First item
\a. First sub-item of first item
\b. Second sub-item of first item
\a. First sub-sub-item of second sub-item of first item
\b. Second sub-sub-item of second sub-item of first item

\ex. Second item
\a. First sub-item of second item
\b. Second sub-item of second item
\a. First sub-sub-item of second sub-item of second item
\b. Second sub-sub-item of second sub-item of second item

\end{document}

enter image description here

相关内容