!Latex 错误:包几何选项冲突

!Latex 错误:包几何选项冲突

你好,我收到了选项冲突包错误,因为我geometry只声明了一次包,如下所示:

\documentclass{vldb}
\usepackage{graphicx}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{balance}  % for  \balance command ON LAST PAGE  (only there!)
\usepackage[top=0.75in,left=0.80in,bottom=0.75in,right=0.80in]{geometry}


\newtheorem{Definition}{Definition}[section]
\newtheorem{Deff}{Definition}
\newtheorem{Lemma}{Lemma} [section]
\newtheorem{prop}{Proposition}

\newcounter{example}[section]
\newenvironment{example}[1][]{\refstepcounter{example}\par\medskip
   \noindent \textbf{Example~\theexample. #1} \rmfamily}{\medskip}

\begin{document}

你能帮忙吗?

答案1

显然,该课程vldb已加载了geometry与您想要获得的设置不同的设置。

如果该类用于提交期刊或会议,请不要为设置新值geometry。否则只需执行

\geometry{top=0.75in,left=0.80in,bottom=0.75in,right=0.80in}

你有\usepackage[...]{geometry}。新值将覆盖类设置的值。

相关内容