public override string TeXChunk(PivotTable table) { var captionText = _builderRepository.ChunkFor(table.Caption); var pivoter = new Pivoter(); var pivotData = pivoter.PivotData(table.Data, table.PivotInfo); return(TableWriter.PivotTable(captionText, table.Label, pivotData.DefaultView, table.Data.Table, table.PivotInfo, table.TexTranslations, table.Converter, _builderRepository)); }