Skip to content
Snippets Groups Projects
Commit 80218a1b authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Fixed bug (conversion of variable names in tex).

parent bca9430c
Branches
Tags
No related merge requests found
......@@ -25,15 +25,8 @@ end
if iscell(name)
nn = length(name);
id = findstr(cell2mat(transpose(name)),'_');
else
nn = 1;
id = findstr(name,'_');
end
if isempty(id)
tex = name;
return
end
if iscell(name)
......@@ -51,6 +44,9 @@ for i=1:nn
id = findstr(name,'_');
len = length(tex);
end
if isempty(id)
continue
end
n = length(id);
if id(1)==1
if iscell(name)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment