Tagged Questions
1
vote
3answers
64 views
Itemize inside longtable
I have the following (Non-working) example.
\renewcommand*{\arraystretch}{1.8}
\begin{longtable}{lcl}
\caption{Summary of proven determinants for falling}\\ \toprule
...
3
votes
1answer
70 views
Tabular and itemize
I'm having a big problem...I am trying to make a nice table which in the left side has just text and in the right part it may contain some itemized elements. This is how i'm doing it:
...
3
votes
2answers
37 views
Test for empty possibly itemized argument in tabu
For some reason, I can't test if #2 is empty in the following tabu use case. An
Incomplete \ifx; all text was ignored after line 14
is thrown executing the following code.
...
3
votes
1answer
282 views
“Extra }, or forgotten \endgroup” error
\documentclass[a4paper,12pt]{article}
\usepackage[dutch]{babel} % Quotes won't work without babel
\usepackage[utf8]{inputenc} % This is very important!
\usepackage[T1]{fontenc}
\usepackage{graphicx}
...
6
votes
3answers
207 views
How can I mix itemize and tabular environments?
I have the following list:
\begin{itemize}
\item És associativa:$\qquad(x+y)+z=x+(y+z)$
\item És commutativa:$\qquad x+y=y+x$
\item Té element neutre:$\qquad\exists 0\in\K : 0+x=x+0=x$
...
6
votes
1answer
326 views
Spacing after itemize inside a tabular
I have a problem with the spacing after an itemize inside a tabular.
\documentclass[12pt]{article}
\usepackage{lipsum}
\usepackage[usenames,dvipsnames]{xcolor}
\usepackage{framed}
...
4
votes
2answers
199 views
How manually mimic the bullet in the itemize environment?
I have created the following tabularx environment (using the package tabularx, of course) to serve as a specialized bulleted list for a resume.
\begin{tabularx}{\textwidth}{r \p{3in} X r}
...
2
votes
3answers
172 views
How to create columns within an itemize environment?
I want to generate a list of the following syntax for a resume.
* <Description of Activity> <empty space> <right aligned date>
Currently I have been using a form such as
...
2
votes
1answer
1k views
Remove top and bottom margin in tabular (around lists)
If I create a table with several (short) lists, currently I'm using a table construction with enumitem to (almost) remove the left margin. Now I still have a rather large margin at the top and the ...
3
votes
1answer
240 views
Altering the position of bullet given by \item
I am working on my resume and for that I am using one of the following construct:
\documentclass[letterpaper,9pt]{article}
\newlength{\outerbordwidth}
\usepackage[empty]{fullpage}
\usepackage{color}
...
1
vote
0answers
66 views
Issue with itemize inside a tabular [duplicate]
Possible Duplicate:
Enumerate/itemize without margins in table cell best practice
I'm new to LaTeX. I'm trying to create a tabular and I'm facing the following small issue.
I have one ...
5
votes
4answers
374 views
A list inside a table
I'm using this simple code to align date ranges on a CV:
\section{I'm pretty cool}\begin{tabular}{l l}
2009--present & company 1 \\
2011--2012 & company 2
\end{tabular}
Now this looks like ...
2
votes
1answer
4k views
itemize in a tabular environment
When compiling this:
\begin{table*}[h]
\begin{tabular}{|lll|}
\hline \bfseries Name & \bfseries Opt 1 & \bfseries Opt 2 \\\hline
\hline \bfseries Item 1 & X & ...
6
votes
4answers
456 views
Problem with itemize and ifthenelse in a tabular environment
I want to fill a cells of a table with only a \item command, and the \begin{itemize} should be automatically inserted.
The following code works :
\newenvironment{matable}[0]{%
...
2
votes
1answer
591 views
How do I indent a table within the itemize environment?
I'd like to know how to indent a table within the itemize environment.
\documentclass{article}
\begin{document}
Hello. I love \LaTeX! I have a question:
\begin{itemize}
\item
How can I ...
0
votes
1answer
293 views
itemize within tables is no longer working
I'm new to this forum (and relative new to LaTeX).
After upgrading MiKTeX to the latest version yesterday evening I'm
unable to compile a document containing an \begin{itemize} ... \end{itemize} ...
6
votes
2answers
2k views
Spacing issues with itemize in a table
I've been trying to use lists of items in a table. This was easy to do but I could not find a way to align them in the same way as plain text in a table. Let me give an example:
...
11
votes
1answer
2k views
Preventing itemize environment to insert initial vertical space
I'm using itemize and tables like the following
\begin{tabularx}{\textwidth}{>{\ttfamily}llX}
\toprule
\textbf{\rmfamily Operator} & \textbf{Typen} & \textbf{Regel} \\
\midrule
= & ...
6
votes
4answers
938 views
Lists in Tabular Environment
So I'm writing up a CV and I would like to use the nifty itemize environment to list some things within a tabular environment. Unfortunately, things end up looking a bit
this, which isn't at all ...