سلام
راه اول:
با کمک بسته adjustbox
:
\documentclass[11pt,a4paper]{article}
\usepackage[export]{adjustbox}
\usepackage{graphicx}
\begin{document}
\section*{Education \& Qualifications}
\begin{description}
\item[{\includegraphics[width=10mm,height=10mm,valign=c]{Tehran}}]
M.S. in Electrical Engineering, Communications. (March 2016)
\end{description}
\section*{Licenses \& certifications}
\begin{description}
\item[{\includegraphics[width=10mm,valign=c]{Google}}]
Crash Course on Python
\item[{\includegraphics[width=10mm,valign=c]{Michigan}}]
Programming for Everybody (Python)
\end{description}
\end{document}
خروجی:
راه دوم:
با کمک \height
:
\documentclass[11pt,a4paper]{article}
\usepackage{graphicx}
\begin{document}
\section*{Education \& Qualifications}
\begin{description}
\item[\raisebox{-0.4\height}{{\includegraphics[height=10mm]{Tehran}}} ]
M.S. in Electrical Engineering, Communications. (March 2016)
\end{description}
\section*{Licenses \& certifications}
\begin{description}
\item[\raisebox{-0.4\height}{{\includegraphics[height=10mm]{Google}}}]
Crash Course on Python
\item[\raisebox{-0.4\height}{{\includegraphics[height=10mm]{Michigan}}}]
Programming for Everybody (Python)
\end{description}
\end{document}
خروجی:
روش سوم با کمک parbox
\documentclass[11pt,a4paper]{article}
\usepackage{graphicx}
\begin{document}
\section*{Education \& Qualifications}
\begin{description}
\item[\parbox{10mm}{\includegraphics[height=10mm]{Tehran}}]
M.S. in Electrical Engineering, Communications. (March 2016)
\end{description}
\section*{Licenses \& certifications}
\begin{description}
\item[\parbox{10mm}{\includegraphics[height=10mm]{Google}}]
Crash Course on Python
\item[\parbox{10mm}{\includegraphics[height=10mm]{Michigan}}]
Programming for Everybody (Python)
\end{description}
\end{document}
خروجی:
راه چهارم:
استفاده از یکی از ۳ راه قبلی و minipage
برای نوشتن متن بیشتر منعطف با عرض متن.
\documentclass[11pt,a4paper]{article}
\usepackage{graphicx}
\begin{document}
\section*{Education \& Qualifications}
\begin{description}
\item[\parbox{10mm}{\includegraphics[height=10mm]{Tehran}}]
\begin{minipage}{\dimexpr\linewidth-10mm}
Tehran University \\
M.S. in Electrical Engineering, Communications. (March 2016)
\end{minipage}
\end{description}
\section*{Licenses \& certifications}
\begin{description}
\item[\parbox{10mm}{\includegraphics[height=10mm]{Tehran}}]
\begin{minipage}{\dimexpr\linewidth-10mm}
Google, launched on Coursera (online platform) \\
Crash Course on Python
\end{minipage}
\item[\parbox{10mm}{\includegraphics[height=10mm]{Michigan}}]
\begin{minipage}{\dimexpr\linewidth-10mm}
University of Michigan, launched on Coursera (online platform) \\
Programming for Everybody (Python)
\end{minipage}
\end{description}
\end{document}
خروجی:
بیزحمت فایل عکس را بصورت zip ارسال بفرمایین. چون سایت، هم کیفیت را پایین میاره، هم اسم عکس رو عوض میکنه که منو اولش به اشتباه انداخت.
موفقتر باشین