失控的争论。 !扫描使用\ next时文件结束

时间:2018-03-08 16:24:29

标签: latex beamer

\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软件的错误,File已经结束并且使用了\ next。 我结束时失去了时间。

1 个答案:

答案 0 :(得分:0)