턱받이 파일의 @misc 인용 키 문제

턱받이 파일의 @misc 인용 키 문제

@misc 인용문의 키워드 인수, 특히 해당 키가 정의되는 방식에 문제가 있습니다. 누군가 그 문제를 알고 있습니까?

@misc{CABRAL123,
  Author = {Umberlandia Cabral},
  Date-Added = {2024-04-09 18:58:06 +0000},
  Date-Modified = {2015-04-27 22:43:06 +0000},
  Howpublished = {IBGE},
  Keywords = {wiki},
  Title = {Sistema de Indicadores Culturais: Pais tem quase 40% da população em municipios sem salas de cinema},
  Url = {https://agenciadenoticias.ibge.gov.br/agencia-noticias/2012-agencia-de-noticias/noticias/26239-pais-tem-quase-40-da-populacao-em-municipios-sem-salas-de-cinema},
  Urlaccessdate = {10 abr 2024},
  Year = {2019},
  Bdsk-Url-1 = {https://agenciadenoticias.ibge.gov.br/agencia-noticias/2012-agencia-de-noticias/noticias/26239-pais-tem-quase-40-da-populacao-em-municipios-sem-salas-de-cinema}
}

첫 글인데 기다려주셔서 감사합니다...

문서를 컴파일하면 (??)문서와 로그에 다음이 표시됩니다.

Citation `CABRAL123' on page 1 undefined on input line 210.

‪./main.tex, 210‬
You have cited something which is not included in your bibliography. Make sure that the citation (\cite{...}) has a corresponding key in your bibliography, and that both are spelled the same way.
Learn more

다른 참조에는 아무런 문제가 없습니다. 키 이름이나 날짜 값에 문제가 있다고 이론화하고 있지만 전혀 명백한 것은 없습니다.

답변1

BibTeX나 Biblatex로 보고하신 문제를 재현할 수 없습니다. 그러나 전자의 경우 잘못된 결과를 얻었고 후자의 경우 컴파일 실패를 얻었습니다.

LaTeX가 읽을 때 줄의 나머지 부분을 무시하지 않도록 %제목에서 이스케이프 처리해야 합니다 . .bblBiblatex의 경우 닫는 중괄호가 손실되어 항목이 끝나지 않아 표준 폭주 오류가 발생합니다. BibTeX의 경우 필드 끝은 잃지 않지만 중간에 덩어리가 손실되어 항목이 잘못된 제목으로 조판됩니다.

문제를 해결하려면 \%.

\begin{filecontents*}[overwrite]{\jobname.bib}
@misc{CABRAL123,
  Author = {Umberlandia Cabral},
  Date-Added = {2024-04-09 18:58:06 +0000},
  Date-Modified = {2015-04-27 22:43:06 +0000},
  Howpublished = {IBGE},
  Keywords = {wiki},
  Title = {Sistema de Indicadores Culturais: Pais tem quase 40\% da população em municipios sem salas de cinema},
  Url = {https://agenciadenoticias.ibge.gov.br/agencia-noticias/2012-agencia-de-noticias/noticias/26239-pais-tem-quase-40-da-populacao-em-municipios-sem-salas-de-cinema},
  Urlaccessdate = {10 abr 2024},
  Year = {2019},
  Bdsk-Url-1 = {https://agenciadenoticias.ibge.gov.br/agencia-noticias/2012-agencia-de-noticias/noticias/26239-pais-tem-quase-40-da-populacao-em-municipios-sem-salas-de-cinema}
}
\end{filecontents*}
\documentclass{article}
\usepackage{biblatex}
\bibliography{\jobname}
\begin{document}

\cite{CABRAL123}

\printbibliography

\end{document}

이것이 문제가 아닌 경우 문제는 다음과 같을 수 있습니다.이전의.bib이는 정확하지 않은 메시지를 생성하는 오류의 일반적인 원인이기 때문입니다 .

[자체적으로 수정될 기미가 보이지 않는 Okular 버그로 인해 이미지가 예약되었습니다. 눈요기가 부족한 점 사과드립니다.]

관련 정보