In the documentation of biblatex and csquotes packages, number 1 is replaced by a small cap i in the main text. I tried to find how in the source files but could not target any relevant piece of code. It looks like one way would be to define a \DeclareTextCommand{\is}{T1}{\textsc{i}{}} and then use \is978 in the source but in the mentioned documents, 1 is directly redefined as the new character (looking like) \textsc{i}.
Tell me more
×
TeX - LaTeX Stack Exchange is a question and answer site for
users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.
|
|
|||
| show 1 more comment |
|
It is not a small caps i, it is an old-style number 1. One way to get this is by using Most fonts (in my limited experience) do not have an old-style numeral 1 that looks like what you want. I think that the font used in the
Here is a MWE:
|
||||
|
|

1by a smallcapsiby making it active. For instance\catcode`1\active\def1{\textsc{i}}would do that. This could cause issues though, if some packages uses a1in a command sequence or something like that. So you have to consider that. – Roelof Spijker Apr 14 '12 at 23:35