Eu estava acompanhando osolução dada aquipara tentar obter este efeito:
mas esta solução não teve sucesso. Isto é o que resulta do código fornecido abaixo:
Você pode me ajudar a fazer com que o texto apareça ao lado das figuras como na primeira imagem acima?
Aqui está o código que tenho até agora:
\documentclass{article}
\usepackage{graphicx}
\newcommand*{\authorimg}[1]{%
\raisebox{-.3\baselineskip}{%
\includegraphics[
height=\baselineskip,
width=\baselineskip,
keepaspectratio,
]{#1}%
}%
}
\begin{document}
\begin{itemize}
\item[\authorimg{example-image-a}] FONTS\\The range of fonts on your\\
computer is often highly distinctive\\(unless you only have the fonts\\the machine came with)
\item[\authorimg{example-image-b}] SCREEN SIZE\\Though easily switched, this\\setting can be a useful aspect of\\your devices's fingerprint
\end{itemize}
\end{document}
Responder1
Algo assim?
\documentclass[]{article}
\usepackage{graphicx,array}
\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\begin{document}
\begin{tabular}{C{2.8cm} L{5.5cm}}
\includegraphics[width=\linewidth]{example-image-a} & FONTS \newline
The range of fonts on your computer is often highly distinctive (unless you only have the fonts the machine came with) \\
\includegraphics[width=\linewidth]{example-image-a} & SCREEN SIZE \newline
Though easily switched, this setting can be a useful aspect of your device's fingerprint \\
\includegraphics[width=\linewidth]{example-image-a} & SOFTWARE \newline
Do you have an art director's toolkit or are you an unrepentant gamer? Or both?
\end{tabular}
\end{document}
Corrigi as larguras de ambas as colunas para reproduzir algo parecido com o que você tem, solução referenciadaaqui. Eles permitem a quebra manual de linha via \newline
, que é o que eu usei para quebrar a linha FONTS
etc.
Responder2
com uso de miniage
apenas no primeiro item:
\documentclass{article}
\usepackage{graphicx}
\newcommand*{\authorimg}[1]{%
\raisebox{-.3\baselineskip}{%
\includegraphics[
height=\baselineskip,
width=\baselineskip,
keepaspectratio,
]{#1}%
}%
}
\begin{document}
\begin{itemize}
\item[\authorimg{example-image-a}] \begin{minipage}{\dimexpr\linewidth-2\baselineskip\relax}
FONTS\\The range of fonts on your\\
computer is often highly distinctive\\
(unless you only have the fonts\\
the machine came with)
\end{minipage}
\item[\authorimg{example-image-b}] SCREEN SIZE\\Though easily switched, this\\setting can be a useful aspect of\\your devices's fingerprint
\end{itemize}
\end{document}
Adendo: para ter uma imagem maior você precisa
- para definir maior
labelwidth
(essa imagem tem espaço no rótulo) - o tamanho da imagem se adapta à largura da etiqueta
Por exemplo, o tamanho da imagem deve ser igual ao 4\baselineskip
que você pode alterar acima do MWE da seguinte forma:
\documentclass{article}
\usepackage{graphicx}
\usepackage{enumitem}
\newcommand*{\authorimg}[1]%
{ \raisebox{-1\baselineskip}{\includegraphics[width=\imagesize]{#1}}}
\newlength\imagesize % new lwngth for determining image size and label width
\begin{document}
\begin{itemize}[leftmargin=1.2\imagesize,labelwidth=\imagesize]% left margin is 20% bigger than label width
\setlength\imagesize{4\baselineskip}
\item[\authorimg{example-image-a}] \begin{minipage}{\dimexpr\textwidth-1.2\imagesize\relax}
FONTS\\
The range of fonts on your\\
computer is often highly distinctive\\
(unless you only have the fonts\\
the machine came with)
\end{minipage}
\end{itemize}
\end{document}