
Atualmente, estou escrevendo meu currículo e escrevo
\documentclass[a4paper,12pt]{letter}
\usepackage{tabularx}
\usepackage{graphicx}
\graphicspath{ {C:/Users/asus_user/Pictures/} }
\begin{document}
\vspace*{-6cm}
\flushright
\begin{frame}{}
\includegraphics[width=2.75cm, height=4cm]{head}
\end{frame}
\begin{center}
WANG \\
Tel.(Mobile) : 12345 \\
Tel. (Home) : 12345 \\
Email : alanwang@my
\end{center}
\end{document}
Quero inserir minha foto no lado direito dessas quatro linhas.
Mas o que eu desejo não acontece. Como posso consertar isso? Obrigado
Responder1
Aqui está uma tabular
abordagem aninhada. Dependendo do tamanho real da foto há algumas adaptações a serem feitas, claro, assim como o alinhamento esquerda/direita (por exemplo, descartando o center
ambiente) e a geometria da página, por exemplo, a margem superior.
\documentclass[a4paper,12pt]{letter}
\usepackage{graphicx}
%\graphicspath{ {C:/Users/asus_user/Pictures/} }
\begin{document}
%\vspace*{-6cm}
\begin{center}
\begin{tabular}{lr}
\begin{tabular}[b]{ll}
\multicolumn{2}{c}{WANG} \tabularnewline
Tel.(Mobile): &12345 \tabularnewline
Tel. (Home): & 12345 \tabularnewline
Email: & alanwang@my \tabularnewline
\end{tabular}
&
\begin{tabular}[b]{r}
\includegraphics[width=2.75cm, height=4cm]{beeduck}
\end{tabular}
\end{tabular}
\begin{tabular}{lr}
\begin{tabular}{ll}
\multicolumn{2}{c}{WANG} \tabularnewline
Tel.(Mobile): &12345 \tabularnewline
Tel. (Home): & 12345 \tabularnewline
Email: & alanwang@my \tabularnewline
\end{tabular}
&
\begin{tabular}{r}
\includegraphics[width=2.75cm, height=4cm]{beeduck}
\end{tabular}
\end{tabular}
\end{center}
\end{document}
Responder2
Você pode usar o ambiente de colunas e criar colunas apropriadas para o efeito desejado. Aqui está o código que usei para gerar a imagem
\begin{columns}[T] \column{0.43\linewidth}\begin{block}{Assumption} \begin{itemize} \item Text. \item Text. \item Text. \item Text. \end{itemize} \end{block} \column{0.5\linewidth} \begin{figure}[p] \centering \includegraphics[width=1\textwidth]{../01_pic/architecture.pdf} \end{figure} \end{columns}