記事用のdegruyter LaTeXテンプレートで問題があります。構文ツリーとlfg AVMを除いてすべて動作します。xelatexでコンパイルし、forestとlangsci-avmを使用しています。言語学そしてlfgそれぞれオプションとして。誰か助けてくれませんか? ありがとうございます。これが最小限のコードです。
\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}
エラーメッセージは次のとおりです:
! 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.)
答え1
DeGruyter パッケージは、すべての表形式をbooktabs
表形式として再定義します。これにより、内部で通常の表形式環境を使用するパッケージが台無しになります。幸いなことに、変更を元に戻す方法も提供されているため、このエラーが発生するような環境では、次のコードforest
を使用できます。
\AtBeginEnvironment{forest}{\baretabulars}
langsci-avm
コマンドの場合は\avm
環境ではなくマクロなので、\pretocmd
from を使用してコマンドにパッチを適用できますetoolbox
。
\usepackage{etoolbox}
\pretocmd{\avm}{\baretabulars}{}{\fail}
パッチを適用しようとしている特定のコマンドの定義方法が原因でパッチ適用が失敗した場合、マクロは\fail
未定義の制御シーケンス エラーを返します。その場合は、その特定のコマンドをパッチ適用する別の方法を見つける必要があります。
以下に最小限の動作例を示します (動作しない例は次のようになるはずです)。
\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}