diff -r 6674e52e20bf -r 80cf86be1611 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
@@ -43,7 +43,10 @@
         format.html{}
 
         if @bibtex_parse_success
+          # todo: should this code be here?
           @ieee_prev = CiteProc.process bib.to_citeproc, :style => :ieee, :format => :html
+          @bibtex_parsed_authors = bib[0].authors
+          logger.error { "Authors: #{@bibtex_parsed_authors}" }
         end
 
         format.js
@@ -82,16 +85,6 @@
 #    rescue BibtexParsingError => e
 #      logger.error { "Bibtex Parsing Error #{bib.errors}" }
 
-      # todo: not showing... should be inside render?
-#      flash[:error] = e.message
-
-#      respond_to do |format|
-#       format.js{
-#         render(:update) {|page|
-#         }
-#       }
-#      end
-
 #    end
 
 
diff -r 6674e52e20bf -r 80cf86be1611 vendor/plugins/redmine_bibliography/app/views/publications/_suggest_author.html.erb
--- /dev/null
+++ b/vendor/plugins/redmine_bibliography/app/views/publications/_suggest_author.html.erb
@@ -0,0 +1,5 @@
+
+<p>
+  Author <%= h author %>
+</p>
+
diff -r 6674e52e20bf -r 80cf86be1611 vendor/plugins/redmine_bibliography/app/views/publications/new/_bibtex.html.erb
--- a/vendor/plugins/redmine_bibliography/app/views/publications/new/_bibtex.html.erb
+++ b/vendor/plugins/redmine_bibliography/app/views/publications/new/_bibtex.html.erb
@@ -1,5 +1,3 @@
-
-
 <div class="box">
   <%= text_area_tag :bibtex_paste, "Please paste your bibtex entry here" , :class => "wiki", :style => 'width:90%' -%>
 
@@ -10,3 +8,4 @@
 
 <div class="box" id="ieee_prev"><h3>Preview</h3></div>
 
+<div class="box" id="suggest_bibtex_authors"><h3>Authors</h3></div>
\ No newline at end of file
diff -r 6674e52e20bf -r 80cf86be1611 vendor/plugins/redmine_bibliography/app/views/publications/parse_bibtex.rjs
--- a/vendor/plugins/redmine_bibliography/app/views/publications/parse_bibtex.rjs
+++ b/vendor/plugins/redmine_bibliography/app/views/publications/parse_bibtex.rjs
@@ -1,8 +1,14 @@
 if @bibtex_parse_success
   page.insert_html :bottom, :ieee_prev, @ieee_prev
   page.insert_html :top, :content, '<div class="flash notice">Successfully Parsed BibTeX</div>'
+
+  @bibtex_parsed_authors.each do |auth|
+    page.insert_html :bottom, :suggest_bibtex_authors, :partial => "suggest_author" , :locals => {:author => auth}
+  end
+
 else
   page.insert_html :top, :content, '<div class="flash error">Error parsing BibTeX.</div>'
 end
 
+
 flash.discard
\ No newline at end of file
