기본적으로 Metropolis 테마를 사용하고 인용하는 클래스 에서 어떤 이유로 biblatex
첫 번째 줄이 오버플로되는 경우 모든 참조가 정당화됩니다. 이 동작이 발생하지 않습니다.cite
beamer
\footfullcite
footcites와 동일한 동작일 것이라고 생각했지만 분명히 그렇지 않습니다.
인터넷 검색을 시도했지만 발 인용을 정당화하는 방법에 대한 답변을 찾을 수 없습니다. 누구든지 나를 도와줄 수 있나요? 미리 감사드립니다
MWE:
\documentclass[10pt]{beamer}
\usetheme[progressbar=frametitle]{metropolis}
\usepackage{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
\begin{frame}{Trial Slide}
Text \footfullcite{sigfridsson}
\end{frame}
\end{document}
편집: footcites가 인용과 동일한 동작을 가질 것이라는 혼란을 추가하려면
답변1
다른 문서 클래스와 달리 비머는 정렬하면 이상하게 보이는 짧은 텍스트 요소용으로 만들어졌기 때문에 텍스트를 정렬하지 않습니다.
각주에 정당성을 추가하려면 footnote
템플릿을 재정의할 수 있습니다.
\documentclass[10pt]{beamer}
\usetheme[progressbar=frametitle]{moloch}% modern fork of the metropolis theme
\usepackage{biblatex}
\addbibresource{biblatex-examples.bib}
\usepackage{ragged2e}
\setbeamertemplate{footnote}{
\parindent 1em\noindent%
\raggedright
\hbox to 1.8em{\hfil\insertfootnotemark}\justifying\insertfootnotetext\par%
}
\begin{document}
\begin{frame}{Trial Slide}
Text \footfullcite{sigfridsson}
\end{frame}
\end{document}