reporting: bug fix: Windows can't handle windows-style file separators in latex

time-shift
Houtan Bastani 2013-12-13 17:23:56 +01:00
parent 359245b65b
commit c0149f69d9
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ if isempty(o.figname)
if strcmp(computer, 'PCWIN') || strcmp(computer, 'PCWIN64')
tn = strrep(tn, '_', '-');
end
o.figname = [o.figDirName filesep tn '.tex'];
o.figname = [o.figDirName '/' tn '.tex'];
end
disp(' converting to tex....');
if isoctave && isempty(regexpi(computer, '.*apple.*', 'once'))