多行出现“未定义控制序列”错误

多行出现“未定义控制序列”错误

我收到几行“未定义的控制序列”错误消息:“未定义的控制序列”(在“\pagebreak”之后,我按 ENTER 键以输入一个空行)、“未定义的控制序列 \section”和“未定义的控制序列 \end{document}”。

这是我第一次在 Windows 7 上安装 TeXstudio。在安装 TeXstudio 之前,我也安装了 MiKTeX。此外,我在 Windows XP 上尝试了代码,没有收到任何错误消息。

完整代码如下。

\documentclass[a4paper]{article}
\usepackage{graphicx,float}
\floatstyle{boxed}
\usepackage[toc,page]{appendix}
\usepackage{hyperref}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{textcomp}
\usepackage{multirow}
\usepackage{natbib}
\usepackage{tikz}
\usetikzlibrary{decorations.pathreplacing}
\usetikzlibrary{decorations.pathmorphing, patterns,shapes}
\usepackage{preview}
\usepackage[affil-it]{authblk}
\usepackage{amsthm}
\newtheorem{proposition}{Proposition}
\newtheorem{lemma}{Lemma}


\title{the title}
\begin{document}
\date{March 4, 2014}
\maketitle
\pagebreak

hi

\section{Intro}

This is the main text.

\end{document}

答案1

以下最小示例重现了该问题:

\documentclass{article}
\usepackage{tikz}
\usepackage{preview}

\begin{document}

This is the main text.

\end{document}

这显然是一种不良的相互作用(不相容性)tikzpreview。要么放弃加载preview,要么用包选项加载[active]

相关内容