Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

35
votes
3answers
18k views

Make code in LaTeX look *nice*

I'm currently writing a project report, and to explain the slightly crazy un-intuitive code that I've used I need to put lots and lots of short excerpts of example code in. How I can get code into ...
13
votes
4answers
4k views

TV guide listing API

does anybody know a provider offering TV listings (through API or download) for all channel and cable providers? or is there any independent company collecting/providing such data? an API/REST/SOAP ...
11
votes
9answers
10k views

Listings in Latex with UTF-8 (or at least german umlauts)

Trying to include a source-file into my latex document using the listings package, i got problems with german umlauts inside of the comments in the code. Using \lstset{ extendedchars=\true, ...
8
votes
1answer
2k views

How to change title in listings?

I have a question about --listings-- package. Do you know how to change it to get sth like this "Algorithm " rather than casual "Listing " in the title line? Thanks for reply
8
votes
1answer
2k views

Math symbols in listings

I have a problem with LaTeX – I don't know how to put mathematical equations and symbols in listings. I use the listings package and it's offers great looking listings, but it doesn't allow math ...
7
votes
1answer
1k views

Using special characters as keywords in latex listings package

I am using the listings package for latex. I am using the SQL language definition and am adding some new keywords that I need, using morekeywords=. I have trouble defining some special characters as ...
7
votes
3answers
5k views

Highlighting a Chunk of Code within a lstlisting

I have a bunch of code in a lstlisting environment. How can I highlight (color background) just a particular chunk of code within the environment?
6
votes
1answer
213 views

List of hackathons

Since I cannot find my answer in the almighty Google I decided to try Stackoverflow. I would like to know if there is such a thing as a list of hackathons or projects supporting them. The wikipedia ...
5
votes
2answers
619 views

Stripes in background color drawn by listings package

I'm trying to create a verbatim environment with a colored background and which can span across pages (so using a colorbox is not an option). It seemed that the listings package was a good way towards ...
5
votes
1answer
2k views

Use LaTeX Listings to correctly detect and syntax highlight embedded code of a different language in a script

I have scripts that have one-liners or sort scripts from other languages within them. How can I have LaTeX listings detect this and change the syntax formating language within the script? This would ...
5
votes
2answers
2k views

LaTex, Problem with Beamer and Listings

I'm trying to add some code in a presentation made with LaTex. I used beamer, added some frames without problems but once I add the listing, I can't compile the presentation anymore. ...
5
votes
2answers
2k views

Formatting Objective C code using listing in LaTeX

I am wondering how one is supposed to format Objective C code using the listings package of LaTeX? I know that the language supports C (Objective) , so how do i set this in the \lstset language ...
5
votes
2answers
2k views

LaTeX: Line breaking of long lines, how to mark these?

I have a Latex code similar to the following: \usepackage{listings} \lstset{ breaklines = true, numbers = left, stepnumber = 5, } \begin{lstlisting} for (int i = 0, j = 0, ...
4
votes
2answers
1k views

Font for programming source code with LaTeX

Listing style is normally used for source code listing, but to me the default font used is not so pretty for source code listing. Attached is a comparison between listing and verbatim. How can I ...
4
votes
2answers
2k views

Center Latex lstlisting

This is driving me crazy. I want to center a lstlisting in LaTeX. After 3 hours attempting here's some code: \lstset{ % caption=Descriptive Caption Text, label=lst:descr_capti_text, ...
4
votes
2answers
2k views

Latex Listing: Define Font

How do I define a font to a listing? I would like one font on the line numbers (Sans 6pt) and another (Monospace (8pt) on the code.
3
votes
2answers
285 views

How can I provide directory listings for those viewing my Amazon S3 based static website?

I have an Amazon S3 account where I would like to store several directories of files. I would like a visitor to this site to be able to see and download the files and folders I have placed there. ...
3
votes
2answers
330 views

LaTeX listings package: copy-pastable listings

Writing some docs with code snippets which I want to be copyable to run as written. These snippets may include lines with preceding spaces. The listings package formats the text fine, but the spaces ...
3
votes
1answer
348 views

How to create a white-on-black style for LaTeX listings

I've been looking at Philip Bunge's post on how to create a "Tango" style with LaTeX listings, and trying to adapt this to make the default text style white and the background black (this is for ...
3
votes
1answer
1k views

Latex: Make \listoffigures look like \listoftables or \lstlistoflistings

I've got a list of listings at the end of my document following my list of tables and my list of figures. The thing that is really annoying me is that they look the same except the list of listings ...
3
votes
1answer
2k views

Change “List of Listings” text

I tried to change the "List of Listings" text with the command \renewcommand*{\lstlistlistingname}{List of XYZ} before my \begin{document}. What's wrong with this? By the way ...
3
votes
2answers
534 views

Latex listings package ignores last blank line in listing

Hi: I use LaTeX listing package with \lstinputlisting to display text from an external file. The file contains a data format description with a blank line at the end. The package ignores the blank ...
3
votes
4answers
3k views

Latex: How to make listings subfloats use listing counters, TOC, etc

I have a macro that do side-by-side figures, below. It uses subfloats, and so it goes in a figure. \newcommand{\listbylist}[6][showlines=true]{ \begin{figure} \subfloat[ ]{ ...
2
votes
1answer
203 views

Non-continuous line numbering with Sweave and listings

I'm writing a report in LaTeX, embedding several R scripts, which are reported in non-contiguous Sweave chunks. I found some pretty useful comments on Stackoverflow on how to customize Sweave and the ...
2
votes
3answers
532 views

Latex listings strings and keywords

Hallo all, I'm working on a latex document and I pull some code in with the listings package. I found some great stuff here on stackoverflow and i look really cool but there are two things I want but ...
2
votes
1answer
420 views

LaTeX listings: different counters for different listing environments

How do I create two lstlisting environments that each have its own counter? If I use for example \lstnewenvironment{algorithm}[2]{ \renewcommand\lstlistingname{Algorithm} \lstset{ ... } } ...
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
375 views

linenumbering with listings package in latex

I am trying to insert a code snippet with the listingspackage, and want the lines numbered. However I would like only every 5th line and the first to be numbered (numbers beeing(1,5,10,15,...)) ...
2
votes
1answer
712 views

Latex listings-package format option for uppercase keywords

I use the listings package to insert source code. I would like to print all keywords uppercase in the output, regardless of the case in the input. The manual states that ...
1
vote
1answer
372 views

Latex - lstinline

I want to include a short code snippet using the listings package. I have already chosen the parameters for \lstset and my C++ code looks nice with these setttings. For an inline code snippet I try ...
1
vote
1answer
391 views

No Line Spacing at Latex Code Listing

I use 'listings' and 'setspace' package for my latex document. And I have to use the \doublespacing for my document. The trouble is that the code listings seem to be affected by the \doublespacing ...
1
vote
1answer
531 views

how can i force listings line numbers in latex

that is what i want. 15 <servlet> 16 <servlet-name>udpListener</servlet-name> 17 <servlet-class>oli.servlet.UdpServlet</servlet-class> 18 <!-- UDP Port fuer ...
1
vote
1answer
535 views

LaTeX - Listings - Code Indention

so I'm working on some kind of homework paper about git and I want to insert some console output examples. I'm working with TextMate. I have my LaTeX code indented like every other normal source code, ...
1
vote
5answers
578 views

Obtaining TV Listing / Guide Data

Does anyone know how to programmatically obtain TV listings for a particular time zone? Is there a service I can subscribe to? Thanks.
1
vote
2answers
531 views

LaTeX listings package: different style for constants/classes/variables

I'm using the listings package for syntax highlighting, set up with the following arguments: \lstset{ language=Java, captionpos=b, tabsize=3, frame=lines, numbers=left, numberstyle=\tiny, ...
1
vote
1answer
828 views

LaTeX, Two columns, Listings and Numbers

I'm trying to get a report done and I have a small problem with the twocolums and the line numbering in listings. The document is on two columns : ...
1
vote
1answer
421 views

Supress title of listings created with the LaTeX listings package

I'm using LaTeX in conjunction with the listings package and I'm trying to suppress the title of a listing such that it is neither viewed below the actual listing nor in the list of listings. Setting ...
1
vote
2answers
751 views

Latex: center text within listing

How do I center text within a listing in Latex? Or another way not using listing. (Need a box with monospace font)
1
vote
1answer
637 views

How do I emphasize parts of an lstlisting?

How can I set certain parts of an lstlisting in boldface? \begin{lstlisting}[escapechar=@] fun(foo, bar, @\textbf{baz}@ ); \end{lstlisting} This compiles, but baz isn't set in boldface :( What am I ...
1
vote
3answers
709 views

Latex: reset font style

Is there a way I can reset the style of a certain character sequence? I'm using the listings package to display source code and the prebreak property to display a escape character \ to indicate that ...
1
vote
4answers
289 views

<UL> <LI> tag issue in firefox

When I am aligning items vertically using <ul> & <li> tag, the following issue occurs My code is as follows : < ul> < li> yahoo < /li> < li> google < ...
1
vote
2answers
2k views

Formatting source listings with listings & framed packages

I currently have a problem, that listings package cannot spread source files across multiple pages. In the doc is written, that the "framed" package should be used for various formatting option. ...
1
vote
2answers
276 views

Listing all SVN repositories

In subversion is there a command to list all the available repositories registered on a particular host? For eg., In clearcase, a "cleartool lsvob" would give me the listing of all the versioned ...
1
vote
1answer
867 views

verb/lstinline text flows out of the line margins without line break in Latex

The listings package supports line breaks inside lstlisting environment. But it doesn't produce automatic line breaks for lstinline environment. For example, in the following paragraph the first line ...
1
vote
4answers
990 views

How to list variables declared in script in bash?

In my script in bash, there are lot of variables, and I have to make something to save them to file. My question is how to list all variables declared in my script and get list like this: ...
1
vote
2answers
327 views

Getting a full list of the URLS in a rails application

How do I get a a complete list of all the urls that my rails application could generate? I don't want the routes that I get get form rake routes, instead I want to get the actul URLs corrosponding ...
0
votes
3answers
62 views

Listing directories in c++ under windows

I want to list all files of the current directory, so I have this code : int WLoader::listdir(void) { WIN32_FIND_DATA data; std::wstring path(L"*"); std::wstring *name; HANDLE hFile = ...
0
votes
0answers
12 views

can you tell me the dalaying-response on a new published PHP WebApp on IIS?

i just published a php webApp on IIS,and my Chrome and IE8 can response a welcome-page soon,but my Firefox just return a "Directory Listing Denied This Virtual Directory does not allow contents to be ...
0
votes
0answers
12 views

Source for TV Listings inIndia?

I need a source that gives me a nice XML response with info about TV shows that are aired in india, i could scrape data but if i think there should be some source out there that will help me get my ...
0
votes
0answers
92 views

Syntax highlighting for numbers in LaTeX listings [closed]

I would like to define a language for lstlistings using \lstdefinelanguage that colors all numbers (e.g., 1, 0.123, 1e5, -12.01) that appear in the code in a particular color. Is this possible? Are ...

1 2