Bind an image and a paragraph together
up vote
2
down vote
favorite
I have multiple blocks of text and each block is associated with an image. I am trying to wrap each image with its associated paragraph individually and so on. I want the next block of text and image to start after previous and not to overlap with each other.
Following is the sample code i've been using. and the respective result.
%Image for First text block
begin{wrapfigure}{r}{0.2textwidth}
includegraphics[width=0.19textwidth]{demo}
end{wrapfigure}
%First Text
entry{Abbreviated}{uh-bree-vee-ey-tid}{Adjective}{Constituting a shorter or smaller version of}
\
%Image for Second text block
begin{wrapfigure}{r}{0.2textwidth}
includegraphics[width=0.19textwidth]{demo}
end{wrapfigure}
%Second Text
entry{Aberration}{ab-uh-rey-shuh n}{Noun}{The act of deviating from the ordinary, usual, or normal type.}
The output i'm getting is,
Whereas i want the second block of text and image to start when first block has ended.
How can i bind the image and text together?
graphics wrapfigure block binding
add a comment |
up vote
2
down vote
favorite
I have multiple blocks of text and each block is associated with an image. I am trying to wrap each image with its associated paragraph individually and so on. I want the next block of text and image to start after previous and not to overlap with each other.
Following is the sample code i've been using. and the respective result.
%Image for First text block
begin{wrapfigure}{r}{0.2textwidth}
includegraphics[width=0.19textwidth]{demo}
end{wrapfigure}
%First Text
entry{Abbreviated}{uh-bree-vee-ey-tid}{Adjective}{Constituting a shorter or smaller version of}
\
%Image for Second text block
begin{wrapfigure}{r}{0.2textwidth}
includegraphics[width=0.19textwidth]{demo}
end{wrapfigure}
%Second Text
entry{Aberration}{ab-uh-rey-shuh n}{Noun}{The act of deviating from the ordinary, usual, or normal type.}
The output i'm getting is,
Whereas i want the second block of text and image to start when first block has ended.
How can i bind the image and text together?
graphics wrapfigure block binding
Welcome to TeX.SE! Please create a full, compilable minimal example including the documentclass and the used packages (e.g.,entry
in your current code looks like it comes from a package). For the question itself: maybe atabular
(instead ofwrapfigure
) could help?
– Marijn
Dec 4 at 14:29
You can use a couple of minipages. You can try parbox, but parbox does not change textwidth.
– John Kormylo
Dec 4 at 15:24
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I have multiple blocks of text and each block is associated with an image. I am trying to wrap each image with its associated paragraph individually and so on. I want the next block of text and image to start after previous and not to overlap with each other.
Following is the sample code i've been using. and the respective result.
%Image for First text block
begin{wrapfigure}{r}{0.2textwidth}
includegraphics[width=0.19textwidth]{demo}
end{wrapfigure}
%First Text
entry{Abbreviated}{uh-bree-vee-ey-tid}{Adjective}{Constituting a shorter or smaller version of}
\
%Image for Second text block
begin{wrapfigure}{r}{0.2textwidth}
includegraphics[width=0.19textwidth]{demo}
end{wrapfigure}
%Second Text
entry{Aberration}{ab-uh-rey-shuh n}{Noun}{The act of deviating from the ordinary, usual, or normal type.}
The output i'm getting is,
Whereas i want the second block of text and image to start when first block has ended.
How can i bind the image and text together?
graphics wrapfigure block binding
I have multiple blocks of text and each block is associated with an image. I am trying to wrap each image with its associated paragraph individually and so on. I want the next block of text and image to start after previous and not to overlap with each other.
Following is the sample code i've been using. and the respective result.
%Image for First text block
begin{wrapfigure}{r}{0.2textwidth}
includegraphics[width=0.19textwidth]{demo}
end{wrapfigure}
%First Text
entry{Abbreviated}{uh-bree-vee-ey-tid}{Adjective}{Constituting a shorter or smaller version of}
\
%Image for Second text block
begin{wrapfigure}{r}{0.2textwidth}
includegraphics[width=0.19textwidth]{demo}
end{wrapfigure}
%Second Text
entry{Aberration}{ab-uh-rey-shuh n}{Noun}{The act of deviating from the ordinary, usual, or normal type.}
The output i'm getting is,
Whereas i want the second block of text and image to start when first block has ended.
How can i bind the image and text together?
graphics wrapfigure block binding
graphics wrapfigure block binding
asked Dec 4 at 11:30
unkn0wn
1111
1111
Welcome to TeX.SE! Please create a full, compilable minimal example including the documentclass and the used packages (e.g.,entry
in your current code looks like it comes from a package). For the question itself: maybe atabular
(instead ofwrapfigure
) could help?
– Marijn
Dec 4 at 14:29
You can use a couple of minipages. You can try parbox, but parbox does not change textwidth.
– John Kormylo
Dec 4 at 15:24
add a comment |
Welcome to TeX.SE! Please create a full, compilable minimal example including the documentclass and the used packages (e.g.,entry
in your current code looks like it comes from a package). For the question itself: maybe atabular
(instead ofwrapfigure
) could help?
– Marijn
Dec 4 at 14:29
You can use a couple of minipages. You can try parbox, but parbox does not change textwidth.
– John Kormylo
Dec 4 at 15:24
Welcome to TeX.SE! Please create a full, compilable minimal example including the documentclass and the used packages (e.g.,
entry
in your current code looks like it comes from a package). For the question itself: maybe a tabular
(instead of wrapfigure
) could help?– Marijn
Dec 4 at 14:29
Welcome to TeX.SE! Please create a full, compilable minimal example including the documentclass and the used packages (e.g.,
entry
in your current code looks like it comes from a package). For the question itself: maybe a tabular
(instead of wrapfigure
) could help?– Marijn
Dec 4 at 14:29
You can use a couple of minipages. You can try parbox, but parbox does not change textwidth.
– John Kormylo
Dec 4 at 15:24
You can use a couple of minipages. You can try parbox, but parbox does not change textwidth.
– John Kormylo
Dec 4 at 15:24
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f463128%2fbind-an-image-and-a-paragraph-together%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Welcome to TeX.SE! Please create a full, compilable minimal example including the documentclass and the used packages (e.g.,
entry
in your current code looks like it comes from a package). For the question itself: maybe atabular
(instead ofwrapfigure
) could help?– Marijn
Dec 4 at 14:29
You can use a couple of minipages. You can try parbox, but parbox does not change textwidth.
– John Kormylo
Dec 4 at 15:24