LyX 未定义控制序列 \input

LyX 未定义控制序列 \input

我是新用户。我在使用 lyX 时遇到了麻烦,尤其是不知道如何\input{file.tex}正确使用。错误:“未定义的控制序列”。实际上,我不确定我必须在哪里指定路径,以便 LyX 可以识别并找到它。到目前为止,我使用了插入 > 浮动 > 表格(在这里我要附加 2 个不同的表格)。在 LateX 序言中(文档 > 设置 > LateX 序言),我使用以下内容:

% Packages for tables
\usepackage{booktabs}% Pretty tables
\usepackage{threeparttablex}% For Notes below table

% *****************************************************************
% siunitx
% *****************************************************************
\newcommand{\sym}[1]{\rlap{#1}} 

\usepackage{siunitx}
    \sisetup{
        detect-mode,
        group-digits            = false,
        input-symbols           = ( ) [ ] - +,
        table-align-text-post   = false,
        input-signs             = ,
        }   

% Character substitution that prints brackets and the minus symbol in text mode. Thanks to David Carlisle
\def\yyy{%
  \bgroup\uccode`\~\expandafter`\string-%
  \uppercase{\egroup\edef~{\noexpand\text{\llap{\textendash}\relax}}}%
  \mathcode\expandafter`\string-"8000 }

\def\xxxl#1{%
\bgroup\uccode`\~\expandafter`\string#1%
\uppercase{\egroup\edef~{\noexpand\text{\noexpand\llap{\string#1}}}}%
\mathcode\expandafter`\string#1"8000 }

\def\xxxr#1{%
\bgroup\uccode`\~\expandafter`\string#1%
\uppercase{\egroup\edef~{\noexpand\text{\noexpand\rlap{\string#1}}}}%
\mathcode\expandafter`\string#1"8000 }

\def\textsymbols{\xxxl[\xxxr]\xxxl(\xxxr)\yyy}


% *****************************************************************
% Estout related things
% *****************************************************************
\let\estinput=\input % define a new input command so that we can still flatten the document

\newcommand{\estwide}[3]{
        \vspace{.75ex}{
            \textsymbols% Note the added command here
            \begin{tabular*}
            {\textwidth}{@{\hskip\tabcolsep\extracolsep\fill}l*{#2}{#3}}
            \toprule
            \estinput{#1}
            \bottomrule
            \addlinespace[.75ex]
            \end{tabular*}
            }
        }   

\newcommand{\estauto}[3]{
        \vspace{.75ex}{
            \textsymbols% Note the added command here
            \begin{tabular}{l*{#2}{#3}}
            \toprule
            \estinput{#1}
            \bottomrule
            \addlinespace[.75ex]
            \end{tabular}
            }
        }

% Allow line breaks with \\ in specialcells
\newcommand{\specialcell}[2][c]{%
    \begin{tabular}[#1]{@{}c@{}}#2\end{tabular}
}

% *****************************************************************
% Custom subcaptions
% *****************************************************************
% Note/Source/Text after Tables
% The new approach using threeparttables to generate notes that are the exact width of the table.
\newcommand{\Figtext}[1]{%
    \begin{tablenotes}[para,flushleft]
    \hspace{6pt}
    \hangindent=1.75em
    #1
    \end{tablenotes}
    }
\newcommand{\Fignote}[1]{\Figtext{\emph{Note:~}~#1}}
\newcommand{\Figsource}[1]{\Figtext{\emph{Source:~}~#1}}
\newcommand{\Starnote}{\Figtext{* p < 0.1, ** p < 0.05, *** p < 0.01. Standard errors in parentheses.}}% Add significance note with \starnote

感谢您的支持!谢谢!

答案1

该命令\input{}应该可以在没有用户前言的新 LyX 文件中以及有您的前言的情况下工作。在文档正文中尝试此操作:

  1. Ctrl+L(这会产生一个 ERT——邪恶的红色文本——框)
  2. 在 ERT 框内写入\input{/your/path/here/file}(可以省略.tex扩展名)或者仅\input{file} 在子文档与主文档位于同一目录中时写入。

您可以使用菜单获得相同的结果Insert > File > Children document(或类似的菜单,我无法检查确切的英文标签)。结果是相同的,唯一的区别是,您将看到一个可点击的灰色框,该框可以通过 Lyx 窗口进行更改,而不是被 LyX 忽略的 LaTeX 代码:

平均能量损失

如果您遇到“未定义控制序列”错误,则应归因于子文档中的某些违规命令。请注意,这file.tex必须只是文档主体的一部分,而不是完整的 LaTeX 文档。首先检查是否可以与一些纯文本(“ ”就足够了)或简单的表格配合\input{}使用,如下所示:Hello, Word!

\begin{tabular}{|l|l|l|}
\hline
    11 & 12 & 13\\
    21 & 22 & 23\\
    31 & 32 & 33\\
\hline
\end{tabular}

相关内容