匈牙利语 BibLaTeX 在线引用

匈牙利语 BibLaTeX 在线引用

如何打印 BibLaTeX

优点:http://digitus.itk.ppke.hu/~lazar/cnn/SegedFileok/ZA_TemplTervArt.pdf(更新日期 2014.04.22.)。

代替

可用的:http://digitus.itk.ppke.hu/~lazar/cnn/SegedFileok/ZA_TemplTervArt.pdf(访问日期:2014 年 4 月 22 日)。

梅威瑟:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[magyar]{babel}
\usepackage{lmodern, filecontents}
\usepackage[style=ieee]{biblatex}

\begin{filecontents}{\jobname.bib}
@article{zarandy_art_temdesign,
    author = {Zarándy, Ákos},
    title = {The art of {CNN} template design},
    journal = {International Journal of Circuit Theory and Applications},
    volume = {27},
    number = {1},
    publisher = {John Wiley & Sons, Ltd.},
    issn = {1097-007X},
    url = {http://digitus.itk.ppke.hu/~lazar/cnn/SegedFileok/ZA_TemplTervArt.pdf},
    urldate = {2014-04-22},
    pages = {5--23},
    year = {1999}
}
\end{filecontents}

\addbibresource{\jobname.bib}

\begin{document}
\cite{zarandy_art_temdesign}
\printbibliography
\end{document}

答案1

更新

下一个版本biblatex(3.12,截至 2018 年 8 月尚未公布发布日期)将内置匈牙利语支持。如果您拥有此版本或更高版本,则无需执行任何其他操作。


以前的

将其放入magyar.lbx文件中:

\DeclareBibliographyStrings{%
    % ...
    url          = {{Elérhető}{Elérhető}},
    urlfrom      = {{elérhető}{elérhető}},
    urlseen      = {{elérés dátuma}{elérés dátuma}},
}

\DeclareBibliographyExtras{
    % ...
    \protected\def\mkbibordinal#1{\stripzeros{#1}\adddot}%
    \protected\def\mkbibdatelong#1#2#3{% suppose that all fields are defined, until a bug pops up
        \mkbibordinal{\thefield{#1}}%
        \space%
        \mkbibmonth{\thefield{#2}}%
        \nobreakspace%
        \mkbibordinal{\thefield{#3}}%
    }
    \protected\def\mkbibdateshort#1#2#3{% suppose that all fields are defined, until a bug pops up
        \mkbibordinal{\thefield{#1}}%
        \space%
        \mkbibordinal{\thefield{#2}}%
        \nobreakspace%
        \mkbibordinal{\thefield{#3}}%
    }
}

相关内容