\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。 我结束时失去了时间。
答案 0 :(得分:0)
请参阅 https://tex.stackexchange.com/questions/225581/beamer-file-ended-while-scanning-use-of-next,
\end{frame}
可能不会缩进!