Skip to content
Snippets Groups Projects
Commit 12d51470 authored by Johannes Pfeifer's avatar Johannes Pfeifer
Browse files

Replace hline in dyn_latex_table.m by proper booktabs style

parent f0909834
Branches
Tags
No related merge requests found
......@@ -93,7 +93,7 @@ if nargin==11
end
fprintf(fidTeX,header_string);
fprintf(fidTeX,'\\midrule \\endhead \n');
fprintf(fidTeX,['\\bottomrule \\multicolumn{',num2str(size(headers,1)),'}{r}{(Continued on next page)} \\\\ \\hline \\endfoot \n']);
fprintf(fidTeX,['\\midrule \\multicolumn{',num2str(size(headers,1)),'}{r}{(Continued on next page)} \\\\ \\bottomrule \\endfoot \n']);
fprintf(fidTeX,'\\bottomrule \\endlastfoot \n');
for i=1:size(values,1)
fprintf(fidTeX,label_format_leftbound,deblank(labels(i,:)));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment