是否可以知道该样本的排版?

是否可以知道该样本的排版?

我正在寻找以下格式的排版:

完整报告的链接为:论文报告

在此处输入图片描述

在此处输入图片描述

我当前的 Latex MWE 是:

\documentclass[a4paper,14pt,onecolumn]{report}

\usepackage[dvips]{graphics}
\usepackage{color}
\usepackage{epsfig}

\setlength{\textwidth}{6.27in}
\setlength{\textheight}{9.69in}
\setlength{\topmargin}{0.0in}
\setlength{\oddsidemargin}{0.0in}
\setlength{\headheight}{0.0in}
\setlength{\headsep}{0.0in}
\setlength{\topskip}{0.0in}

\usepackage[T1]{fontenc}
\linespread{1}
\selectfont

\setlength\parindent{24pt}

\newenvironment{acknowledgments} {\renewcommand\abstractname{Acknowledgements}\begin{abstract}} {\end{abstract}}

\begin{document}
\pagestyle{empty}

\begin{acknowledgments}
I would like to express my sincere and deepest gratitude to my dissertation guide Dr. Sunil B. Mane for his continuous support and understanding throughout this journey. I am grateful to all the volunteers who shared their email history for preperation of the dataset without which the research would have seriously hampered. I would like to thank all the faculty members of Department of Computer Engineering \& IT and the helpdesk team for providing me with the necessary help whenever required. I express my gratitude to my colleagues with whom I had valuable discussions on the project. Lastly, but importantly, to my parents who have loved me unconditionally all the time. 
\end{acknowledgments}

\end{document}

显示为

在此处输入图片描述

我无法弄清楚这种排版。它似乎是不同的字体。有人能帮忙吗?

答案1

最大的区别似乎是线条宽度。从图像中很难判断字体大小。

\documentclass[a4paper,onecolumn]{report}

\usepackage[dvips]{graphics}
\usepackage{color}
\usepackage{epsfig}
%
\setlength{\textwidth}{6.27in}
\setlength{\textheight}{9.69in}
\setlength{\topmargin}{0.0in}
\setlength{\oddsidemargin}{0.0in}
\setlength{\headheight}{0.0in}
\setlength{\headsep}{0.0in}
\setlength{\topskip}{0.0in}

\usepackage[T1]{fontenc}
\linespread{1.5}        % Vertical spacing between lines
\selectfont             % Select the specified font
%
\newenvironment{acknowledgments} {\renewcommand\abstractname{Acknowledgements}\begin{abstract}} {\end{abstract}}

\begin{document}
\pagestyle{empty}

\begin{acknowledgments}
\linespread{1}\selectfont  
I would like to express my sincere and deepest gratitude to my dissertation guide Dr. Sunil B. Mane for his continuous support and understanding throughout this journey. I am grateful to all the volunteers who shared their email history for preperation of the dataset without which the research would have seriously hampered. I would like to thank all the faculty members of Department of Computer Engineering \& IT and the helpdesk team for providing me with the necessary help whenever required. I express my gratitude to my colleagues with whom I had valuable discussions on the project. Lastly, but importantly, to my parents who have loved me unconditionally all the time. 
\end{acknowledgments}

\end{document}

相关内容