URL 참조: "검색 위치"를 "여기에서 사용 가능"으로 변경

URL 참조: "검색 위치"를 "여기에서 사용 가능"으로 변경

내 참조에 일부 URL이 있습니다. 를 사용할 때 \usepackage[ngerman]{babel}"[일부 URL]에서 검색됨"은 "Zugriff auf [일부 URL]"로 변경됩니다. 예:

"다음에서 검색됨"의 독일어 번역

"Zugriff auf"를 "Verfügbar unter"로 바꾸고 싶습니다. 어떻게 해야 합니까? 여기 MWE가 있습니다

\documentclass[11pt, oneside, a4paper]{book}
\usepackage[ngerman]{babel}
\usepackage[tocbib, natbibapa, nosectionbib]{apacite}
\renewcommand{\doiprefix}{\ignorespaces}
\usepackage{doi}
\usepackage{hyperref}
\hypersetup{colorlinks, citecolor=black, filecolor=black, linkcolor=black, urlcolor=black}
\AtBeginDocument{\urlstyle{APACsame}}

\begin{filecontents}{test.bib}
@misc{A,
    title = {dplyr: A Grammar of Data Manipulation ({Version} 0.3.0.2)},
    author = {Hadley Wickham and Romain Francois},
    year = {2014},
    type = {\bibcomputersoftware},
    url = {http://CRAN.R-project.org/package=dplyr}
    }
}
\end{filecontents}

\begin{document}
\citet{A}.
\bibliographystyle{apacite}
\bibliography{test} 

\end{document}

답변1

정의는 파일에 포함되어 german.apc있으며 다음과 같이 제공됩니다.

\renewcommand{\BRetrievedFrom}{Zugriff auf\ }%

그래서 비슷한 것을 발행하면됩니다\renewcommand ~ 후에 \begin{document}:

샘플 출력

\documentclass[11pt, oneside, a4paper]{book}
\usepackage[ngerman]{babel}
\usepackage[tocbib, natbibapa, nosectionbib]{apacite}
\renewcommand{\doiprefix}{\ignorespaces}
\usepackage{doi}
\usepackage{hyperref}
\hypersetup{colorlinks, citecolor=black, filecolor=black, linkcolor=black, urlcolor=black}
\AtBeginDocument{\urlstyle{APACsame}}

\begin{filecontents}{test.bib}
@misc{A,
    title = {dplyr: A Grammar of Data Manipulation ({Version} 0.3.0.2)},
    author = {Hadley Wickham and Romain Francois},
    year = {2014},
    type = {\bibcomputersoftware},
    url = {http://CRAN.R-project.org/package=dplyr}
    }
}
\end{filecontents}

\begin{document}

\renewcommand{\BRetrievedFrom}{Verf\"ugbar unter\ }

\citet{A}.
\bibliographystyle{apacite}
\bibliography{test} 

\end{document}

파일에는 다음도 포함되어 있습니다.

\renewcommand{\BRetrieved}[1]{Zugriff am {#1} auf\ }%

필드가 제공될 때 사용됩니다 lastchecked. 도 있습니다

\renewcommand{\BAvailFrom}{Verf\"ugbar unter\ }%

그러나 문서에는 이것이 \BRetrievedFrom.

관련 정보