estaba siguiendo elsolución dada aquípara intentar conseguir este efecto:
pero esta solución no tuvo éxito. Esto es lo que resulta del código que figura a continuación:
¿Puedes ayudarme a que el texto aparezca junto a las figuras como en la primera imagen de arriba?
Aquí está el código que tengo hasta ahora:
\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}
Respuesta1
¿Algo como esto?
\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}
Arreglé los anchos de ambas columnas para reproducir algo similar a lo que tienes, solución referenciadaaquí. Estos permiten el salto de línea manual a través de \newline
, que es lo que solía hacer para el salto de línea, FONTS
etc.
Respuesta2
con uso de miniage
en el primer elemento únicamente:
\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}
Anexo: para tener una imagen más grande necesitas
- para definir más grande
labelwidth
(esa imagen tiene espacio en la etiqueta) - El tamaño de la imagen se adapta al ancho de la etiqueta.
Por ejemplo, el tamaño de la imagen debe ser igual al 4\baselineskip
que puede cambiar arriba de MWE de la siguiente manera:
\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}