答案1
我不会尝试将这些(极其丑陋的)页面转换为 LaTeX,而是建议执行以下操作:
- 使用 Word 填写表格(或任何其他提供的工具)
- 导出为 PDF(如果该工具不支持导出为 PDF,则使用打印到 PDF 驱动程序)
- 使用
pdfpages
包中包含这些页面到你的 LaTeX 文档的开头 - 构建
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}