My LaTeX document on Indonesian language has had proper citation style on bibliography using biblatex; the ''disitasi pada halaman" instead of "cited on page".
Of course the new problem arise. Like this.
Look that I have "1st Edition" or "2nd Edition" here and there. It supposed to have "Edisi 1" or "Edisi 2" form respectively.
Okay, thats not new problem (it's the kind of the last minute problem before the show, :D ).
So I add this line at the preamble.
\DefineBibliographyStrings{english}{
backrefpage = {disitasi pada halaman},
backrefpages = {disitasi pada halaman-halaman},
edition = {edisi},
in = {dalam},
and = {dan},
urlseen = {diakses pada}
}
\DeclareFieldFormat{edition}{\ifinteger{#1}{\bibstring{edition}~\mkbibordedition{#1}}{#1\isdot}}
I have LaTeX document written in Indonesian and it's nice and yada yada. The minuscule problem is the bibliography. I used biblatex and it look like this.
The problem is "cited on page" and "cited on pages" string. It's supposed to be "disitasi pada halaman" and "disitasi pada halaman-halaman".
What I need is add this lines to preamble.
\DefineBibliographyStrings{english}{
backrefpage={disitasi pada halaman},
backrefpages={disitasi pada halaman-halaman}
}