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: first von last, jr.</li> * <li>First names will NOT 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 Morten O. Alver / Christopher Oezbek <oezi@oezi.de> * */ public class AuthorFirstFirstCommas implements LayoutFormatter { @Override public String format(String fieldText) { return AuthorList.fixAuthorFirstNameFirstCommas(fieldText, false, false); } }