참고문헌 렌더링 "Pp." "pp." 대신 페이지 번호의 경우

참고문헌 렌더링 "Pp." "pp." 대신 페이지 번호의 경우

내 .bib 파일에는 다음 항목이 포함되어 있습니다.

@incollection{test,
  author = "Ove Grandstrand",
  title       = "Innovation and Intellectual Property Rights",
  editor      = "Jan Fagerberg and David C. Mowery and Richard R. Nelson",
  booktitle   = "The Oxford Handbook of Innovation",
  publisher   = "Oxford University Press",
  address     = "Oxford",
  year        = 2004,
  pages       = "266-290",
  chapter     = 10,
}

humannat 스타일을 사용하여 latex, bibtex 및 natbib 패키지로 컴파일하면 다음과 같은 렌더링이 표시됩니다.

Grandstrand, O. 2004. 혁신과 지적재산권. ~ 안에옥스퍼드 혁신 핸드북, J. Fagerberg, DC Mowery 및 RR Nelson 편집, 10장, Pp. 266-290. 옥스퍼드: 옥스포드 대학 출판부.

물론, "Pp." 틀렸습니다. 첫 번째 p를 대문자로 쓰면 안 됩니다. 여기서 무슨 일이 일어나고 있나요?

업데이트:

제가 사용하고 있는 라텍스 파일은 다음과 같습니다.

\documentclass[11pt]{article} 
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{fancybox}
\usepackage[margin=1in]{geometry}
\usepackage{hyperref}
\usepackage{framed}
\usepackage{fancyhdr}
\usepackage{soul}
\usepackage{multicol}
\usepackage{float}
\usepackage{color}
\usepackage{mathtools}
\usepackage{setspace}
\usepackage[square]{natbib}

\usepackage[T1]{fontenc}
\usepackage[sc,osf]{mathpazo}

 \begin{document}

Here are some natbib examples. You can cite examples using the citation key \citep{bar} in your .bib file. There are commands for in-text citations, like \citet{bar}. And you can pass an option to specify additional details, such as a page or chapter number, as an option \citep[p. 130]{bar}. For another example, see \cite{test}.

\bibliography{references}
\bibliographystyle{humannat}

\end{document}

답변1

그렇게 humannat.bst정의된 것입니다. 샘플 참조 humannat보기여기Pp., 기본적으로 사용된다는 점에 유의하세요 . 스타일 파일을 로 변경하려면 스타일 파일을 수동으로 수정해야 합니다 pp. 다음을 사용하고 싶다면 Bibtex:

  1. humannat.bstCTAN에서 파일을 다운로드하세요.여기.
  2. 편집기로 열고 검색하면 Pp.다음과 같은 줄이 표시됩니다 { "Pp.~" pages n.dashify tie.or.space.connect }.
  3. "Pp.~"을 로 변경 "pp."하고 "P.~"그 아래 줄의 을 로 변경합니다 "p.". (즉, ~P를 제거하고 대문자를 변경합니다.)
  4. .bst파일을 새 이름(예: )으로 복사본으로 저장합니다 humannatpp.bst.
  5. .bst파일을 기본 파일과 동일한 디렉터리에 배치합니다 .tex.
  6. Bibtex 등으로 컴파일하면 끝입니다.

bst

관련 정보