Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
5k views

Latex: How to code tables with multi-line cells

I am trying to write a short paper with with LaTeX and need to add a table with 3 columns. +-------------+-----------------+--------------------------------------+ | AAAAAAAAAA | BBBBBBBBBBBBBBB | ...
5
votes
1answer
2k views

Latex: how to break the line in multirow inside the tabular

I cannot find out how to break the line inside the multirow in tabular. I need to make some table where I have one cell which is two row high, and I have long text in it, but it does not break the ...
5
votes
2answers
2k views

Centering Text Horizontally and Vertically in LaTeX

I would like to produce the following: a b xxxxx xxxxx 1 xxxxx xxxxx xxxxx xxxxx xxxxx xxxxx 2 xxxxx xxxxx xxxxx xxxxx Where the blocks of 'x's are ...
5
votes
5answers
2k views

Getting two tables in LaTeX to have the same (right-aligned) column width

I have two very short and consecutive sections (for a CV), each containing a small table: \section{Work Experience} \begin{tabular}{r|p{11cm}} Current & Your job at Your Company, Town \\ Jan ...
4
votes
2answers
141 views

How can I select multiple lines that are not in a continuous chunk?

I am trying to select multiple lines that are not in a continuous chunk. E.g., I want to select line 1 and 3 simultaneously without selecting line 2: 1. this is line 1 2. this is line 2 3. this ...
3
votes
4answers
73 views

Standard (or convenient) method to read and write tabular data to a text file in c

This might sound rather awkward, but I want to ask if there is a commonly practiced way of storing tabular data in a text file to be read and written in C. Like in python you can load a full text ...
3
votes
2answers
160 views

vim Tabularize: how to ignore lines containing curly braces

