0
votes
0answers
28 views

let latex decide where to place a picture in multicol environment

I have a three column text with floating pictures. The whole latex code is made by scripting. The pictures are sometimes badly placed, so that the text is streched out (vertical space in between ...
4
votes
2answers
171 views

Table of 2x2 tikzpictures

I'm attempting to condense 4 tikzpictures into a smaller space in my document. The solution I have is as follows: \documentclass{article} \usepackage[paperwidth=6in, paperheight=4in]{geometry} ...
7
votes
1answer
125 views

How to fix a figure at the top or bottom of a column within multicol?

Within the multicol environment I want to be able to fix a figure to be displayed at either the top or bottom of a column (as in a scientific journal). The figure environment cannot be used in ...
8
votes
1answer
117 views

Vertical Centering in a multicols

In a document I have several multicols units, in which on one side there is an image and on the other side some information in a itemize. Now, depending on the image / information, the two "sections" ...
4
votes
1answer
118 views

Spacing in multicols environment with figures

I have the following lines: \documentclass[a4paper,landscape,12pt,oneside]{scrbook} \usepackage[english]{babel} \usepackage{multicol,lipsum} \usepackage[demo]{graphicx} \usepackage[utf8]{inputenc} ...
1
vote
0answers
49 views

Section outside multicols environment if section contains a table

I am using \begin{multicols*}{2} to split my text in two columns on the landscape format paper. Now if I have a tabular, it resizes the tabular to \linewidth. What I want is to ask if there is a ...
2
votes
2answers
251 views

Insert figure in a multicol article

I am trying to insert a figure with a caption into a multicol article. When the figure was inserted on its own, it was fine: includegraphics[width=0.5cm]{image} However, when I tried to insert the ...
7
votes
1answer
463 views

Three-columns text with figures of 2\columnwidth

Although in multicol environment (not the twocolumn option in document class) is problematic to place floats, there are some ways to put figures within a single column or occupying the entire width of ...
3
votes
1answer
683 views

How to insert algorithm inside multicols environment [duplicate]

Possible Duplicate: Placing figures inside a two-column document Here is my MWE: \documentclass{article} \usepackage{multicol} \usepackage{algorithm} \usepackage{algpseudocode} ...
3
votes
1answer
553 views

Multicolumn image

How can i span image across two columns in multicolumn environment? I want to create something like this: c1 Image c1 Image c1 c2 c3 c1 c2 c3 (c1, c2, c3 = columns) It can be done in ConTeXt: ...
17
votes
3answers
9k views

Placing figures inside a two-column document

I'm trying to get images in my document in two different ways: On top of the entire page, centered On top of a single column I tried it with both twocols and multicols. I ruled out twocols because ...
6
votes
1answer
4k views

How to float figure within multicol text

I have a simple two-column text, and want to place figures within the text. I used this code \documentclass{article} \usepackage{multicol} \usepackage{graphicx} \usepackage{caption} \begin{document} ...
4
votes
2answers
762 views

Hypcap not working with custom figure environment

I'm trying to use caption with hypcap=true so that cross-reference hyperlinks will go to the figure instead of the figure caption. However, I'm using a multicol environment with a custom figure ...
3
votes
1answer
951 views

Include floated figure in two column environment

I'm using a two column layout and I'm trying to get a figure to appear on the bottom of the page it's currently on. Floats don't work natively in a multicol environment. Right now I'm getting around ...
3
votes
1answer
594 views

multicols, lstlisting and float

Using the following structure, how can I get the listing to stay on the same page, be it at the top or the bottom? \documentclass{scrartcl} \usepackage[ngerman]{babel} \usepackage{multicol} ...
4
votes
1answer
132 views

Getting floating objects in multicol environments

I am using multicol with 2 columns, and I would love to have my figures and tables to float, so that I don't have to manually mess around with the positioning anymore. I am aware of figure*, but I ...
3
votes
2answers
2k views

Listing and Tabular in Multicols enviornment

I want to use the multicols environment to display a listing beneath a table: \begin{multicols}{2} \begin{lstlisting}[] ..... \end{lstlisting} \columnbreak \begin{table} \centering ...
1
vote
1answer
440 views

Setting table placement as “here” in a multicol environment, spanning 2 columns

I have a problem with table placement. I want the table to be anchored to the position where it occurs in the text (i.e. "here", "h") and the columns should simply wrap around it. The table should ...
0
votes
3answers
10k views

latex two column layout set figure to load on single column

this is the double column code \begin{multicols}{2} \begin{figure*}[!ht] \centering \includegraphics[height=60mm]{CC.jpg} \caption{AA \cite{BB}} \end{figure*} \end{multicols} But the ...
16
votes
2answers
6k views

multicol and figures

I have a two column document (using multicol) and want to insert figures so that they do NOT span columns. I have searched around and the only thing I can find says that only figure* is supported ...
5
votes
1answer
3k views

Column width in multicol and using float environments

I'm trying to write my first report ever using LaTeX. I want it to have two columns so I'm using the multicol package. The columns are too narrow though, I want it to be wide like, say, elsevier style ...
5
votes
1answer
1k views

full-width tables in multicolumnar text

If I create a table in twocolumn, the text on the second column overlaps the right half of the table. If I use a table*, whether with twocolumn or multicols, it instead is moved to the next page. ...
7
votes
3answers
4k views

How can I create a multicol “figure”?

I have the following, somewhat minimal, example: \documentclass{article} \usepackage{multicol} \begin{document} \begin{multicols}{2} \begin{minipage}{\textwidth} \begin{framed} The function ...