diff -r 77f88379115a -r 995d4c99843d vendor/plugins/redmine_bibliography/app/controllers/publications_controller.rb
--- a/vendor/plugins/redmine_bibliography/app/controllers/publications_controller.rb
+++ b/vendor/plugins/redmine_bibliography/app/controllers/publications_controller.rb
@@ -10,6 +10,9 @@
     # we'll always want a new publication to have its bibtex entry
     @publication.build_bibtex_entry
     
+    # and at least one author
+    @publication.authors.build
+    
     # the step we're at in the form
     @publication.current_step = session[:publication_step]
 
diff -r 77f88379115a -r 995d4c99843d vendor/plugins/redmine_bibliography/app/models/publication.rb
--- a/vendor/plugins/redmine_bibliography/app/models/publication.rb
+++ b/vendor/plugins/redmine_bibliography/app/models/publication.rb
@@ -5,15 +5,14 @@
   
   has_many :authorships
   has_many :authors, :through => :authorships
+  
   has_one :bibtex_entry, :dependent => :destroy
 
   validates_presence_of :title
 
   accepts_nested_attributes_for :authorships
-  accepts_nested_attributes_for :authors, :reject_if => lambda { |a| a[:name].blank? }, :allow_destroy => true
-#  accepts_nested_attributes_for :bibtex_entry, :reject_if => lambda { |a| a[:name].blank? }, :allow_destroy => true 
-  
-  
+  accepts_nested_attributes_for :authors, :allow_destroy => true
+  accepts_nested_attributes_for :bibtex_entry, :allow_destroy => true 
   
   attr_writer :current_step
 
diff -r 77f88379115a -r 995d4c99843d vendor/plugins/redmine_bibliography/app/views/publications/_edit.html.erb
--- a/vendor/plugins/redmine_bibliography/app/views/publications/_edit.html.erb
+++ b/vendor/plugins/redmine_bibliography/app/views/publications/_edit.html.erb
@@ -12,6 +12,9 @@
     </p>
   <%- end -%>
   
+  
+  <h3>Other Details</h3>
+  
   <% f.fields_for :bibtex_entry do |bib| -%>
     <p> 
       <%= bib.label :year, l(:year) %>  <%= bib.text_field :year %>  
diff -r 77f88379115a -r 995d4c99843d vendor/plugins/redmine_bibliography/app/views/publications/show.html.erb
--- a/vendor/plugins/redmine_bibliography/app/views/publications/show.html.erb
+++ b/vendor/plugins/redmine_bibliography/app/views/publications/show.html.erb
@@ -3,9 +3,9 @@
 <%= h @publication.title %>
 
 <h4>Authors</h4>
-<% @publication.authors.each do |author| %>
-<%= h author.name  %> <br />
-<% end %>
+  <% for author in @publication.authors %>
+      <%= h author.name  %> <br />
+  <% end %>
 <br />
 
 <%- if @publication.bibtex_entry != nil -%>
