论文排版系统

论文格式排版系统

欢迎使用论文格式排版系统

上传您的论文内容和模板,系统将自动按照模板要求进行排版,支持字体、位置、行间距、缩进、加粗、段落、三线表格等格式设置。

操作流程

模板管理

已保存的模板

学术期刊模板

上传于: 2023-06-15

本科毕业论文模板

上传于: 2023-06-10

国际会议模板

上传于: 2023-06-05

上传论文

拖拽论文文件至此或点击上传

支持 .docx 格式

学术期刊模板

学术期刊模板

本科毕业论文模板

本科毕业论文模板

国际会议模板

国际会议模板

排版进度

使用说明

  1. 上传您的论文Word文档
  2. 选择或上传排版模板
  3. 点击"开始排版"按钮
  4. 等待排版完成并下载文件

支持字体、段落、行间距等格式设置

自动处理三线表格、标题样式等

生成符合学术规范的论文格式

使用指南

排版流程

  1. 1 上传您的论文Word文档(.docx格式)
  2. 2 选择预设模板或上传自定义模板
  3. 3 点击"开始排版"按钮,系统自动应用模板格式
  4. 4 等待排版完成,下载生成的文件

格式支持

字体样式
段落格式
行间距设置
缩进设置
标题样式
三线表格
页眉页脚
目录生成

模板管理

学术期刊模板

学术期刊模板

符合常见学术期刊要求的论文格式模板,包含标题、摘要、正文、参考文献等部分的标准格式。

上传于: 2023-06-15
本科毕业论文模板

本科毕业论文模板

符合高校本科毕业论文要求的格式模板,包含完整的论文结构和格式设置。

上传于: 2023-06-10
国际会议模板

国际会议模板

符合国际学术会议论文要求的格式模板,包含英文摘要、正文、图表等部分的标准格式。

上传于: 2023-06-05

帮助中心

常见问题

目前系统仅支持 .docx 格式的Word文档,不支持 .doc 或其他格式。
系统仅在处理过程中临时保存您的文件,处理完成后会自动删除,不会长期存储您的论文内容。
排版时间取决于论文长度和复杂度,一般在1-3分钟内完成。
您可以在Word中设置好所需的格式样式,包括字体、段落、标题等,然后保存为模板文件上传到系统。

联系我们

如果您在使用过程中遇到任何问题,或者有任何建议,请通过以下方式联系我们:

support@paperformat.com
400-123-4567
在线客服(工作日 9:00-18:00)
问题反馈
// 重置进度 function resetProgress() { progressBar.style.width = '0%'; progressPercentage.textContent = '0%'; // 重置步骤状态 document.querySelectorAll('.step-icon').forEach(icon => { icon.classList.remove('bg-secondary', 'text-white'); icon.classList.add('bg-gray-200'); }); document.querySelectorAll('.step-line').forEach(line => { line.classList.remove('bg-secondary'); line.classList.add('bg-gray-200'); }); statusMessage.innerHTML = `

准备就绪,请上传文件并选择模板。

`; progressContainer.classList.add('hidden'); resultContainer.classList.add('hidden'); initialContainer.classList.remove('hidden'); } // 重置所有 function resetAll() { fileInfo.classList.add('hidden'); paperFileInput.value = ''; templateCard.forEach(card => card.classList.remove('selected')); formatBtn.disabled = true; resetProgress(); currentPaper = null; currentTask = null; } // 添加模板到列表 function addTemplateToList(id, name, date) { const templateItem = document.createElement('div'); templateItem.className = 'template-item p-3 border border-gray-200 rounded-md flex justify-between items-center hover:bg-gray-50 cursor-pointer'; templateItem.setAttribute('data-template-id', id); templateItem.innerHTML = `

${name}

上传于: ${date}

`; templateList.appendChild(templateItem); // 添加删除事件 templateItem.querySelector('.fa-trash').parentElement.addEventListener('click', async function(e) { e.stopPropagation(); if (confirm('确定要删除此模板吗?')) { try { await deleteTemplate(id); templateItem.remove(); } catch (error) { console.error('删除模板失败:', error); alert('删除模板失败: ' + error.message); } } }); // 添加使用事件 templateItem.addEventListener('click', function() { // 这里可以实现选择模板的逻辑 alert(`已选择模板: ${name}`); }); } // 初始化模板列表 async function initTemplateList() { try { const templates = await getTemplates(); templateList.innerHTML = ''; // 清空现有列表 templates.forEach(template => { const date = new Date(template.created_at).toISOString().split('T')[0]; addTemplateToList(template.id, template.name, date); }); // 如果没有模板,创建示例模板 if (templates.length === 0) { console.log('没有找到模板,创建示例模板...'); try { await createSampleTemplate('academic'); await createSampleTemplate('thesis'); await createSampleTemplate('conference'); // 重新加载模板列表 const newTemplates = await getTemplates(); newTemplates.forEach(template => { const date = new Date(template.created_at).toISOString().split('T')[0]; addTemplateToList(template.id, template.name, date); }); } catch (error) { console.error('创建示例模板失败:', error); } } } catch (error) { console.error('获取模板列表失败:', error); alert('获取模板列表失败: ' + error.message); } } // 初始化页面 // initTemplateList() 已在DOMContentLoaded中调用 });