论文模板

论文模板

我决定用 LaTex 写论文。报告的前三页有大学规定的特定格式。由于我是 LaTex 新手,我发现创建它们很困难。

有人能帮我解决这个问题吗?会很有帮助的。谢谢。

在此处输入图片描述

在此处输入图片描述

在此处输入图片描述

答案1

我不会尝试将这些(极其丑陋的)页面转换为 LaTeX,而是建议执行以下操作:

  1. 使用 Word 填写表格(或任何其他提供的工具)
  2. 导出为 PDF(如果该工具不支持导出为 PDF,则使用打印到 PDF 驱动程序)
  3. 使用pdfpages包中包含这些页面到你的 LaTeX 文档的开头
  4. 构建pdflatex或者lualatex

例子:

% select paper type to match your pdf, I am assuming A4 as h_da is in Germany
\documentclass[a4paper]{article}
% include the pdfpages package
\usepackage{pdfpages}
\begin{document}
    % use \includepdf at the beginning of your document.
    % pages=- causes all pages to be included.
    % the filename must not contain spaces.
    \includepdf[pages=-]{yourExport.pdf}
\end{document}

相关内容