I use biblatex and biber. I want "edition" part of my bibliography appears "edisi pertama","edisi kedua","edisi ketiga",etc instead of "1st edition","2nd edition","3rd edition",etc. I have successfully changed "edition" to "edisi" and but how to put it before "pertama","kedua"...
UPDATED: I write my thesis in separated latex files. Here is the main one:
\documentclass[12pt, a4paper, onecolumn, oneside, final]{report}
\usepackage{uithesis}
\input{laporan_setting}
\begin{document}
\include{sampul}
\setcounter{page}{1}
\pagenumbering{arabic}
\include{bab1}
\singlespacing
\printbibliography
\end{document}
And this is uithesis.sty:
\usepackage[english]{babel}
\usepackage{csquotes}
\usepackage{comment}
\usepackage{tikz}
\usetikzlibrary{patterns}
\usepackage{Sweave}
\usepackage{booktabs}
\usepackage{bigstrut}
\usepackage{multirow}
\usepackage{pgfplots}
\pgfmathdeclarefunction{gauss}{2}{
\pgfmathparse{1/(#2*sqrt(2*pi))*exp(-((x-#1)^2)/(2*#2^2))}}
\usepackage{placeins}
\usepackage{tocloft}
\usepackage{tocbibind}
\usepackage{url}
\urlstyle{same}
\usepackage{graphicx}
\usepackage{setspace}
\usepackage[paper=a4paper,headheight=0pt,headsep=2.5cm,footskip=1.4cm,
left=4cm,top=4cm,right=3cm,bottom=3cm]{geometry}
\usepackage{changepage}
\usepackage[font=footnotesize,format=plain,labelfont=bf,up,textfont=up]{caption}
\usepackage{floatrow}
\floatsetup[table]{style=plaintop,objectset=centering,footskip=3.5pt}
\floatsetup[figure]{style=plain,floatwidth=1.2\textwidth}
\renewcommand\FBbskip{2pt}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{stmaryrd}
\usepackage{pslatex}
\usepackage{fancyhdr}
\usepackage{pdfpages}
\usepackage[ConnyRevised]{fncychap}
\usepackage{colortbl}
\usepackage{float}
\floatplacement{figure}{H}
\floatplacement{table}{H}
\usepackage[style=authoryear,backend=biber,abbreviate=false]{biblatex}
\addbibresource{dafpus.bib}
\bibitemsep .5cm
\ifmorenames{true}
\NewBibliographyString{in}
\NewBibliographyString{and}
\NewBibliographyString{bibliography}
\NewBibliographyString{edition}
\DefineBibliographyStrings{english}{%
in = {dalam},
and = {dan},
bibliography = {Daftar Pustaka},
edition = {edisi}}
edisi? Is\usepackage[yourlanguage]{babel}not an option? Please help us to help you and add a minimal working example (MWE) that illustrates your problem. It will be much easier for us to reproduce your situation and find out what the issue is when we see compilable code, starting with\documentclass{...}and ending with\end{document}. – Feb 20 '15 at 10:48.styfile certainly contains a lot of packages not at all related to the issue at hand (changepage,fancyhdr,pgfplotsto name but a few randomly chosen ones, basically everything butbiblatexand its commands andbabel/csquotesis unnecessary). – moewe Feb 20 '15 at 15:31\DeclareFieldFormat{edition}{\ifinteger{#1}{\bibstring{edition}~\mkbibordedition{#1}}{#1\isdot}}to have the word "edition" before the number, but you also seem to want to change any positive integer to a "word" which seems quite hard, but has been implemented for some languages. The easiest way would probably be to just change theeditionfield toedition = {edisi ketiga}. – moewe Feb 20 '15 at 15:36