Thank you for the bug report. Our document specialist has constructed a slightly different patch. This has been incorporated into our official HTCondor source code. It will be in the 8.2.9 release which is expected at the end of the month.

...Tim

On 07/02/2015 08:34 AM, Martin Michlmayr wrote:
Package: condor
Version: 8.2.8~dfsg.1-1
Severity: serious
Tags: patch

condor fails to build because of the new tetex.

You're using the "H" float option.  According to
https://en.wikibooks.org/wiki/LaTeX/Floats,_Figures_and_Captions you
need \usepackage{float} for that, but it seems simpler solution is to
replace it with "!h" or "h".

I have attached one possible patch.

sbuild (Debian sbuild) 0.64.1 (13 Oct 2013) on m400-c2n1.hlinux.usa.hp.com
...
./misc/numbers.tex:18: LaTeX Error: Unknown float option `H'.
See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
  ...

l.18 \begin{table}[H]

Output written on ref.dvi (988 pages, 3400200 bytes).
Transcript written on ref.log.
Makefile:74: recipe for target 'ref.html' failed



_______________________________________________
htcondor-debian mailing list
htcondor-deb...@cs.wisc.edu
https://lists.cs.wisc.edu/mailman/listinfo/htcondor-debian

--
Tim Theisen
Release Manager
HTCondor & Open Science Grid
Center for High Throughput Computing
Department of Computer Sciences
University of Wisconsin - Madison
4261 Computer Sciences and Statistics
1210 W Dayton St
Madison, WI 53706-1685
+1 608 265 5736

diff --git a/doc/misc/numbers.tex b/doc/misc/numbers.tex
index 1d63c2e0fb56d489eda0b813889f8534b6aed963..722613b22f90d6a8cccb97220edf94acc88644fa 100644
--- a/doc/misc/numbers.tex
+++ b/doc/misc/numbers.tex
@@ -15,7 +15,7 @@ where the exit code is the value 100.
 Table~\ref{table:shadow-exit-codes} lists these codes.
 % shadow error codes
 \begin{center}
-\begin{table}[H]
+\begin{table}[ht]
 \caption{\label{table:shadow-exit-codes}\Condor{shadow} Exit Codes}
 \begin{tabular}{|c|l|l|} \hline
 \emph{Value} & \emph{Error Name} & \emph{Description} \\ \hline \hline
@@ -55,7 +55,7 @@ the first field within a job event log file.
 See more detailed descriptions of these values in
 section~\ref{sec:job-log-events}.
 \begin{center}
-\begin{table}[H]
+\begin{table}[ht]
 \caption{\label{table:user-log-event-codes}Event Codes in a Job Event Log}
 \begin{tabular}{|l|c|} \hline
 \emph{Event Code} & \emph{Description}   \\ \hline \hline
@@ -100,7 +100,7 @@ section~\ref{sec:job-log-events}.
 
 
 \begin{center}
-\begin{table}[H]
+\begin{table}[ht]
 \caption{\label{well-known-port-numbers}Well-Known Port Numbers}
 \begin{tabular}{|l|c|} \hline
 \emph{Server} & \emph{Port Number}   \\ \hline \hline
@@ -115,7 +115,7 @@ GT4 web services      &   8443  \\ \hline
 
 
 \begin{center}
-\begin{table}[H]
+\begin{table}[ht]
 \caption{\label{daemoncore-commands}DaemonCore Commands}
 \begin{tabular}{|l|c|} \hline
 \emph{Number} & \emph{Name}   \\ \hline \hline
@@ -144,7 +144,7 @@ GT4 web services      &   8443  \\ \hline
 
 
 \begin{center}
-\begin{table}[H]
+\begin{table}[ht]
 \caption{\label{daemon-exit-codes}DaemonCore Daemon Exit Codes}
 \begin{tabular}{|l|c|} \hline
 \emph{Exit Code} & \emph{Description}   \\ \hline \hline

Reply via email to