Tagged Questions
2
votes
1answer
109 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 ...
4
votes
1answer
221 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 ...
0
votes
1answer
66 views
Creating custom tabularx
I am trying to create a new environment in order to change the layout for tabularx, since the original is not looking like it should. I want the picture to be on the right side wrapped by the text. My ...
2
votes
0answers
22 views
How can I create a wrapper environment for a complicated usage of tabularx? [duplicate]
Possible Duplicate:
tabularx inside a \newenvironment
I know (at least basically) how to create my own environments using \newenvironment, but I recently encountered a problem trying to ...
7
votes
2answers
735 views
How to include tabularx/y in a new environment?
I am looking for a way to define a customizable environment for tables in my latex documents. This means:
caption and label
width of table
customized column format (tabular preamble)
While this ...
3
votes
1answer
457 views
Create environment inside another environment?
Why can't I define an environment, that encloses another tabularx environment inside it?
For example, why can't I do this:
\newenvironment{customTabular}{
% This is the begin code
...
1
vote
1answer
857 views
bottomrule not working in a self-made environment
I have this environment for consistent tables in my LaTeX documents:
\newenvironment{defaultTable}[2] {
\@float{table}[h]
\noindent
\tabularx{\textwidth}{#1}
\specialrule{0.5pt}{10pt}{0pt}
...
5
votes
2answers
1k views
tabularx inside a \newenvironment
There's something wrong with this code:
\newenvironment{Tbl}
{\begin{tabularx}{\textwidth}{|l|X|} \hline}
{\end{tabularx}}
but this is fine:
\newenvironment{Tbl}
{\begin{tabular}{|l|l|} \hline}
...