dcpurton / biblatex-sbl

Society of Biblical Literature (SBL) style files for biblatex
24 stars 5 forks source link

Period issues in `sblpaper` #44

Closed ghost closed 8 years ago

ghost commented 8 years ago

There's some issues with period placement. Look at the footnotes and places where I cited Dialogue.

Justin Sample.pdf

dcpurton commented 8 years ago

Can you post a MWE too please?

It might help to use \dot invaded of . as a work around. It looks like the auto punctuation of biblatex is getting confused.

ghost commented 8 years ago

mwe.txt

dcpurton commented 8 years ago

Interesting. It's to do with polyglossia and Hebrew (or Arabic, probaly any RTL language).

This is enough is exhibit the problem:

\documentclass{article}
\usepackage{polyglossia}
\setdefaultlanguage{english}
\setotherlanguage{hebrew}
\begin{document}
1.1.
\end{document}
dcpurton commented 8 years ago

I think this is worth asking on tex.stackexchange. I'll post something.

dcpurton commented 8 years ago

A work around is to force the numbers to be set left-to-right:

(\emph{Dial. \LR{2.1})
ghost commented 8 years ago

That makes sense. R-L text will sometimes jumble characters if it's in close proximity, but there wasn't any here so I was a tad baffled.

dcpurton commented 8 years ago

Try now. I added a fix from http://tex.stackexchange.com/questions/312874/polyglossia-or-bidi-bug-d-gets-inverted-to-d

ghost commented 8 years ago

This works, thanks David.