我正在尝试探索这个令人难以置信的非所见即所得的世界。因此,我的第一个主要挑战是使用 LaTeX 撰写我的硕士论文。我在工作开始时就发现了一些困难:封面。我需要像这个模型一样自定义封面(这是我大学论文的强制性模型):
我需要将大学徽标放在虚线矩形内。我尝试将它放在那里,但没有成功。
答案1
首先,您可以将标题页放在titlepage
环境中,以便文档类以适当的方式处理它。
然后,您可以以相对的方式设置文本块之间的距离(通过使用命令\stretch
),因此如果您需要更改纸张尺寸(关于论文格式的大学政策可能非常烦人)它们仍然保持页面上的相同比例。
您还可以定义相对于文档参数的图片大小,方法是将长度定义为数字乘以预定义常量,例如定义width
为的倍数\textwidth
。请务必使用矢量图,这样它就不会因调整大小而遭受质量损失(并且文件大小也会更小)。您可以找到多种格式的 UNICAMP 徽标这里(谨防:eps 版本在 postscript 代码之后写了一些乱码。删除它们,否则 LaTeX 不会喜欢它们。
您可以使用包中的命令进一步微调边距geometry
。
一个完整的例子titlepage
是
\usepackage{graphicx}
\usepackage[a4paper]{geometry}
...
\begin{titlepage}
\includegraphics[width=.1\textwidth]{your-university-logo}
\centering
\vspace{\stretch{1}}
\Large{Your Name}
\vspace{\stretch{1}}
\LARGE{\textbf{Your Thesis Title}}
\vspace{\stretch{2}}
\Large{Your City\\Date}
\end{titlepage}
答案2
以下是满足您需求的第一种方法:
\documentclass{article}
\usepackage{xcolor}
\usepackage{graphicx}
\usepackage[showframe]{geometry}
%\geometry{margin=3cm} %declare margins as they shold be in the doument itself
\begin{document}
\newgeometry{top=3cm,right=3cm,left=3cm,bottom=2cm,includefoot}
{\color{blue}\rule{2cm}{2cm}}\par
\begin{center}
{\color{red}Modelo CAPA...}\par
\vspace{1cm} %or any other space you like
{\Large (Enter your name here)}\par
\vspace{2cm} %as above
{\huge (Enter your title here)}\par
\vfill
{\Large CAMPINAS\\[.5\baselineskip]
2012}
\end{center}
\restoregeometry
%From here you can start the rest of your thesis
\end{document}
要包含您的实际图像,只需替换行
{\color{blue}\rule{2cm}{2cm}}\par
。\includegraphics[scaling]{picname}
在声明实际论文正文的边距后取消注释第 5 行(我假设你给出的边距仅适用于标题页),和geometry
当您对布局有信心时,请放弃“showframe”选项。
答案3
\documentclass{article}
\usepackage[demo]{graphicx}
\begin{document}
\begin{picture}(0,0)
\put(-50,-50)%adjust these values to place the graphic
\includegraphics{dummy.jpg}
\end{picture}
\begin{centering}
\vspace{5cm}%adjust as needed
\vfill
my name here
\vfill
\vspace{5cm}%adjust as needed
Title
\vfill
\end{centering}
\end{document}