첫 번째 단편 저자 인쇄물에 저자 이름을 포함하지 않는 방법은 무엇입니까?

첫 번째 단편 저자 인쇄물에 저자 이름을 포함하지 않는 방법은 무엇입니까?

shortauthor 명령으로 작업할 때 텍스트의 첫 번째 shortauthor 인쇄는 다음과 같습니다: ..... (author [shortauthor], year).

다음의 짧은 저자는 동일한 참조로 인쇄됩니다: ..... (짧은 저자, 연도)

텍스트에 인쇄된 인용문(내 참고문헌에 정의된 대로)만 표시되도록 하고 싶습니다. --> (단편 저자, 연도) 첫 번째 인쇄에는 전체 저자가 표시되는 것을 원하지 않습니다.

내가 인용한 문헌은 다음과 같습니다.

    @techreport{BMU2020,
    author = {{BMU \& BfN - Bundesministerium für Umwelt, Naturschutz und nukleare Sicherheit und Bundesamt für Naturschutz}},
    shortauthor = {{BMU \& BFN}},
    file = {:Users/lucafuchs/Documents/Polybox/Masterarbeit Literatur und Bilder/Literatur/Jugendliche und Umwelt/jugend-naturbewusstsein_2020.pdf:pdf},
    keywords = {Bundesministerium f{\"{u}}r Umwelt,Jugend-Naturbewusstsein 2020: Bev{\"{o}}lkerungsumfrage,Naturschutz und biologische Vielfalt,Naturschutz und nukleare Sicherheit (BMU),www.bmu.de},
    title = {{Jugend-Naturbewusstsein 2020}},
    url = {https://www.bmu.de/fileadmin/Daten_BMU/Pools/Broschueren/jugend-naturbewusstsein_2020.pdf},
    year = {2020}
    }

다시 컴파일한 PDF에는 첫 번째 인용에 대해 다음이 표시됩니다.

.... Heranwachsenden eine zentrale Rolle einnimmt” (BMU & BfN - Bundesministerium für Umwelt, Naturschutz und nukleare Sicherheit und Bundesamt für Naturschutz[BMU & BFN], 2020, p. 27.)

하지만 실제로 첫 번째 인쇄물이 다음과 같이 보이도록 하고 싶습니다.

.... Heranwachsenden eine zentrale Rolle einnimmt”(BMU & BfN, 2020, p. 27.)

저는 biblatex를 사용하고 있습니다. 이것이 서문에 제가 입력한 내용입니다.

\usepackage[
backend=biber,
style=apa,
sorting=aynt
]{biblatex}
\addbibresource{Literature.bib}

% maps apacite commands to biblatex commands
\let \citep \cite
\let \citet \textcite
\let \cite \parencite

그리고 내 작업 예는 다음과 같습니다.

 \documentclass[
    oneside,
    11pt, 
    %oneside,
    ngerman, 
    singlespacing, 
    %draft, 
    %nolistspacing, 
    %liststotoc, 
    %toctotoc, 
    %parskip, 
    %nohyperref, 
    headsepline, 
    ]{Class File} 
    
    \usepackage[utf8]{inputenc} % Required for inputting international characters
    \usepackage[T1]{fontenc} % Output font encoding for international characters
    \usepackage{mathpazo} % Use the Palatino font by default
    \usepackage[ngerman]{babel}
    \usepackage[latin1]{inputenc}
    \usepackage{color}
    \usepackage{amssymb}
    \usepackage{amsthm}
    \usepackage{graphicx}
    \usepackage{enumitem}
    \usepackage{natbib}
    \usepackage{color,soul}
    \usepackage{tabu}
    \usepackage{bibgerm}
    \usepackage{tabularx}
    \usepackage{array}
    \usepackage{longtable}
    \usepackage[dvipsnames]{xcolor}
    \usepackage[bottom]{footmisc}
    \newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
    \newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
    \newcolumntype{R}[1]{>{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
    
    \usepackage{booktabs} 
    
    \usepackage[ngerman]{babel}% deutsche Trennregeln
    \usepackage[T1]{fontenc}% wichtig für Trennung von Wörtern mit Umlauten
    \usepackage{microtype}% verbesserter Randausgleich
    
    %UNTEN FüR AUFLISTUNGEN
    \usepackage{enumitem} 
    \newlist{titemize}{itemize}{1}% neue Listenumgebung für Tabellen
    \setlist[titemize]{leftmargin=*,nosep,label=-}
    
    %Tables
    
    \setlength{\parindent}{0pt} %Paragraphen werden nicht eingesetzt
    
    \usepackage[
    backend=biber,
    style=apa,
    sorting=aynt
    ]{biblatex}
    \addbibresource{Literature.bib}
    
    % maps apacite commands to biblatex commands
    \let \citep \cite
    \let \citet \textcite
    \let \cite \parencite
    
    \providecommand{\shortcite}[1]{\cite{#1}}
    
    
    \usepackage[autostyle=true]{csquotes} % Required to generate language-dependent quotes in the bibliography
    
    \usepackage{blindtext}
    
    
    %--------------------------------------------------------------------
    %   MARGIN SETTINGS
    %--------------------------------------------------------------------
    
    \geometry{
        paper=a4paper, % Change to letterpaper for US letter
        inner=2.3cm, % Inner margin
        outer=2.5cm, % Outer margin
        bindingoffset=.5cm, % Binding offset
        top=1.9cm, % Top margin
        bottom=2.2cm, % Bottom margin
        %showframe, % Uncomment to show how the type block is set on the page
    }
    
    %--------------------------------------------------------------------
    %   THESIS INFORMATION
    %--------------------------------------------------------------------
    
    ...
    
    \AtBeginDocument{
    \hypersetup{pdftitle=\ttitle} % Set the PDF's title to your title
    \hypersetup{pdfauthor=\authorname} % Set the PDF's author to your name
    \hypersetup{pdfkeywords=\keywordnames} % Set the PDF's keywords to your keywords
    }
    
    %----------------------------------------------------------------
    % Tables are small now 
    \usepackage{floatrow}
    %---------------------------------------------------------------
    
    %----------------------------------------------------------------
    
    \begin{document}
    
    
    % Tables are small now 
    \floatsetup[table]{font=small}
    
    %----------------------------------------------------------------
    
    \frontmatter % Use roman page numbering style (i, ii, iii, iv...) for the pre-content pages
    
    \pagestyle{plain} % Default to the plain heading style until the thesis style is called for the body content
    
    %----------------------------------------------------------------
    %   TITLE PAGE
    %----------------------------------------------------------------
    
    \begin{titlepage}
    \begin{center}
    
    \includegraphics[width=6cm]{Graphics/eth_logo.eps} %\includegraphics{eth_logo} % University/department logo - uncomment to place it
    
    \vspace*{.06\textheight}
    
    \begin{center}
    \textsc{\Large Master-Arbeit}\\[0.5cm] % Thesis type
    \end{center}
    
    \HRule \\[0.4cm] % Horizontal line
    {\huge \bfseries \ttitle\par}\vspace{0.4cm} % Thesis title
    \HRule \\[1.5cm] % Horizontal line
     
    \begin{minipage}[t]{0.4\textwidth}
    \begin{flushleft} \large
    \emph{Verfasser:}\\
    {\authorname}
    
    \addressname
    \end{flushleft}
    \end{minipage}
    \begin{minipage}[t]{0.45\textwidth}
    \begin{flushright} \large
    \emph{Referent:} \\
    {\supname} \\
    \emph{Koreferent:}\\
    Florian \textsc{Knaus}\\
    \end{flushright}\\
    \end{minipage}\\[3cm]
    
    \vfill
    
    \large \textit{\degreename}\\[0.3cm] % University requirement text
    \textit{}\\[0.4cm]
    \groupname\\\deptname\\[2cm] % Research group name and department name
     
    \vfill
    
    {\large \today}\\[4cm] % Date
     
    \vfill
    \end{center}
    \end{titlepage}
    \let\cleardoublepage\clearpage
    %----------------------------------------------------------------
    %   FOREWORD PAGE
    %----------------------------------------------------------------
    
    \chapter*{Vorwort}
    \addcontentsline{toc}{chapter}{Vorwort}
    ....
    \let\cleardoublepage\clearpage
    
    %----------------------------------------------------------------
    %   ABSTRACT PAGE
    %----------------------------------------------------------------
    \chapter*{Zusammenfassung}
    \addcontentsline{toc}{chapter}{Zusammenfassung}

    \let\cleardoublepage\clearpage
    \let\cleardoublepage\clearpage
    
    %--------------------------------------------------------------------
    %   TABLE OF CONTENTS
    %--------------------------------------------------------------------
    
    \cleardoublepage
    \addcontentsline{toc}{chapter}{\contentsname}
    \tableofcontents % Prints the main table of contents
    \let\cleardoublepage\clearpage
    
    \cleardoublepage
    \addcontentsline{toc}{chapter}{\listfigurename}
    \listoffigures % Prints the list of figures
    \let\cleardoublepage\clearpage
    
    \cleardoublepage
    \addcontentsline{toc}{chapter}{\listtablename}
    \listoftables % Prints the list of tables
    \let\cleardoublepage\clearpage
    
    %--------------------------------------------------------------------
    %   ABBREVIATIONS
    %--------------------------------------------------------------------
    
    \begin{abbreviations}{ll} % Include a list of abbreviations (a table of two columns)
    
    \textbf{BAFU} - Bundesamt für Umwelt - Schweiz\\
    \textbf{BfN} - Bundesamt für Naturschutz - Deutschland\\
    \textbf{BMU} - Bundesministerium für Umwelt, Naturschutz und Nukleare Sicherheit - Deutschland\\
    \textbf{BR} - Biosphärenreservat \\
    \textbf{UBE} - UNESCO Biosphäre Entlebuch\\
    \textbf{WSL} - Eidgenössiche Forschungsanstalt für Wald, Schnee und Landschaft\\
    
    \addcontentsline{toc}{chapter}{Abkürzungsverzeichnis}
    
    \end{abbreviations}
    \let\cleardoublepage\clearpage
    
    %----------------------------------------------------------------
    %   THESIS CONTENT - CHAPTERS
 %----------------------------------------------------------------
    
    
    \mainmatter % Begin numeric (1,2,3...) page numbering
    
    \pagestyle{thesis} % Return the page headers back to the "thesis" style
   
    \include{Chapters/00_Einleitung}
    \include{Chapters/01_Forschungsstand und theoretische Grundlagen} 
    \include{Chapters/02_Forschungsdesign und Methode}
    \include{Chapters/03_Resultate}
    \include{Chapters/04_Diskussion} 
    \include{Chapters/05_Fazit}
    
    %--------------------------------------------------------------------
    %   THESIS CONTENT - APPENDICES
    %--------------------------------------------------------------------
    
    \appendix % Cue to tell LaTeX that the following "chapters" are Appendices
    \include{Appendices/Eigenständigkeitserklärung}
    \include{Appendices/Soziodemographische Merkmale Teilnehmer:innen}
    \include{Appendices/Interviewleitfaden}
    \include{Appendices/Transkriptionsleitfaden}
    \include{Appendices/Kodierleitfaden}
    \include{Appendices/Kategorienhandbuch}
    
    % Include the appendices of the thesis as separate files from the Appendices folder
    % Uncomment the lines as you write the Appendices
    
    %\include{Appendices/AppendixA}
    %\include{Appendices/AppendixB}
    
    %----------------------------------------------------------------
    %   BIBLIOGRAPHY
    %----------------------------------------------------------------
    
    \cleardoublepage
    \phantomsection
    \addcontentsline{toc}{chapter}{Literatur}
    \raggedright
    \printbibliography
    \bibliographystyle{plain.bst}
    
    \end{document} 

어떻게 해야 합니까?

답변1

다음과 같은 최소한의 예에서 효과를 재현할 수 있습니다.

\documentclass[ngerman]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[backend=biber, style=apa]{biblatex}

\begin{filecontents}{\jobname.bib}
@techreport{BMU2020,
  author      = {{BMU \& BfN -- Bundesministerium für Umwelt, Naturschutz und nukleare Sicherheit
                 und Bundesamt für Naturschutz}},
  shortauthor = {{BMU \& BFN}},
  title       = {{Jugend-Naturbewusstsein 2020}},
  url         = {https://www.bmu.de/fileadmin/Daten_BMU/Pools/Broschueren/jugend-naturbewusstsein_2020.pdf},
  year        = {2020},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}

\begin{document}
Lorem \autocite{BMU2020}
ipsum \autocite{sigfridsson}
dolor \autocite{BMU2020}

\printbibliography
\end{document}

귀하의 예를 약간 수정하면

\documentclass[ngerman]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[backend=biber, style=apa]{biblatex}

\begin{filecontents}{\jobname.bib}
@techreport{BMU2020,
  author      = {{Bundesministerium für Umwelt, Naturschutz und nukleare Sicherheit
                 und Bundesamt für Naturschutz}},
  shortauthor = {{BMU \& BFN}},
  title       = {{Jugend-Naturbewusstsein 2020}},
  url         = {https://www.bmu.de/fileadmin/Daten_BMU/Pools/Broschueren/jugend-naturbewusstsein_2020.pdf},
  year        = {2020},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}

\begin{document}
Lorem \autocite{BMU2020}
ipsum \autocite{sigfridsson}
dolor \autocite{BMU2020}

\printbibliography
\end{document}

APA 스타일이 원하는 출력을 얻을 수 있습니다(참조https://apastyle.apa.org/style-grammar-guidelines/citations/basic-principles/author-date).

실제로 APA 스타일을 원하지 않는다면 일반적으로 사용하지 않는 것이 가장 좋습니다. 표준 스타일은 사용자 정의하기가 훨씬 쉽기 때문에 표준 style=apa,스타일을 고수하는 것이 좋습니다 .style=authoryear,

즉, 다음 코드를 사용하면 항상 강제 style=apa,shortauthor

\documentclass[ngerman]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[backend=biber, style=apa]{biblatex}

\makeatletter
\let\cbx@apa@ifnamesaved\@firstoftwo
\makeatother

\begin{filecontents}{\jobname.bib}
@techreport{BMU2020,
  author      = {{BMU \& BFN --
                  Bundesministerium für Umwelt, Naturschutz und nukleare Sicherheit
                 und Bundesamt für Naturschutz}},
  shortauthor = {{BMU \& BFN}},
  title       = {{Jugend-Naturbewusstsein 2020}},
  url         = {https://www.bmu.de/fileadmin/Daten_BMU/Pools/Broschueren/jugend-naturbewusstsein_2020.pdf},
  year        = {2020},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}

\begin{document}
Lorem \autocite{BMU2020}
ipsum \autocite{sigfridsson}
dolor \autocite{BMU2020}

\printbibliography
\end{document}

Lorem(BMU & BFN, 2020) ipsum(Sigfridsson & Ryde, 1998) dolor(BMU & BFN, 2020) BMU & BFN – Bundesministerium für Umwelt, Naturschutz und nukleare Sicherheit und Bundesamt für Naturschutz. (2020). Jugend-Naturbewusstsein 2020(Techn. Ber.). https://www.bmu.de/fileadmin/Daten_BMU/Pools/Broschueren/jugend-naturbewusstsein_2020.pdf Sigfridsson, E., & Ryde, U. (1998). 정전기 전위와 모멘트로부터 원자 전하를 유도하는 방법 비교. 전산화학 저널, 19(4), 377-395. https://doi.org/10.1002/(SICI)1096-987X(199803)19:4<377::AID-JCC1>3.0.CO;2-P

관련 정보