大家好,我正在尝试制作论文标题页,我正在修改论文课程以按照自己的方式进行,所以我想在页面左侧放置两张图片,在右侧放置文本,我正在使用minipage
环境我有此代码。主要:
\documentclass[12pt,letterpaper,chap,oneside,openright]{thesis}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english,spanish]{babel}
\renewcommand{\shorthandsspanish}{}
\usepackage{mathptmx}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
%\usepackage{imakeidx}
\usepackage{graphicx}
\usepackage{tocbibind}
\usepackage[hang]{caption}
\renewcommand{\captionfont}{\bfseries}
%\usepackage[left=4.00cm, right=2.5cm, top=2.5cm, bottom=2.5cm]{geometry}
%\makeindex % para que cree el índice (pero aún no decimos dónde)
\begin{document}
\include{Portada}
%\include{Dedicatoria} %agregar al indice
%\include{Agradecimientos} %Agregar al indice
%\include{Resumen}
%\include{Abstract}
\include{Objetivos}
\include{Justificacion}
\include{Estado}
\include{Desarrollo}
\include{Biblio}
\end{document}
波尔塔达
% Supply information for use on title page:
\institute{INSTITUTO POLITÉCNICO NACIONAL}
\school{ESCUELA SUPERIOR DE INGENIERÍA \\ MECÁNICA Y ELÉCTRICA}
\thesistitle{"Sistema de pulsioximetría con múltiples longitudes de onda y
detección síncrona"}
\author{Ing. David González Gamboa}
\degree{Maestría en Ciencias en Ingeniería Electrónica}
\department{Fotónica} % provide your area of study here; e.g.,
% "Mechanical Engineering", "Nuclear Engineering", "Physics", etc.
\signaturelines{3}
\projadviser{Dr. José Manuel de la Rosa Vázquez} % For a masters project
use \projadviser instead of \thadviser,
\memberone{Isaac Newton}
\membertwo{Copernicus}
%\memberthree{Aristotle} % must change signaturelines to 4 if using this
4 members
\submitdate{Ciudad de México, Enero de 2019 }
\copyrightyear{} % if omitted, current year is used.
\titlepage
论文课
\def\titlepage{%
\pagenumbering{roman}
\thispagestyle{empty}
\ifnum\numcomm<4 \vglue .5in\vfil \fi % masters
\ifnum\numcomm>5 \hbox{ } \vspace{-24pt}\fi % make more space on page
\begin{minipage}[t][4cm]{0.2\textwidth}
\includegraphics[width=\textwidth]{escudo}
\includegraphics[width=\textwidth]{ESIME}
\end{minipage}
\begin{minipage}{0.8\textwidth}
\begin{singlespace}
\begin{center}
\parindent=0pt
{\large\uppercase\expandafter{\@institute}}\\ [12pt]
\@school \\[12pt]
\@thesistitle \\
\@author\\ [12pt]
A \doctype Submitted to the Graduate\\ [8pt]
Instituto Polit\'{e}cnico Nacional\\ [8pt]
in Partial Fulfillment of the\\ [8pt]
Requirements for the Degree of\\ [8pt]
\uppercase\expandafter{\@degree}\\ [8pt]
Major Subject:~~\uppercase\expandafter{\@department}\\
\ifnum\numcomm < 7 \vskip 32pt \else \vskip 24pt \fi
\sigblock
\ifnum \numcomm < 7 \vskip 32pt \else \vskip 24pt \fi
Rensselaer Polytechnic Institute\\
Troy, New York\\ [14pt]
\ifnum\numcomm>6 \vskip -8pt \fi
\@submitdate
\end{center}
\end{singlespace}
\end{minipage}
\newpage
\pagestyle{plain}
% \pagenumbering{roman}
% \setcounter{page}{2}
}
我明白了
我想要这样的东西
当然,没有边界,有什么想法可以做到这一点吗?