我想将参考书目和脚注中的逗号中的点(但保留最后一个)更改为其他内容。我认为这是语言问题,但找不到问题所在。这可以更改吗?
当前的:
The Guardian. Cyprus banks remain closed to prevent run on deposits. http://www.theguardian.com/world/2013/mar/26/cyprus-banksclosed-prevent-run-deposits. (Online; visited on 15-11-2014).
我想:
The Guardian, (comma) Cyprus banks remain closed to prevent run on deposits, (comma) http://www.theguardian.com/world/2013/mar/26/cyprus-banksclosed-prevent-run-deposits, (comma) (Online; visited on 15-11-2014).
biblatex-examples.bib文件:
@misc{guardian1,
author = {The Guardian},
title = {{Cyprus banks remain closed to prevent run on deposits}},
howpublished = "\url{http://www.theguardian.com/world/2013/mar/26/cyprus-banks-closed-prevent-run-deposits}",
note = "(Online; visited on 15-11-2014)"
}
biblatex-示例.tex:
\documentclass[a4paper]{report}
\usepackage{times}
\usepackage[dutch]{babel}
\usepackage{comment}
\usepackage[backend=bibtex,citestyle=verbose-ibid,bibstyle=numeric,sorting=nyt]{biblatex}
\usepackage{graphicx, url, wrapfig} %pictures
\usepackage[hidelinks]{hyperref} %Makes Table of Contents clickable
\usepackage{eurosym} %symbool eurosign
\addbibresource{biblatex-examples.bib}
\begin{document}
%First some renames to dutch
\renewcommand{\chaptername}{Hoofdstuk}
\renewcommand\bibname{Literatuurlijst}
\renewcommand\contentsname{Inhoudsopgave}
\includecomment{comment} %change exclude to include for showing in pdf too
\chapter{Title}
Text and footcite\footcite[][]{guardian1}
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{Literatuurlijst}
\printbibliography
\end{document}
答案1
我认为您只想更改单元标点符号,除非您想包含逗号的图片,否则我会删除与您的问题相关的内容。
\documentclass[a4paper,dutch]{report}
% times is deprecated - don't use it
\usepackage{mathptmx}
\usepackage[scaled=.90]{helvet}
\usepackage{courier}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[backend=bibtex,citestyle=verbose-ibid,bibstyle=numeric,sorting=nyt]{biblatex}
\renewcommand{\newunitpunct}{\addcomma\addspace}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{guardian1,
author = {The Guardian},
title = {{Cyprus banks remain closed to prevent run on deposits}},
howpublished = "\url{http://www.theguardian.com/world/2013/mar/26/cyprus-banks-closed-prevent-run-deposits}",
note = "(Online; visited on 15-11-2014)"
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
% %First some renames to dutch
\renewcommand\bibname{Literatuurlijst}
% \renewcommand\contentsname{Inhoudsopgave}
\chapter{Title}
Text and footcite\footcite[][]{guardian1}
\cleardoublepage
\addcontentsline{toc}{chapter}{Literatuurlijst}
\printbibliography
\end{document}