Tikzposter + biblatex 参照の配置

Tikzposter + biblatex 参照の配置

私は tikzposter と組み合わせて biblatex 数値スタイルを使用していますが、複数行にまたがる参照の場合、テキストが適切に配置されません。minipage 環境を試してみましたが、これも役に立たないようです。

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コマンドは を返します。0ptblock

最新のものの場合、簡単な回避策は、長さの計算を実際の値に延期し、その参考文献に実際に記載されているエントリのみを考慮するオプション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}

きちんと整列した参考文献

関連情報