你好,我收到了选项冲突包错误,因为我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}
。新值将覆盖类设置的值。