modelo degryuter: árvores florestais e matrizes langsci-avm não são exibidas

modelo degryuter: árvores florestais e matrizes langsci-avm não são exibidas

Estou tendo alguns problemas com o modelo de látex degruyter para artigos. Tudo funciona, exceto árvores sintáticas e AVMs lfg. Estou compilando com xelatex e estou usando o Forest e o langsci-avm comlinguísticaelfgcomo opções respectivamente. Alguém poderia me ajudar, por favor? Obrigado. Aqui está o código mínimo.

\documentclass[english]{article}
\RequirePackage[no-math]{fontspec}[2017/03/31]%(only for the luatex or the xetex engine)
\usepackage{fontspec}
\setmainfont{Linux Libertine}
\usepackage[small]{dgruyter}
% get packages from local sty-file
\usepackage{packages}

% Note: A different font will be used in the final version
%\usepackage{times}
% Names for Tables, Figures
\AtBeginDocument{%
  \renewcommand\tablename{Table}
}

\AtBeginDocument{%
  \renewcommand\figurename{Figure}
}

% We use todonotes for margin notes

\newcommand{\jdg}[1]{\makebox[0pt][r]{\normalfont#1\ignorespaces}}

\usepackage{ifthen}
\newboolean{finalcompile}

% Please set finalcompile to true for the final version, to false otherwise

\setboolean{finalcompile}{true}
%\setboolean{finalcompile}{false}

\ifthenelse{\boolean{finalcompile}}{
\usepackage[disable]{todonotes}
\usepackage[final]{showlabels}
}{
\usepackage{todonotes}
\newcommand{\todonote}[2][]{\tikzexternaldisable\todo[#1]{#2}\tikzexternalenable} %needed for externalization
\usepackage[right]{showlabels}
\paperwidth=\dimexpr \paperwidth + 6cm\relax
\marginparwidth=\dimexpr \marginparwidth + 6cm\relax
%\makeatletter 
%\@mparswitchfalse
%\makeatother
%\normalmarginpar
%\reversemarginpar
}

\usepackage[linguistics]{forest}
\usepackage[lfg]{langsci-avm}
\usepackage{pst-node}
\avmdefinestyle{plain}{attributes=\scshape,
values=\scshape,
types=\normalfont}


\begin{document}

\begin{forest}
[IP[DP][I']]
\end{forest}


\avm[style=plain]{
[pred & `silue']}


\end{document}

Aqui está a mensagem de erro:

! Misplaced \noalign.
\bottomrule ->\noalign
{\ifnum 0=`}\fi \@aboverulesep =\aboverulesep \global...
l.67 \end{forest}
I expect to see \noalign only after the \cr of
an alignment. Proceed, and I'll ignore this case.
! Missing } inserted.
<inserted text>
}
l.67 \end{forest}
I've inserted something that you may have forgotten.
(See the <inserted text> above.)
With luck, this will get me unwedged. But if you
really didn't forget anything, try typing `2' now; then
my insertion and my current dilemma will both disappear.
! Missing \endgroup inserted.
<inserted text>
\endgroup
l.67 \end{forest}
I've inserted something that you may have forgotten.
(See the <inserted text> above.)

Responder1

O pacote DeGruyter redefine todos os tabulares como booktabstabulares, o que atrapalha um pacote que usa ambientes tabulares regulares internamente. Felizmente, eles também forneceram uma maneira de desfazer a alteração, portanto, para qualquer ambiente forestque cause esse erro, você pode usar:

\AtBeginEnvironment{forest}{\baretabulars}

No caso do langsci-avmcomando \avmé uma macro em vez de um ambiente, então você pode corrigir o comando usando \pretocmdfrom etoolbox:

\usepackage{etoolbox}
\pretocmd{\avm}{\baretabulars}{}{\fail}

Se a correção falhar devido à forma como o comando específico que você está tentando corrigir está definido, a \failmacro retornará um erro de sequência de controle indefinida; nesse caso, você precisará encontrar outra maneira de corrigir esse comando específico.

Aqui está um exemplo mínimo de trabalho (e é assim que seu exemplo não funcional deveria ser).

\documentclass[english]{article}
\RequirePackage[no-math]{fontspec}[2017/03/31]%(only for the luatex or the xetex engine)
\usepackage{fontspec}
\usepackage[small]{dgruyter}

\usepackage[linguistics]{forest}
\AtBeginEnvironment{forest}{\baretabulars}
\usepackage[lfg]{langsci-avm}
\pretocmd{\avm}{\baretabulars}{}{\fail}
\avmdefinestyle{plain}{attributes=\scshape,
values=\scshape,
types=\normalfont}


\begin{document}

\begin{forest}
[IP[DP][I']]
\end{forest}


\avm[style=plain]{
[pred & `silue']}


\end{document}

saída de código

informação relacionada