특정 유형의 인용(notecite)을 기본 글꼴 크기(12pt)보다 작은 글꼴 크기로 인쇄하려면 어떻게 해야 합니까?

특정 유형의 인용(notecite)을 기본 글꼴 크기(12pt)보다 작은 글꼴 크기로 인쇄하려면 어떻게 해야 합니까?

나는 내 텍스트에 축약된 인용 메모를 많이 사용하고 있으며 그 목록을 가지기 위해 biblatex를 사용하고 + \notecite스타일의 약어를 사용하고 있습니다 . 이것은 잘 진행되고 있지만 인용(또는 기술적으로는 인용 전주 및 후주)이 더 작은 것이 좋습니다. 인용이 많은 경우 실제 예제와 텍스트를 압도하는 경향이 있기 때문입니다. 내가 원하는 것은 이 예와 같이 더 작게 표시되도록 정의하는 방법입니다. ABBREVIATIONexample.code\notecite메모 예시

나는 원하는 효과를 얻기 위해 최소한의 작업 예제에서 \footnotesize각각을 사용했지만, 이 축약된 인용 메모가 수백 개에 달하기 때문에 각 예제에 이것을 사용하는 것은 매우 지루합니다. \notecite이것은 최소한의 작업 예입니다.

\documentclass[12pt]{book}

\begin{filecontents}{citelist.bib}

@book{REF,
    shorthand = {REF},
    pagination={none},
    year={1986},
    title = {Ensk-íslensk skólaorðabók},
    editor = {{Jón Skaptason}},
    publisher = {Örn og Örlygur},
    location = {Reykjavík}
    }  

@book{LUC,
    shorthand = {LUC},
    pagination={none},
    address = {Cambridge},
    year = {1997},
    booktitle = {Color Categories in Thought and Language},
    author = {John A. Lucy},
    location = {Cambridge}
    }
}

\end{filecontents}

\usepackage[LY1,T1]{fontenc} 
\usepackage[icelandic]{babel}
\usepackage{lmodern}


\usepackage[sortlocale=auto,backend=biber,style=authoryear,sorting=nyt,abbreviate=true]{biblatex}
\addbibresource{citelist.bib}


\begin{document}

normal: \\

For example \notecite[REF][f.1249.54]{REF}, (and also \notecite[LUC][f.16.235]{LUC}). \\

With footnotesize: \\

For example {\footnotesize\notecite[REF][f.1249.54]{REF}}, (and also {\footnotesize\notecite[LUC][f.16.235]{LUC}}). 

\end{document}

답변1

( \notecite에서 의 정의를 찾을 수 있습니다 .biblatex.defll. 2218-2223v3.15a에서). 해당 명령의 출력을 더 작게 만들려면 글꼴 크기를 \footnotesize. 다른 인용 명령은 영향을 받지 않습니다.

\documentclass[12pt]{book}
\usepackage[LY1,T1]{fontenc} 
\usepackage[icelandic]{babel}
\usepackage{lmodern}


\usepackage[backend=biber, style=authoryear, abbreviate=true]{biblatex}

\newcommand*{\mkbibfootnotesize}[1]{{\footnotesize #1}}

\DeclareCiteCommand{\notecite}[\mkbibfootnotesize]
  {\printfield{prenote}%
   \setunit*{\printdelim{prenotedelim}}}
  {\nocite{\thefield{entrykey}}}
  {}
  {\printfield{postnote}}

\begin{filecontents}{\jobname.bib}
@book{REF,
  shorthand  = {REF},
  pagination = {none},
  year       = {1986},
  title      = {Ensk-íslensk skólaorðabók},
  editor     = {{Jón Skaptason}},
  publisher  = {Örn og Örlygur},
  location   = {Reykjavík},
}  
@book{LUC,
  shorthand  = {LUC},
  pagination = {none},
  address    = {Cambridge},
  year       = {1997},
  booktitle  = {Color Categories in Thought and Language},
  author     = {John A. Lucy},
  location   = {Cambridge},
}
\end{filecontents}
\addbibresource{\jobname.bib}


\begin{document}
For example \notecite[REF][f.1249.54]{REF}, (and also \notecite[LUC][f.16.235]{LUC})

With footnotesize:

For example {\footnotesize\notecite[REF][f.1249.54]{REF}}, (and also {\footnotesize\notecite[LUC][f.16.235]{LUC}}). 

\end{document}

각주 크기로 인용

관련 정보