失控的争论.!扫描使用 ext 时文件已结束


begin{frame}[fragile]
    frametitle{Implementation Strategy}
        These are the scripts to create master and slave databases in both servers.
            begin{verbatim}
                This is the SQL Server Script:
                    CREATE DATABASE master
                    go
                    USE master
                    go
                    CREATE TABLE tabel1(
                    id int identity not null primary key,
                    name varchar(128) not null)
                    INSERT INTO tab1 (name) VALUES ('Test 1')
                    INSERT INTO tab1 (name) VALUES ('Test 2')
                This is the PostgreSQL Script
                    CREATE DATABASE slave OWNER sqlrepl;
                    connect slave
                    CREATE TABLE tabel1(id int not null primary key, name varchar(128) not null);
                    ALTER TABLE tabe11 OWNER TO sqlrepl;
            end{verbatim}
    end{frame}

我发现winetd软件的错误是文件已结束并使用ext。我最终失去了时间找到这个。

https://tex.stackexchange.com/questions/225581/beamer-file-ended-while-scanning-use-of-next,

  end{frame}

不能缩进!

其他事情也可能导致这种情况。

例如,如果在注释算法中的步骤时不使用大写字母"C",即,当您使用 \comment{...} 而不是 \Comment{...} 时。

最新更新