Tagged Questions
0
votes
0answers
28 views
How to pagebreak within listings? [duplicate]
I have a quite big txt file, and the problem is, if I include it with listings, latex tries to put it on one page, but it is too big for one page. So a part is missing. I am wondering, if Latex could ...
2
votes
1answer
87 views
Horizontal dashed line on page break in listings environment
Well, the title says it all. I have code scripts that span over multiple pages. Is it possible to display a dashed line at the bottom and/or top of the page in which the listings environment ...
1
vote
0answers
14 views
Minted in listing: break code across pages? [duplicate]
I'm using minted to highlight code. And I put that into listings -- in order to get those numbered. By it self minted breaks code across pages. But when I put it into listings -- I get code on a ...
2
votes
2answers
68 views
How to prevent a listing from straddling two pages
If I have a small listing that happens to be at the end of a page,
how can I force LaTeX to place it on a new page so that it does not straddle two pages, which looks ugly for a small listing.
0
votes
1answer
58 views
Avoid page break in listing [duplicate]
Possible Duplicate:
How can I ensure that a listing is not going to be split?
My listing goes at the bottom of a page and fits good. But the header is separated and moved to another page. ...
3
votes
0answers
69 views
place symbol or some command on page break within lstlisting
Whenever I have a page break splitting my lstlisting on different pages, I would like to have a symbol or generally spoken some command inserted automatically. I can accomplish that manually by using ...
4
votes
0answers
143 views
Stop listings going over page breaks
I am using Pandoc to generate Tex from Markdown. It automatically generates listings when it comes across the appropriate Markdown (code indented four spaces). It then uses the listings package to ...
1
vote
1answer
77 views
empty page afterpage listings
I get an emptypage on multi page listings if I use listings with afterpage.
\documentclass{scrartcl}
\usepackage{listings}
\usepackage{afterpage}
\begin{document}
\afterpage{%
%some fancy stuff
}
...
8
votes
2answers
115 views
How to show a hint when lstlisting is breaking page?
I use inline lstlisting-blocks with caption.
I have several listings that are running over more than one page or starting at the end of a page.
Now I want to place a hint for the readers, that the ...
2
votes
1answer
121 views
How can I create a lstlisting environment that spans more than one page?
I am using listings package to show some algorithms in a LaTeX document.
One of the algorithms I want to include is longer than one page. So, my question is:
How can I create a lstlisting ...
2
votes
1answer
272 views
Avoid page breaks in \lstlistings
I'm trying to avoid page breaks in my lstlisting (seen in section 0.0.2) I know I can remedy this by floating my lstlisting, but it adds some unwanted white space (seen in section 0.0.1).
Is ...
3
votes
2answers
256 views
Inserting Code in multiple pages as an appendix
I am trying to insert a script (bash shell code) to the appendix of my document. I am trying to import the script from separate file. The script file name is Event_Db_BckUp_Script.als. The problem is ...
1
vote
0answers
142 views
Page break before caption in lstlisting [closed]
I have the following settings for a lstlisting:
\lstset{
language=XML,
numbers=left,
numberstyle=\tiny\color{gray},
stepnumber=1,
numbersep=5pt, ...
3
votes
1answer
113 views
keep listing's caption together with listing
I'm using the tips found in here to show a code listing with a caption. Sometimes the caption is put at the end of the page and the listing on the next page. How can I keep them together?
5
votes
1answer
112 views
How to keep last n lines together in listing?
I have a large listing defined with lstlisting (listins-package). Now the listing reaches over three pages. On the last page there is only one line (the last line) of the listing.
I looks not very ...
2
votes
0answers
99 views
Headers and footers for listing environment?
What I need to be able to do is apply a header and footer when I use the listings environment. I have a few requirements:
The header and footer should be outside the listing itself, i.e. they are ...
0
votes
1answer
167 views
\afterpage issue with \lstlisting
I have issue with \afterpage command and \lstlisting, it's add one blank page after beginning code listing, and after blank page is two of my command.
\appendix
\section*{APPENDIX A}
...
6
votes
1answer
245 views
How can I prevent lstlisting with shadowbox-style to be split?
I have my listings styled with frame=shadowbox. In some cases the lower or upper border of a listing appears on the previous or next page (see screenshot). I do not wrap the listing in a minipage ...
1
vote
1answer
534 views
Frame on lstlisting opened on the bottom when code longer than one page
In my \lstset I have:
\lstset{
language=Java, % the language of the code
basicstyle=\sffamily\large, % the size of the fonts that are used for the code
%numbers=left, ...
4
votes
2answers
2k views
\lstinputlisting will not continue to next page
So I have this LaTeX snippet:
\section{Appendix}
\listoffigures
...
\begin{center}
\begin{figure}
\caption{MacroCell with 8 AND Gate Arrays}
...
3
votes
2answers
1k views
How to prevent a \lstinputlisting being split across pages?
This question shows how to prevent a long listing from being split across several pages when the code is written directly into the tex file. I want to achieve the same effect when including code in ...
0
votes
1answer
308 views
Enlarge list of listings
I'm using
\cleardoublepage
\renewcommand{\lstlistlistingname}{Quellcodeverzeichnis}
\enlargethispage{\baselineskip} %EITHER
\lstlistoflistings
\enlargethispage{\baselineskip} %OR THIS
...
7
votes
1answer
256 views
Get List of Listings in an Appendix
I am using LyX with the listings package. I want to have Appendix A be titled "Code Listings" and then have the List of Listings.
Right now I have \lstlistoflistings in an ERT.
By using ...
4
votes
1answer
527 views
How do I prevent LaTeX from putting \sections at the very end of the page?
Please take a look at the screenshot below. I am having a problem where LaTeX would put the \section at the very end of the page. So far I fixed it by using \newpage but I just learned that it was ...
6
votes
1answer
1k views
How can I ensure that a listing is not going to be split?
How can I ensure that a listing is not going to be split? If it is going to be split I want that the entire listing to move to the following page, effectively moving everything at pass. I mean any ...
2
votes
1answer
863 views
LyX: listings over multiple pages
I am trying to use LyX to insert child document-listing-program. The program imports OK but it is too long to fit on a single page. At the bottom of the page it outputs over the margin, sometimes ...
2
votes
1answer
388 views
Multipages side by side listings
Could you tell me what should I do to be able to insert multipages, side by side listings in Latex document?
I have already tried with \begin{minipage}, but it doesn't work with multipages.
EDIT:
...
21
votes
4answers
10k views
How to prevent lstlisting from splitting code between pages?
Is it possible to prevent lstlisting from splitting a code between pages if it does not fit on one page? Instead splitting I would like to have the code on the next page.
I tried to put all ...
5
votes
2answers
2k views
Listing over two columns - how to page break?
I have a two column article:
\documentclass[a4paper, twocolumn]{article}
Inside this is a bigger lstlisting which has a float=* to merge the two columns.
However this listing needs a page break. ...
10
votes
1answer
2k views
Splitting a float with code listings
Using the floats and listings packages, I have defined a float for code listings and a shortcut for using it as follows:
\usepackage{floats}
\usepackage{listings}
...
