@Test
 @Ignore
 public void withHead() throws OfxAuthoringException {
   Table table = TestLatexTableRenderer.createTable();
   table.getContent().setHead(TestLatexTableRenderer.createTableHead());
   f = new File(rootDir, dir + "/" + Key.tableWithHead + ".tex");
   renderer.render(table);
   OfxContentDebugger.debug(renderer.getContent());
 }
 @Test
 @Ignore
 public void table() throws IOException, OfxAuthoringException {
   Table table = TestLatexTableRenderer.createTable();
   f = new File(rootDir, dir + "/" + Key.table + ".tex");
   renderer.render(table);
   renderTest(renderer, f);
 }