我正在尝试使用 插入图片\usepackage[pdftex]{graphicx}
。我的序言中有这个,然后我尝试在标题页上插入图片。我使用命令\includegraphics
。我将图片以 PNG 格式保存在.tex
保存文件的文件中。但是,当我尝试编译时,LaTeX 返回错误\includegraphics is not a valid control sequence
。
我打开了一个新文件,并添加了相同的图片,图片就创建好了。那么为什么我不能将图片添加到标题页中呢?下面是我的完整代码。
\documentclass[12pt,a4paper]{book}
\usepackage[latin1]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage[pdftex]{graphicx}
\newcommand{\HRule}{\rule{\linewidth}{0.5mm}}
\begin{document}
\begin{titlepage}
\begin{center}
% Upper part of the page. The '~' is needed because \\
% only works if a paragraph has started.
% Title
\HRule \\[0.4cm]
{ \huge \bfseries Brian and Sara's Cookbook}\\[0.4cm]
\HRule \\[1.5cm]
% Author and supervisor
\begin{minipage}{0.4\textwidth}
\begin{flushleft} \large
\emph{Author:}\\
Brian \textsc{Maleck}
\end{flushleft}
\end{minipage}
\begin{minipage}{0.4\textwidth}
\begin{flushright} \large
\emph{Author:} \\
Sara \textsc{Comer}
\end{flushright}
\end{minipage}
\includegraphics{cover.png}
\vfill
% Bottom of the page
{\large \today}
\end{center}
\end{titlepage}
\end{document}