我正在写我的大学论文,我一直认为使用 latex 应该更容易进行分页、字体等。实际上,我的规格是使用 Times New Roman 字体 13 pt,但我可以用任何方式实现它。另外,我在中文字符方面遇到了一些问题,但应该可以使用xelatex
编译器来解决。
我还有以下布局设置:
Page Setup
Margins (left, right, top, and bottom) = 3 cm
Header = 1.5 cm
Footer = 1.5 cm
Tab stops = 1.5 cm
Binding = 1.5 cm
Line spacing = body text = 1.5; footnotes = 1
Font = Times New Roman; body text 13 pt, footnotes 10 pt
Paragraph Alignment
Body text = justified
Chapter title = centered and bold
Paragraph title = justified
Page Numbering
Pages are numbered with Arabic numerals (1, 2, 3…); the title page is not numbered (it is page 0); the numbering should be placed at the bottom right or center of the page.
Image's caption
Italic, font 10 pt
我尝试过这个:
\documentclass[a4paper]{article}
\usepackage[a4paper, total={6in, 8in}, headheight=1.5cm, footskip=1.5cm, bindingoffset=1.5cm, footnotesep=1cm]{geometry}
\geometry{
a4paper,
left = 3 cm,
right = 3 cm,
top = 3 cm,
bottom = 3 cm,
}
\usepackage{setspace}
\setstretch{1.5}
%tab
\usepackage{enumitem}
\setlist[itemize]{left=1.5cm}
%times new roman
\usepackage{fontspec}
\setmainfont{Times New Roman}
% font size 13
\usepackage[fontsize=13pt]{scrextend}
% footpage size: 10pt
\usepackage{footmisc}
\renewcommand{\footnotelayout}{\fontsize{10}{12}\selectfont}
% chinese chars:
\usepackage{xeCJK}
\setCJKmainfont{Noto Sans CJK SC}
\usepackage[T1]{fontenc}
\usepackage[italian]{babel}
\usepackage{graphicx}
\graphicspath{ {./images/} }
\usepackage{float}
\setcounter{tocdepth}{4}
\setcounter{secnumdepth}{4}
\setlength\parindent{0pt}
\begin{document}
\title{
\textbf{Thesis title}
}
\author{}
\date{}
\maketitle
\tableofcontents
\newpage
\section*{First section}
Some text
\bigskip
\begin{figure}[H]
\centering \includegraphics[width=0.7\textwidth]{pic1.jpeg}
\caption{\textit{text caption}
\end{figure}
\end{document}
但实际上输出的 pdf 与其他具有其他限制的工具获得的 pdf 有很大不同。
实际上,主要问题是字体大小似乎不是 13 pt,而且章节标题不是粗体。此外,使用这种字体时,我无法在文本中使用斜体或粗体,但我已在计算机的字体列表中检查了粗体和斜体的存在。
有人能帮助我理解我的错误并解决它们吗?提前谢谢。