diff -r 50474139cad4 -r b601a9e472f3 vendor/plugins/redmine_bibliography/app/views/publications/index.html.erb
--- a/vendor/plugins/redmine_bibliography/app/views/publications/index.html.erb
+++ b/vendor/plugins/redmine_bibliography/app/views/publications/index.html.erb
@@ -1,7 +1,16 @@
 <h2>Publications#index</h2>
 
+
+<table>
+  <tr>
+    <th>Number</th>
+    <th>Title</th> 
+  </tr>
+
 <% @publications.each do |publication| %>
-	
-	<p><%= publication.id %>: <%=publication.title %></p>
+	<tr>
+	  <td><%= publication.id %></td>
+	  <td><%= publication.title %></td>
+	 	</tr>
 	
 <% end %>
\ No newline at end of file
