estoy usando elmathpartir
paquete y tengo un código generado (por LyX) que coloca un entorno (al que llamaré lines
) en el \inferrule*
y parece molestar pdflatex
cada vez que hay más de dos líneas (separadas por \\
) en él. Intenté varias cosas pero no pude compilar nada mientras hubiera \\
dos líneas separadas en un lines
entorno.
El siguiente código es exactamente el que subí a Pastebin:http://pastebin.com/yBfm1zQ0
\documentclass{article}
\usepackage{mathpartir}
\begin{document}
\newcommand{\testa}{
This is the intended use:
\begin{mathpar}
\inferrule*{
1\\
2
}{
3
}
\end{mathpar}
}
\newcommand{\testb}{
% LaTeX Error: \begin{mathpar} on input line 68 ended by \end{lines}. [\testb]
But (because the code is generated), I have an environment in the rule:
\newenvironment{lines}{}{}
\begin{mathpar}
\inferrule*{
\begin{lines}
1\\
2
\end{lines}
}{
3
}
\end{mathpar}
}
\newcommand{\testc}{
If \textbackslash\textbackslash is renamed \textbackslash{}plop, it works (or well, the output isn't what is expected but I know how to fix it and at least it compiles):
\newcommand{\plop}{\\\relax}
\newenvironment{lines}{}{}
\begin{mathpar}
\inferrule*{
\begin{lines}
1\plop
2
\end{lines}
}{
3
}
\end{mathpar}
}
\newcommand{\testd}{
% LaTeX Error: \begin{mathpar} on input line 70 ended by \end{lines}. [\testd]
And it's not the \textbackslash{}relax that fixes it:
\newenvironment{lines}{}{}
\begin{mathpar}
\inferrule*{
\begin{lines}
1\\\relax
2
\end{lines}
}{
3
}
\end{mathpar}
}
% Line 66
%\testa
\testb
%\testc
%\testd
\end{document}
Gracias de antemano por su ayuda.
Respuesta1
un entorno es un grupo por lo que su código es como
{#1\\#2}
lo cual no funciona, puede definir un no entorno que anule la agrupación para que la definición sea más parecida
{}#1\\#2{}
con dos grupos vacíos espurios en lugar de un grupo alrededor de todo el asunto.
\documentclass{article}
\usepackage{mathpartir}
\begin{document}
\newcommand{\testa}{
This is the intended use:
\begin{mathpar}
\inferrule*{
1\\
2
}{
3
}
\end{mathpar}
}
\makeatletter
\newenvironment{lines}{\endgroup}{\begingroup\def\@currenvir{lines}}
\makeatother
\newcommand{\testb}{
% LaTeX Error: \begin{mathpar} on input line 68 ended by \end{lines}. [\testb]
But (because the code is generated), I have an environment in the rule:
\begin{mathpar}
\inferrule*{
\begin{lines}
1\\
2
\end{lines}
}{
3
}
\end{mathpar}
}
\newcommand{\testc}{
If \textbackslash\textbackslash is renamed \textbackslash{}plop, it works (or well, the output isn't what is expected but I know how to fix it and at least it compiles):
\newcommand{\plop}{\\\relax}
\newenvironment{lines}{}{}
\begin{mathpar}
\inferrule*{
\begin{lines}
1\plop
2
\end{lines}
}{
3
}
\end{mathpar}
}
\newcommand{\testd}{
% LaTeX Error: \begin{mathpar} on input line 70 ended by \end{lines}. [\testd]
And it's not the \textbackslash{}relax that fixes it:
\newenvironment{lines}{}{}
\begin{mathpar}
\inferrule*{
\begin{lines}
1\\\relax
2
\end{lines}
}{
3
}
\end{mathpar}
}
% Line 66
%\testa
\testb
%\testc
%\testd
\end{document}
Respuesta2
Encontré una solución pero no la entiendo >_<
\newcommand{\teste}{
I finally found a fix. Apparently, \textbackslash{}inferrule* doesn't like having several things in its content so if you wrap everything in \{...\}, it works...
\newenvironment{lines}{}{}
\begin{mathpar}
\inferrule*{
{
\begin{lines}
1\\
2
\end{lines}
}
}{
3
}
\end{mathpar}
}
Lo más raro es que si los dos { se tocan y el } también, falla >_<
\newcommand{\teste}{
I finally found a fix. Apparently, \textbackslash{}inferrule* doesn't like having several things in its content so if you wrap everything in \{...\}, it works...
\newenvironment{lines}{}{}
\begin{mathpar}
\inferrule*{{
\begin{lines}
1\\
2
\end{lines}
}}{
3
}
\end{mathpar}
}