Skip to content
Snippets Groups Projects
Commit c0149f69 authored by Houtan Bastani's avatar Houtan Bastani
Browse files

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

parent 359245b6
No related branches found
No related tags found
No related merge requests found
...@@ -140,7 +140,7 @@ if isempty(o.figname) ...@@ -140,7 +140,7 @@ if isempty(o.figname)
if strcmp(computer, 'PCWIN') || strcmp(computer, 'PCWIN64') if strcmp(computer, 'PCWIN') || strcmp(computer, 'PCWIN64')
tn = strrep(tn, '_', '-'); tn = strrep(tn, '_', '-');
end end
o.figname = [o.figDirName filesep tn '.tex']; o.figname = [o.figDirName '/' tn '.tex'];
end end
disp(' converting to tex....'); disp(' converting to tex....');
if isoctave && isempty(regexpi(computer, '.*apple.*', 'once')) if isoctave && isempty(regexpi(computer, '.*apple.*', 'once'))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment