latex的titlepage插入图片
时间: 2023-07-29 09:08:08 浏览: 180
books-latex:一些胶乳书籍
要在LaTeX的titlepage中插入图片,可以使用graphicx宏包和\includegraphics命令。以下是一个示例代码,其中假设要插入名为"image.jpg"的图片。
```
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{titlepage}
\centering
\includegraphics[width=0.4\textwidth]{image.jpg}\par\vspace{1cm}
{\scshape\LARGE My Title \par}
\vspace{1cm}
{\Large My Name\par}
\vfill
{\large \today\par}
\end{titlepage}
\end{document}
```
在上面的代码中,\includegraphics命令被用来插入图片,[width=0.4\textwidth]使图片的宽度等于页面宽度的40%。在图片下面,使用\LARGE和\Large命令设置了标题和作者的字体大小。最后,使用\vfill命令将日期放置在页面底部。
阅读全文