Tagged Questions
3
votes
1answer
29 views
tabularx \hline introduces blank line above
I am using tabularx and I successfully created some tables with it so far (not too nice ones, but thats another problem). One Table freaks me out, as the "header" is separated from the next lines not ...
1
vote
1answer
30 views
multicolumn command with tabularx environment
Apologies if I am posting to the wrong thread - I'm not a regular user of boards and I know you guys can get pretty annoyed when the answer to my question is already out there. I've been searching ...
1
vote
2answers
37 views
Oversize table with nested tabularx->minipage->tabular* has columns that are too narrow (Memoir)
I am trying to lay out a table heading that looks something like this:
TITLE
--------------------- subtitle
Name Value description
Name A value of Name Value
...
7
votes
2answers
87 views
table rescaling and subcaption package
I am placing tables side-by-side using the subcaption package in the following way:
\documentclass{article}
\usepackage{siunitx}
\usepackage{booktabs}
\usepackage{subcaption}
\usepackage{tabularx}
...
3
votes
1answer
35 views
Making rotated adjustbox fit into cell
I tried \rotatebox, but was unable to make the rotated text vertically fit into one cell so I opted for \adjustbox instead.
\documentclass{article}
\usepackage{float}
\usepackage{multirow}
...
5
votes
1answer
61 views
\bfseries and alignment in table
I'm trying to highlight some decimal-point aligned entries in two large tables which are arranged in two columns. I'm using \bfseries to do this and unfortunately this seems to be affecting the ...
2
votes
1answer
68 views
Package minted: \mint Command Not Working Inside tabularx Environment
The question, How to embed a minted environment inside a tabular environment?, addresses a similar issue, but I am using:
the tabularx package, and
the inline \mint command
Is there a workaround ...
5
votes
2answers
67 views
Use a nested enumeration as a column of a table
I am creating a list of requirements in a table in which the first column should be an enumeration, such that each requirement is identified by a unique number. Some requirements also have sub ...
1
vote
2answers
80 views
Wrapping text in \multicolumn
I would like to wrap (and center) text within \multicolumn. Tabularx and tabilary only wrap the text outside of the \multicolumn{} columns. I would also like to define the column width as defined by ...
4
votes
1answer
27 views
Split a tabularx cell at its diagonal when the X column specification is used?
How do I split a cell diagonally, when I'm using tabularx with X column, i.e. \begin{tabularx}{\textwidth}{X}?
I've seen many answers on this topic on TeX.SE, but none of them are applicable to cells ...
2
votes
0answers
21 views
Nested tabularx doesn't work with ltablex
This works:
\documentclass{article}
\usepackage[a5paper]{geometry}
\usepackage{array}
\usepackage{tabularx}
\setlength{\parindent}{0cm}
\begin{document}
\begin{tabularx}{\textwidth}{ |X|}
\hline
...
3
votes
1answer
56 views
Extra space between columns (fixed/predefined width and X) in tabularx
This is a follow-up question of: What is the right way to set predetermined column widths with tabularx?
As seen in the code below,
\begin{landscape}
\renewcommand*{\arraystretch}{2}
...
4
votes
1answer
45 views
What is the right way to set predetermined column widths with tabularx?
I was just wondering about this, because I went over the tabularx documentation and I couldn't find an answer.
So, there are several questions going on here:
Is it better to use a proportion of the ...
1
vote
1answer
62 views
Footnote in tabularx doesn't work (with hyperref)
Here is the min file:
\documentclass{article}
\usepackage{tabularx}[1999/01/07] % v2.07
\usepackage{hyperref}% 2012/10/15 v6.83k
\listfiles
\begin{document}
\begin{minipage}[t]{.5\linewidth}
...
3
votes
3answers
81 views
Reduce tab spacing
How can I reduce the spacing after I have used & in tabular?
\documentclass{article}
\usepackage{tabularx}
\begin{document}
\begin{tabularx}{\textwidth}{X X}
\textbf{Greetings} & Refer to ...
3
votes
1answer
33 views
How can one adjust each text to the center for each box of the table?
Here is the example:
\begin{tabularx}{\textwidth}{ |X|X|X|X|X| }
\hline
Equation & 2 & 3 & 5 & 7 \\
\hline
$y_0 = b^{t}$ & -483061 & 1 & -174089 & 793599 \\
\hline
...
2
votes
1answer
44 views
text grouped style in sidewaystable
I have a problem with my sidewaystable. I have quite a lot text in one of my columns. I have used tabularx so that the text doesn't run out of the page at the right side. Now the text is in grouped ...
4
votes
1answer
90 views
tabularx: bottom alignment on r or l-columns when X column wraps
In tabularx, when the X-column wraps on more than one line, l/r/c-columns remains top aligned: MWE:
\begin{tabularx}{5cm}{lXr}
1 & qwer asdf zxcv qwer asdf zxcv qwer asdf zxcv & 1 \\
2 ...
2
votes
1answer
30 views
Why does ltablex skip a number in captions?
The below example presents two tables with an tabularx environment (taken from package ltablex) and a caption. After each tabularx-table, the table counter skips one, as if both the caption and the ...
1
vote
1answer
55 views
Last cell in complex table not behaving
I am having a hard time figuring out why the text in the last cell on each row of this complex table I am creating is not positioning correctly. As you can see from my code, the issue only occurs when ...
4
votes
2answers
95 views
Table with 100 % width and vertical / horizontal alignment
I want to draw the following table in LaTeX. In the first column the text should be left aligned. The text in all other cells should be centered. The first problem occurs with D in the first row. If I ...
3
votes
1answer
117 views
Editing Table in LateX
Below is a table I want it to appear it the top page of a two column page. But its not looking good so if anyone could please assist me.
\begin{table*}[t]
...
6
votes
1answer
70 views
Table Configuration
I'm new to LaTeX, and I'm currently struggling with trying to create a table for a lab report. The table has to look like this:
I have tried looking at the \tabular, \tabulary and \tabularx ...
1
vote
1answer
44 views
Onslide in tabularx produces vertical space
I have a tabular in a beamer presentation of which I want to uncover its contents using \onslide. In tabularx (or in tabular with a p-column) this produces a peculiar vertical white space in the ...
5
votes
2answers
142 views
Custom glossary style: Make glossary as wide as \textwidth
WARNING: This is a follow-up question to Display long form (first-use like) entries of none acronyme type entries.
As mafp suggested in the other post I went ahead and defined my own glossary-styles ...
1
vote
1answer
106 views
How to create a dashed line in tabularx environment
I've been looking into this, and I have encountered two main "solutions":
\usepackage{arydshln}
As decribed here.
And this one:
\usepackage{dashrule}
As described in this other post.
However, ...
0
votes
1answer
99 views
Soft midrule in table
3 small questions:
1) I'd like to put a soft \midrule in this table between Care type and the headers, but I'd like it to not quite reach the edge of the table: (at your discretion to mess with the ...
2
votes
1answer
72 views
Border alignment issue using tabularx in LaTeX
I'm writing a program to parse wikimarkup to LaTeX, and I've run into a bit of an issue when it comes to creating tables. For some reason, the right vertical edge of the table is getting pushed way ...
3
votes
3answers
119 views
Top alignment of cell content in tabularx
I would like to align the content of each cell (of the first column) to the top. The approaches presented here did not apply. Maybe it has something to do with die tabular-environment inside the ...
6
votes
2answers
148 views
How to vertically align multiline column
I am trying to set up a table with the tabularx package (although the used package does not really matter to me).
The table should stretch across the entire line. I am trying to get both columns ...
0
votes
0answers
48 views
ignored {\linewidth} in {tabularx}
In my Project MikTex totally ignores both the {\linewidth} and p{...} totally.
In a clean new project, it works fine.
Any ideas, which command can cause this painfull behavior?
The sample code
...
2
votes
2answers
226 views
Dificult using LTXtable
I have a script in R that build a report in LaTeX. Sometimes, this report has very long and very wide table, so, after some research I decided try ltxtable. My problem is that I didn't get how it ...
3
votes
1answer
115 views
Fit table in page column also some editing
I want to make the table fit into one column in a two column page.
Also, I need it to look like this:
Here’s my code
\documentclass[twocolumn]{article}
\usepackage{adjustbox}
\begin{document}
...
4
votes
1answer
109 views
How to 'shorten' \cline so that multiple groups in a table become visible?
I would like to construct a table which looks like a booktabs table (but
without using the package booktabs). Instead of \cmidrule, I used \cline,
which comes pretty close (see below), but the lines ...
2
votes
1answer
135 views
newenvironment tabularx and begin center
I try to create a custom env, based on a tabular. I try to make a \begin{center} before my tabular to remove identation at the beginning of the tabular, but he tells me
"File ended while scanning ...
1
vote
1answer
70 views
classic table footnote with a twist
\documentclass{article}
\usepackage{hyperref}
\usepackage{tabularx}
\usepackage{footnote}
\makesavenoteenv{table}
\begin{document}
\begin{table}[htbp]
\begin{tabularx}{\textwidth}{XX}
\hline
...
4
votes
1answer
261 views
Using tabularx in a custom environment - “misplaced \noalign”
Question
Currently, I'm trying to shorten the creation of small tabularx-tables with pre-defined headers, but somehow, trying to use the tabularx-environment, even though I used the \tabularx and ...
2
votes
0answers
113 views
Table does not fit [closed]
I created a table that does not fit the page. It's not because it's too big, it's because the table starts from the middle of the page when I export it to PDF. So even though I have half the page ...
6
votes
1answer
153 views
\hfill in in table cells
There are tables in my document. The baselines between the last row of each table and the following text is usually circa 16,25p (see below). Now I wanted to add right-aligned text to some selected ...
2
votes
1answer
223 views
How to reduce distance between two columns?
I have 5 columns in my table. So I want to reduce distance between two columns to make it look good. In the following figure, I want to reduce distance between column 1 and 2.
I tried ...
2
votes
1answer
133 views
How to get column alignment in tabularx?
When I put X in column specifier, how can I define column formatting? How can I get center alignment? Currently I am putting \centering, but that is not a proper solution.
This is my code:
...
1
vote
1answer
120 views
how to split the table heading in booktabs?
how to split the column headings? How do I get newline after some word? When I put \\, it changes the alignment badly.
This is my code:
\documentclass{article}
\usepackage{pgfplots}
...
3
votes
1answer
330 views
Expand table to use page width
I normally use the table and tabu environment to create my tables. I am new to LaTeX and after I while I realized tables look nicer when they use the whole page width rather than being just centered. ...
2
votes
2answers
85 views
Tabular unwanted padding
I want my document to be a really long (multiple page) list if definitions. I want to do it in a table format. Here is what I have at the moment:
\documentclass{article}
\usepackage{fancyhdr}
...
6
votes
3answers
179 views
Centering in tabularx and X columns
How can I center the column when using X in tabularx environment like in this example?
\begin{tabularx}{\textwidth}{@{}lXXXXX@{}}
1 & 2 & 3 & 4 & 5 \\
\end{tabularx}
1
vote
1answer
180 views
Visual editor for multi-column table layout [duplicate]
Possible Duplicate:
Comprehensive list of tools that simplify the generation of LaTeX tables
Is there a visual tool which can generate tex code for more complex tables as shown? The idea is ...
2
votes
2answers
294 views
Using tabularx, multirow, and parbox for line-wrapping
I am using a multirow inside a tabularx, but because the multirow doesn't wrap, I am putting the multirow's text inside a parbox environment:
\begin{tabularx}{\textwidth}{@{}XX@{}} \toprule
blah ...
2
votes
1answer
60 views
How do I typeset a table with a caption within a tabularx within another table with a caption?
Unfortunately, it keeps bugging me with forgotten \endgroup, float(s) lost, not in outer par mode and so on.
In other words, why can't I do something like this (the actual table is significantly more ...
7
votes
3answers
187 views
Is it possible to make an underfull tabulary spread out?
With this MWE
\documentclass{article}
\usepackage{tabulary}
\begin{document}
\hrule
\begin{center}
\begin{tabulary}{\textwidth}{|L|L|L|}
foo&bar&baz
\end{tabulary}
\end{center}
...
3
votes
2answers
131 views
How to align table properly using tabularx
\subsection{Computed Results}
To prove the accuracy of the implementation there was a need to show that the answers that the application provides are within an acceptable range for the results. For ...


