
나는 tikzposter와 함께 biblatex 숫자 스타일을 사용하고 있으며 두 줄 이상에 걸쳐 있는 참조의 경우 텍스트가 제대로 정렬되지 않습니다. 미니페이지 환경을 시도해 보았지만 역시 도움이 되지 않는 것 같습니다.
MWE:
\documentclass{tikzposter}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{greenwade93,
author = "George D. Greenwade",
title = "The {C}omprehensive {T}ex {A}rchive {N}etwork ({CTAN})",
year = "1993",
journal = "TUGBoat",
volume = "14",
number = "3",
pages = "342--351"
}
@book{goossens93,
author = "Michel Goossens and Frank Mittelbach and Alexander Samarin",
title = "The LaTeX Companion",
year = "1993",
publisher = "Addison-Wesley",
address = "Reading, Massachusetts"
}
\end{filecontents}
\usepackage[backend=bibtex,style=numeric,sorting=none]{biblatex}
\bibliography{\jobname.bib}
\begin{document}
\begin{columns}
\column{.2}
\block{References}{
\nocite{*}
\begin{minipage}{\linewidth}
\begin{center}\mbox{}\vspace{-\baselineskip}
\printbibliography[heading=none]
\end{center}
\end{minipage}
}
\end{columns}
\end{document}
답변1
분명히 모든 상황에서 \settowidth
의도한 대로 작동하지 않습니다 . tikzposter
특히 명령은 0pt
내에서 호출되지 않는 한 반환됩니다 block
.
현대의 빠른 해결 방법 은 길이 계산을 실제 계산으로 미루고 해당 참고문헌에 실제로 나타나는 항목만 고려하는 biblatex
옵션을 사용하는 것입니다 .locallabelwidth
\printbibliography
\documentclass{tikzposter}
\usepackage[backend=bibtex, style=numeric, sorting=none, locallabelwidth]{biblatex}
\bibliography{biblatex-examples.bib}
\begin{document}
\begin{columns}
\column{.2}
\block{References}{
\nocite{sigfridsson,worman}
\begin{minipage}{\linewidth}
\begin{center}\mbox{}\vspace{-\baselineskip}
\printbibliography[heading=none]
\end{center}
\end{minipage}
}
\end{columns}
\end{document}