Eu tenho o seguinte documento como segue.
Preciso de dois ajustes.
- Preciso de assinatura impressa e assinatura como imagem no lado direito da página (que está à esquerda como está agora). No entanto, outras partes do documento usarão o alinhamento normal à esquerda.
- Também preciso da assinatura impressa e da assinatura como uma imagem alinhada verticalmente.
Alguém poderia me ajudar com isso, por favor? Obrigado!
\documentclass\[english\]{scrartcl}
\usepackage{graphics}
\usepackage\[T1\]{fontenc}
\usepackage\[utf8\]{inputenc}
\usepackage{babel}
\setkomafont{disposition}{\normalfont\bfseries}
\usepackage{graphicx}
\usepackage\[printwatermark\]{xwatermark}
\usepackage{xcolor}
\begin{document}
\title{\LARGE Thesis Title}
\date{\today}
\maketitle
The work in this thesis is my own except where otherwise stated.
Signature
\includegraphics\[scale=0.3\]{images}
\end{document}
Responder1
Use umtabular
\documentclass[english]{scrartcl}
%\usepackage{graphics} %% not needed
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\setkomafont{disposition}{\normalfont\bfseries}
\usepackage{graphicx}
\usepackage[printwatermark]{xwatermark}
\usepackage{xcolor}
\begin{document}
\title{\LARGE Thesis Title}
\date{\today}
\maketitle
The work in this thesis is my own except where otherwise stated.
\hspace*{\fill}
\begin{tabular}{l} %% if you want centered alignment use 'c' instead of 'l'
Signature \\[1ex]
\includegraphics[scale=0.3]{example-image}
\end{tabular}
Again some text
\end{document}
Responder2
Você também pode usar \flushright
. Em vez disso, scale
você também pode medir a largura da assinatura original e usá-la.
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\title{\LARGE Thesis Title}
\author{Author McAuthorson}
\date{\today}
\maketitle
\begin{flushright}
\includegraphics[width=2in]{signature} % adjust width as necessary or use scale
\bigskip % optional
Author McAuthorson
\end{flushright}
\end{document}
Nota: [
é um caractere especial que latex
pode ser lido como parte de um comando. Você só usa \[
quando deseja digitar o colchete como um caractere em vez de usá-lo em um comando.
PS: Gerei a assinatura falsa com o wesa
pacote de fontes em um documento separado .tex
e depois tirei uma captura de tela do resultado.