Linguex 光泽使 tikzposter 块中的文本变小

Linguex 光泽使 tikzposter 块中的文本变小

我通常将其linguex用于编号示例(包括注释)。但是,当我尝试将其用于tikzposter块内的注释时,文本与块中的其余文本相比显得非常小。如何解决此问题? MWE:

\documentclass{tikzposter}

\usepackage{linguex}

\begin{document}

\block{a block}{

\ex. \a. This is a test \\ % text is normal size
Ceci est un contr\^ole \\
\bg. This is a test \\ % text goes tiny when gloss is invoked
Ceci est un contr\^ole \\

}

\end{document}

答案1

这是由于cgloss4e几年前 LaTeX 内核更改后出现的一个错误。您还需要使用\ag.来引入注释示例,而不是\a.

\documentclass{tikzposter}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\makeatletter\def\new@fontshape{}\makeatother
\usepackage{linguex}

\begin{document}

\block{a block}{

\ex.\ag. This is a test \\ % text is normal size
Ceci est un contrôle \\
\bg. This is a test \\ % text goes tiny when gloss is invoked
Ceci est un contrôle \\
}

\end{document}

代码输出

相关内容