-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
会议论文集格式 #181
Comments
|
第二个问题可以通过在导言区添加
来解决,但现在仍然不明白第三个问题发生的原因 |
看错了问题,但手册中
需要使用 \DeclareFieldFormat{titlecase}{\MakeSentenceCase*{#1}} |
在导言区添加该指令会使得包括 |
这是由于 biblatex 对样式精细度控制不足导致的1,解决方案为2: \documentclass{article}
\usepackage[backend=biber,style=gb7714-2015]{biblatex}
\addbibresource[location=local]{gdutthesis-template.bib}
\DeclareFieldFormat{titlecase}{\MakeSentenceCase*{#1}}
\DeclareFieldFormat{titlecase:journaltitle}{#1}
\renewbibmacro*{booktitle}{%ref gb7714-2015.bbx
\ifboolexpr{
test {\iffieldundef{booktitle}}
and
test {\iffieldundef{booksubtitle}}
}
{}
{\printtext[booktitle]{\bibtitlefont%
\printfield[titlecase:journaltitle]{booktitle}%
\setunit{\subtitlepunct}%
\printfield[titlecase:journaltitle]{booksubtitle}}%
\newunit%标点换成下一句
\setunit{\subtitlepunct}}%
\printfield{booktitleaddon}}
\renewbibmacro*{journal}{%ref biblatex.def
\ifboolexpr{
test {\iffieldundef{journaltitle}}
and
test {\iffieldundef{journalsubtitle}}
}
{}
{\printtext[journaltitle]{%
\printfield[titlecase:journaltitle]{journaltitle}%
\setunit{\subtitlepunct}%
\printfield[titlecase:journaltitle]{journalsubtitle}}%
\newunit}%
\iffieldundef{journaltitleaddon}
{}
{\printfield{journaltitleaddon}}}
\begin{document}
\cite{5595728,8739605}
\printbibliography[heading=bibliography]
\end{document} Footnotes |
我校要求的会议论文集格式为
[序号] 作者1, 作者2, 作者3. 论文题目(首字母大写,其它字母小写)[C]. 会议名称(首字母大写 虚词小写), 会议年份: 开始页-结束页.
例:
[4] Dong C, Loy C, He K, et al. Learning a deep convolutional network for image super-resolution[C]. European Conference on Computer Vision, 2014: 184-199.
即,不论是中文还是英文文献,在会议名称前都没有“in: ”或者“见”;并且论文题目仅首字母大写(专有名词除外)。我已在CTAN查阅biblatex-gb7714-2015的相关文档,未找到相应的控制符。请问欲实现此要求,应当如何撰写?
The text was updated successfully, but these errors were encountered: