我正在使用 Biomed Central 模板处理一份文档: https://www.overleaf.com/latex/templates/biomed-central-article-template/gcgcxphtpccx 并从 Overleaf 说明中复制粘贴第一个基本标题页:https://de.overleaf.com/learn/latex/How_to_Write_a_Thesis_in_LaTeX_(Part_5)%3A_Customising_Your_Title_Page_and_Abstract 结果模板常规首页的标题部分被移动到左侧,这使得文档不可读。
此问题仅出现在标题页之后的第一页。由于模板需要作为一个大的 .tex 文件提交,因此我将非常感谢任何有关如何修复此问题的建议。
答案1
这个答案是为了记录向现有文档添加标题页的过程(尽管我怀疑它bmcart
对于撰写论文是否有用)。
选项 1假设提交的是单个pdf
文件,因为我认为论文不适合单个.tex
文件(如选项 2 所示):例如,图表需要单独提交。
您需要创建三个文件:
(1)论文本身按您认为合适的格式。(文件MyThesis.tex
)
(2)封面通常遵循机构的指导方针。(文件TitlePage.tex
)
(3)将以上文档整合成一本书的双面格式的主程序。(文件main.tex)
对于此示例,将所有三个文件放在同一个工作目录中。
(1)编写并调试封面及论文。
(2)最后一步,运行main.tex
并将它们合并为一个 pdf。
这是文件TitlePage.tex
%%File TitlePage.tex
\documentclass[12pt]{article} %
\usepackage[left=1.00cm, right=1.00cm, top=1.00cm, bottom=1.00cm]{geometry}% narrow margins <<<<<
\usepackage{graphicx}
\begin{document}
\pagestyle{empty} % supress all headers <<<<<<<<<<<<<<<
\begin{center}
\vspace*{5cm}
\textbf{\Large Thesis Title}
\vspace{0.5cm}
Thesis Subtitle
\vspace{1.5cm}
\textbf{\large Author Name}
\vfill
A thesis presented for the degree of\\
Doctor of Philosophy
\vspace{1cm}
\includegraphics[width=0.2\textwidth]{example-grid-100x100pt}
Department Name\\
University Name\\
Country\\
Date
\end{center}
\end{document}
这是文件MyThesis.tex
%% File MyThesis.tex
\documentclass{bmcart}
\usepackage{lipsum} %dummy tex
\begin{document}
\section{Chapter title}
\lipsum[1]
\subsection{Heading for section}
\lipsum[1-3]
\subsubsection{Heading for sub section}
\lipsum[1-10]
\end{document}
这是文件main.tex
%%% File main.tex
\documentclass[twoside]{book}
\usepackage{pdfpages} % To include the cover and the tesis
\usepackage[left=0cm, right=0cm, top=0cm, bottom=0cm]{geometry}
\begin{document}
\includepdf[pages=-,pagecommand={},width=\textwidth]{TitlePage.pdf}
\newpage\mbox{}\clearpage
\includepdf[pages=-,pagecommand={},width=\textwidth]{MyThesis.pdf}
\end{document}
选项 2单个.tex
文件:文件AllMyThesis.tex
%% File AllMyThesis.tex
\documentclass{bmcart}
\usepackage{lipsum} %dummy tex
\usepackage{graphicx}
\begin{document}
%%%************************************************************ added
\titlepage % Output the title page
\begin{center}
\pagestyle{empty}
{ % Title(s) and author(s)
\sffamily % Font styling
{\Huge\bfseries A very long Thesis Title\par} % Book title
\vspace{16pt} % Vertical whitespace
{\LARGE Subtitle \par} % Subtitle
\vspace{44pt} % Vertical whitespace
{\huge\bfseries Author Name\par} % Author name
\vfill
A thesis presented for the degree of\\
Doctor of Philosophy
\vfill
\includegraphics[width=0.2\textwidth]{example-grid-100x100pt}\par
\vspace{24pt}
Department Name\\
University Name\\
Country\\
Date
}
\end{center}
\newpage \pagestyle{empty}\mbox{}\clearpage % blank page
\setcounter{page}{1} % start thesis with page 1
%%%************************************************************
\pagestyle{bmcheadings}
\section{Chapter title}
\lipsum[1]
\subsection{Heading for section}
\lipsum[1-3]
\subsubsection{Heading for sub section}
\lipsum[1-10]
\end{document}