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 be abbreviated.</li> * <li>Individual authors are separated by commas.</li> * <li>There is no comma before the 'and' at the end of a list of three or more authors</li> * </ul> * * @author mkovtun * @author Christopher Oezbek <oezi@oezi.de> * */ public class AuthorLastFirstAbbrCommas implements LayoutFormatter { @Override public String format(String fieldText) { return AuthorList.fixAuthorLastNameFirstCommas(fieldText, true, false); } }