라벨 및 상호 참조에 관한 질문

라벨 및 상호 참조에 관한 질문

기사에서 상호 참조를 사용하려고 합니다. 여기에 내 코드 샘플이 있습니다.

\documentclass[11pt]{amsart}
\usepackage[margin=1in]{geometry}   % set the margins to 1in on all sides
\usepackage{graphicx}              % to include figures
\usepackage{amsmath}               % great math stuff
\usepackage{amsfonts}              % for blackboard bold, etc
\usepackage{amsthm}                % better theorem environments
\usepackage{epsfig}         % For postscript
\usepackage{epic,eepic}       % For epic and eepic output from xfig
\usepackage{showkeys}
\usepackage{pdfsync}
\usepackage{mathdots}
\usepackage{lmodern}






\newtheoremstyle{break}% name
  {}%         Space above, empty = `usual value'
  {}%         Space below
  {\itshape}% Body font
  {}%         Indent amount (empty = no indent, \parindent = para indent)
  {\bfseries}% Thm head font
  {.}%        Punctuation after thm head
  {\newline}% Space after thm head: \newline = linebreak
  {}%         Thm head spec

\theoremstyle{break}
\newtheorem{thm}{Theorem}[section]
\newtheorem{cor}[thm]{Corollary}
\newtheorem{prop}[thm]{Proposition}
\newtheorem{lemma}[thm]{Lemma}
\newtheorem{conj}[thm]{Conjecture}
\newtheorem{quest}[thm]{Question}

\theoremstyle{break}
\newtheorem{defn}[thm]{Definition}
\newtheorem{defns}[thm]{Definitions}
\newtheorem{con}[thm]{Construction}
\newtheorem{exmp}[thm]{Example}
\newtheorem{exmps}[thm]{Examples}
\newtheorem{notn}[thm]{Notation}
\newtheorem{notns}[thm]{Notations}
\newtheorem{addm}[thm]{Addendum}
\newtheorem{exer}[thm]{Exercise}

\theoremstyle{remark}
\newtheorem{rk}[thm]{Remark}
\newtheorem{rks}[thm]{Remarks}
\newtheorem{warn}[thm]{Warning}
\newtheorem{sch}[thm]{Scholium}

\newenvironment{sketchpf}{\noindent{\it Sketch of Proof}\hspace*{1em}}{\qed\bigskip\\}
\newenvironment{proof-idea}{\noindent{\bf Proof Idea}\hspace*{1em}}{\qed\bigskip\\}
\newenvironment{proof-of-lemma}[1]{\noindent{\bf Proof of Lemma #1}\hspace*{1em}}{\qed\bigskip\\}
\newenvironment{proof-attempt}{\noindent{\bf Proof Attempt}\hspace*{1em}}{\qed\bigskip\\}
\newenvironment{proofof}[1]{\noindent{\bf Proof} of #1:\hspace*{1em}}{\qed\bigskip\\}
\newenvironment{remark}{\noindent{\bf Remark}\hspace*{1em}}{\bigskip}

\begin{document}
\begin{prop}\label{2}
   This is just an sample.
\end{prop}
By Proposition \ref{2}, we can see the problem.
\end{document}

그런데 파일을 컴파일해 보니 명제(위 명제의 번호) 옆에 사각형 상자에 "1"이 있고, 참조 부분에는 명제 위에 놓인 사각형 상자에 작은 "1"이 있습니다.

이 정사각형 상자를 제거할 수 있는 방법이 있나요?

감사해요.

여기에 이미지 설명을 입력하세요

답변1

제가 댓글에서 추측한 대로,

\usepackage{showkeys}

내부 라벨을 표시하기 위한 초안 전용 패키지입니다.

관련 정보