我通常将其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}