The package biblatex-chicago moves trailing punctuation inside closing quotation marks in bibliographic notes.
But when using tex4ht to convert to ODT format, the punctuation remains outside the quotation marks.
How do I preserve Chicago-style punctuation when converting to ODT?
Compile this (file.tex) with latex file && biber file && mk4ht oolatex file:
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{screed,
title={Unhappy Endings: Why Punctuation Should Be Inside Quotation Marks},
shorttitle={Unhappy Endings},
author={Manual, Chicago},
journaltitle={Fussy Punctuators},
volume=29,
number=3,
pages={131--132}
}
\end{filecontents}
\usepackage[american]{babel}
\usepackage[notes,backend=biber]{biblatex-chicago}
\addbibresource{\jobname.bib}
\begin{document}
Cite this article.\autocite{screed}
\end{document}