Consider the Tabularize vim plugin for aligning properties of CSS rules. e.g. body { margin: 0; padding: 0; font-family: arial, verdana; } In vim with the cursor inside the rule vi{ :Tab ...
3
votes
1answer
143 views

Dynamic List Selection within another Dynamic in Mathematica

Building up on the solution proposed by Belisarius in "Manipulate custom Tabular". Consider the following Function to create custom Tabular representation : DataSampleXX[data_, linesNumber_, ...
3
votes
5answers
211 views

need a python based solution for web based display of tabular data

I need to make a tabular data structure (tab delimited text file) available for viewing as a web based solution. I am a bioinformatics programmer with almost no experience in web based development. I ...
3
votes
1answer
8k views

Advanced table in LaTeX with multiline cells

I'm trying to achieve something like this in LaTeX: http://www.imada.sdu.dk/~sorenh07/misc/table-sample.pdf (sample made in OpenOffice.org) The most important part is the multiline ...
2
votes
3answers
42 views

Is it possible for JTextPane to have columns and rows?

I have JTextPane from Netbeans designer's section. I want to add columns and rows on it. However, there is no option for adding columns or row in the property window of JTextPane. Is there another way ...
2
votes
4answers
100 views

Border-styles on CSS table-like matrix, without extra classes

I'm making a table-like layout using only CSS. With all the cells set to float:left the container .matrix is wide enough for 4 cells horizontally. <div class="matrix"> <!-- first row ...
2
votes
7answers
101 views

To use CSV or XML for data imports?

I'm writing a script were I want to be able to import data into a database table. The table is either mysql, SQLite 3, or PostgreSQL. Hypothetically, it could be a lot of data (the data is ...
2
votes
1answer
59 views

tableless CSS problem

In general I know how to use css but not advanced css So I need some help in order to start. Unfortunately I can't find any good and decent guide for tables without css and the part I want to do is ...
2
votes
3answers
319 views

How do I align like this with VIM's Tabular Plugin?

This is my code: john,betty,wally,beth walter,george,thomas,john herbert,bob,petty,mick` Does anyone know how to align it to this with VIM's Tabular Plugin: john, betty, wally, beth walter, ...
2
votes
3answers
279 views

How to find the 3rd occurrence of a pattern on a line

Today I had to align a table at only the first multiple spaces on a line. p.e. <ScrollWheelDown> move window three lines down <S-ScrollWheelDown> move window one ...
2
votes
2answers
708 views

table, tabular, tabularx vertical alingment, latex

Ok, this sounds so easy, but I've spent hours googling and I just cant find a solution, that isn't to complicated. I want to create a table that has images and text in it. I want every row of the ...
2
votes
1answer
191 views

How to display my table “outside” an itemize structure so it will be centered in the page?

I have a document with an itemize structure and some table to display inside it. It have 3 subitem and the table is in the third one. Here is an example: \documentclass{article}% ...
2
votes
3answers
143 views

What's a good java library for graphing tabular data?

i have some tab-delimiter data in csv file, and i want to graph these data, and overlap the graph if possible. i'm currently doing this using excel, which is kinda slow when i have many graphs to ...
2
votes
1answer
292 views

LaTeX: vertical alignement in a table containing a listing

In LaTeX, I'm using the listings package to display some code snippet inside a table. But it seems that when using this package, the vertical alignement of the cells is changing. Here is some code : ...
2
votes
1answer
2k views

How do I make multi-page landscape tables in LaTeX

The title is pretty much the extent of my question. I am trying to insert a large table into a document using the xtabular environment. If I wrap the xtabular environment in a landscape environment, ...
1
vote
2answers
38 views

Vim, Tabular and Ruby 1.9 Hashes

Assuming I have the following options Hash as an argument to a method in Ruby 1.9.x: my_method :arg1, some_option: "value 1" some_other_option:true option_three: 123 Using the Tabular VIM ...
1
vote
1answer
66 views

Right align a specific column separated by spaces

Example: Monte Bianco 4.807 France/Italy Monte Rosa 4.634 Italy/Switzerland Dom 4.545 Switzerland/Italy Weisshorn 4.505 Switzerland Cervino (Matterhorn) 4.478 Italy/Switzerland Suphan Dagi 4.434 ...
1
vote
1answer
145 views

Using parindent within the longtable environment

Here is a simple test case of the problem I'm having: \documentclass{article} \usepackage{longtable} \begin{document} \begin{longtable}{p{2in}|p{5in}} foo & \parindent=1in bar \\ ...
1
vote
1answer
106 views

Vim: Receive char on function to tabularize

I learned that using this: let mapleader=',' if exists(":Tabularize") nmap <Leader>a= :Tabularize /=<CR> vmap <Leader>a= :Tabularize /=<CR> endif would give me a ...
1
vote
1answer
377 views

vim tabular plugin question

Before @stallone = Factory :user, :name => 'Sylvester', :age => 64 @schwarzenegger = Factory :user, :name => 'Arnold', :age => 63 Some magic... After @stallone = Factory :user, ...
1
vote
1answer
642 views

How do you vertically center text with an image in a latex table?

I want to align text with the center of a large image in latex. Unfortunately, the text some text is aligned with the bottom of the image: \begin{tabular}{cc} some text & ...
1
vote
1answer
287 views

Latex: tabular* with rubber spacing and cline

I'm using a tabular* with rubber spacing to fill the complete width of the page. This works fine, except that when I use cline, the line is not complete. It seems that cline does not cover the ...
1
vote
2answers
232 views

Vim: Align second set of opening quotes using Tabular

I've been using the excellent Tabular plugin in Vim to align things, but there's an alignment I want to do pretty commonly that I can't figure out the right regex for. I want this gem 'fakeweb' gem ...
1
vote
2answers
2k views

LaTeX: remove left margin of listing inside a table

Using LaTeX, I need to show some code snippet inside a table. Here is an example of what I'm trying to do: \begin{document} Par exemple : \begin{center} \begin{tabular}{lp{5cm}l} \hline Méthode ...
1
vote
1answer
5k views

LaTeX table too wide. How to make it fit?

I just started to learn latex and now I'm trying to create a table. This is my code: \begin{table} \caption{Top Scorers} \begin{tabular}{ l l } \hline \bf Goals & \bf Players\\ \hline ...
1
vote
3answers
263 views

How to align times by their colon in a LaTeX-tabular?

I have a tabular of the times I in LaTeX. These times are in the form 4:00 or 12:00 and this have different lengths. I would like to vertically align these times by their colon. Is there a nice way ...
1
vote
2answers
699 views

Escaping _ efficiently in Tabular environment, LaTeX

How can you escape underscores only in the tabular environment without the use of \_? This thread discusses about underscore in general. I cannot use the environment verbatim nor the package ...
0
votes
1answer
62 views

A DSL in Python for tabular analysis and processing?

I am carrying around the idea to create a restricted form of a language for tabular analysis. Thequestion is if there is something like the following already around or if there are better ideas todo ...
0
votes
1answer
142 views

Get Value input multi rows Yii

How do I pass a form value to the controller, actionCreate function () specifically. Exemplifying. I have the following code in the form: <tbody class="templateTarget"> <php foreach ...
0
votes
0answers
42 views

ztabularinputmanager yii problems

I'm new to the Yii framework. I am developing an Yii application and am having trouble inserting multiple rows in the same form, I have tried to solve my problem by following this documentation ...
0
votes
1answer
106 views

C# PrintPreviewDialog Document set to a TabularReport, but nothing shown

I have a Form with a PrintPreviewDialog and a TabularReport. I also have a DataGridView. I fill a DataView object from my DataBase. Nevermind now how, but it works. When I use my DataView on the ...
0
votes
3answers
430 views

FastReport - How to displaying data in the form of table?

How can i display data in the form of table in the FastReport ? Edit I mean ,I want to create a report like this : (with tabular format).
0
votes
0answers
70 views

Software to manipulate large data set, textual tabular data

I want to manipulate large a data sets consisting of ngrams (words) and their count The file is very simple but rather big (100M rows) I am looking for a software tool that would let me do very basic ...
0
votes
1answer
96 views

Aligning text on non-consecutive lines with Vim tabular plugin

I'd like to align these lines of code: let cty = -- trace ("new var " ++ (show vname) ++ " " ++ (show exp1)) synthTy ctx vtype newctx = ...
0
votes
2answers
347 views

Android tabluar data from database

I want to show all the data from the database in a View. addview to the layout is a good idea. But as I don't know the no. of data, I cann't create required no. of textview, and i cann't add a single ...
0
votes
1answer
71 views

Exporting tabular data in Numbers-readable format

I have app that exports data in CSV. Recently I added "Open In..." feature for opening .csv files in other apps. I would like to be able to have Numbers (on iPad) open exported files as well. ...
0
votes
1answer
673 views

LaTeX: How to wrap a sideways text in a column (tabular)

Let's say we have a table \begin{tabular}{|c|c|} \begin{sideways}A\end{sideways}&\begin{sideways}B\end{sideways}\\ a & b \\ \end{tabular} How can I define the height of cells A and B, so ...
0
votes
1answer
235 views

Latex: How to cells in tables which wrap, but can still be copied as a single line

I am trying to create a table over inputs to a tool which requires the entire input to be on a single line. My question is similar to Latex: How to code tables with multi-line cells in that I want ...
0
votes
1answer
270 views

Showing partial tabular inline models in Django

Let's see if I can explain myself, I have this models: class BillHeader(models.Model): number = models.CharField(_('Bill number'), max_length=10, unique=True, \ default=__number) client = ...
0
votes
1answer
368 views

HTML+CSS: combining <UL>/<OL> and faux-tabular format

I have a hierarchical table I want to display in HTML. The <ul> and <ol> tags work great for the hierarchical part of things, but I want to have 2 or 3 columns total where the leftmost ...
0
votes
2answers
502 views

Using semantic MediaWiki for tabular data

Am I completely off-track to think about using Semantic MediaWiki to store (and organise, report on, etc.) 'tabular' data such as financial transactions or weather readings that would usually live in ...
0
votes
2answers
873 views

ms Access form subform sort

I have a form where I specify information that is used by a subform in tabular view. The subform then displays entries for the item specified in the main form. Each entry has a date associated with ...
0
votes
4answers
561 views

Align a HTML table Cell to a column

I would like to align a table cell to a column where it belongs: _________________________________________ | | First Place | Second Place | | | | | ...
0
votes
1answer
864 views

UserProfile StackedInLine/TabularInLine redesigned

Hello everyone and thanks for reading. I have a simple problem that I want to get rid of and I have not seen examples where this is achieved yet although searching around the net for quite a while. ...

1 2