package org.jabref.logic.layout.format; import org.jabref.logic.layout.LayoutFormatter; import org.jabref.model.entry.AuthorList; /** * <ul> * <li>Names are given in order: von last, jr, first.</li> * <li>First names will NOT be abbreviated.</li> * <li>Individual authors are separated by commas.</li> * <li>The 'and' of a list of three or more authors is preceeded by a comma * (Oxford comma)</li> * * @author mkovtun * @author Christopher Oezbek <oezi@oezi.de> * */ public class AuthorLastFirstOxfordCommas implements LayoutFormatter { @Override public String format(String fieldText) { return AuthorList.fixAuthorLastNameFirstCommas(fieldText, false, true); } }