让我们考虑使用Bootstrap的<div>
<div>
<table class="table">
<tbody>
<tr>
<th>Some row</th>
<td>Some value</td>
</tr>
</tbody>
</table>
</div>
<div>
<table class="table">
<tbody>
<tr>
<th>Some row</th>
<td>Some value</td>
</tr>
</tbody>
</table>
</div>
</div>
类
i = 1;
z = zeros(1, 10);
for i=1:400
j = num2str(i);
file_name = strcat('part',j,'txt');
file_id = fopen(file_name);
part = fread(file_id, inf, 'uchar');
h = hist(part,10);
z = z + h;
fclose(file_id);
end
当您选择两个表格并将其粘贴到MS Word中时,文本的字体为 Times New Roman :
但是,当我删除包装表格div(请参阅Bootply)时,选择它们并将粘贴复制到MS Word,它将粘贴为 Helvetica 。
为什么呢?我没有看到它的CSS样式有任何差异。