Code: Select all
pdflatex --output-directory /tmp test.tex
Code: Select all
pdflatex --output-directory /tmp test.tex
NEW: TikZ book now 40% off at Amazon.com for a short time.
Code: Select all
\documentclass[9pt]{article}
\usepackage{booktabs}
\usepackage{csvsimple}
\usepackage{longtable}
\usepackage{multirow}
\usepackage{microtype}
\usepackage{pdflscape}
\usepackage{array}
\usepackage[labelfont=bf,labelsep=period,font={small,sf,bf}]{caption}
\begin{document}
\begin{titlepage}
\centering
\includegraphics[width=0.6\textwidth]{logo}\par\vspace{1cm}
{\scshape\LARGE \textsf{TEST} \par}
\vspace{1cm}
{\scshape\LARGE \textsf{TESTING RESULT} \par}
\vspace{1.5cm}
{\scshape\LARGE \textsf{Version: \today}}
\end{titlepage}
\begin{longtable}{|p{3cm}|p{2.5cm}|c|c|}
\hline
\textbf{\textsf{column1}} & \textbf{\textsf{column2}} & \textbf{\textsf{column3}} & \textbf{\textsf{column4}} \\\hline
\endfirsthead
\hline
\textbf{\textsf{column1}} & \textbf{\textsf{column2}} & \textbf{\textsf{column3}} & \textbf{\textsf{column4}} \\\hline
\endfoot
\endlastfoot
\csvreader[
before reading={\catcode`\_=11},
after reading={\catcode`\_=8},
late after line=\\\hline
]{output.csv}{}{\csvlinetotablerow}
\end{longtable}
\end{document}
Code: Select all
\begin{longtable}{|p{3cm}|p{2.5cm}|c|c|}
Code: Select all
\textbf{\textsf{column1}} & \textbf{\textsf{column2}} & \textbf{\textsf{column3}} & \textbf{\textsf{column4}}
& \textbf{\textsf{column5}} & \textbf{\textsf{column6}} \\\hline
graphics
is loaded implicitly, but you are using the syntax of package graphicx
, so you should load it explicitly. Then you are using an external logo image, which we do not have. So the example is not working. Easiest solution for this issue could be to remove the titlepage
environment, because it should be irrelevant for your problem.output.csv
, which we do not have. So we cannot test your example, cannot see the problem and cannot help you. See also my signature for more information on how to make a minimal working example.article
does not know an option 9pt
only 10pt
(default), 11pt
, and 12pt
.I have attached the log file.Stefan Kottwitz wrote:Welcome to the forum!
Can you perhaps post the complete log file as an attachment here?
Stefan
NEW: TikZ book now 40% off at Amazon.com for a short time.