我正尝试在报告的标题页上添加两个人的姓名和详细信息。
我对 Latex 还很陌生,一直在尝试使用 flushleft 和 flustright,但预期的格式不起作用。
我还需要添加图片仅在左侧主管姓名下方(参见图片)。任何线索都会很有帮助。提前谢谢您
我现在正在处理的代码是:
\documentclass[a4paper, 12pt, oneside, BCOR1cm,toc=chapterentrywithdots]{scrbook}
\usepackage{graphicx}
\usepackage{makeidx}
\usepackage[colorlinks=false]{hyperref}
\usepackage{tocbibind}
\usepackage{blindtext}
\usepackage{subfigure}
\usepackage{acronym}
\usepackage{amsmath}
\begin{titlepage}
{
\begin{center}
\raisebox{-1ex}{\includegraphics[scale=1.5]{Image.pdf}}\\
\end{center}
\vspace{0.5cm}
}
\begin{center}
\LARGE{\textbf{Title of the Report}}\\
\vspace{1cm}
\Large{\textbf{My Report}}\\
\vspace{1cm}
Submitted in Fulfilment of the\\
Requirements for the Academic Degree\\
Text.\\
\vspace{0.5cm}
Dept. of XXXX XXXX\\
Chair of XXXXX XXXXXX
\end{center}
\vspace{3cm}
Submitted by: Name\\
Student ID: 111222\\
Date: 12.12.1212\\
\vspace{0.3cm}\\
%this is the place I want to add the left and right texts with an image
Supervising tutor: XXXX \\
\end{titlepage}
\end{document}
我发现了一些关于在左侧和右侧标题页上添加名称的问题,但我无法用图像实现它
答案1
欢迎来到 TEX!
请查看这是否满足要求 - 请尝试给出一个最小工作示例(MWE),如网站上所述(尝试搜索),否则这一切都只是猜测和假设
\documentclass{report}
\usepackage[pass,showframe]{geometry}
\usepackage[demo]{graphicx}
\usepackage{adjustbox}
\begin{document}
\noindent
\begin{minipage}[t]{0.5\textwidth}
\flushleft\small
Supervising Tutor: First Name LName\\
University Name
\end{minipage}%
\hfill%
\begin{minipage}[t]{0.5\textwidth}
\flushright\small
External Supervisor: First Name LName\\
University Name: XXX
\end{minipage}%
%
\bigskip
\noindent
%
\begin{minipage}[t]{0.5\textwidth}
\flushleft\small
\phantom{Supervising Tutor: First Name LName}\\
\phantom{University Name}
\end{minipage}%
\hfill%
\begin{minipage}[t]{0.48\textwidth}
\includegraphics[width=0.5\textwidth]{logo}
\end{minipage}%
\end{document}