von martinli » Mo 29. Jul 2013, 14:50
Ob es etwas mit dem Csvreader zu tun hat weiß ich leider nicht.
Hier das Minimalbeispiel:
\documentclass[12pt,oneside,a4paper]{scrartcl}
\usepackage{textcomp} %Sonderzeichen
%% CSV SIMPLE für Tabellen aus CSV
\usepackage{csvsimple}
\usepackage{pdflscape}%Für querformatige Seiten
\begin{filecontents*}{ra-test.csv}
Activity,Hazard,Consequence,Type,la,ca,rra,tb,lb,cb,rrb,tc,lc,cc,rrc,date
Activity,Hazard,\begin{itemize}
\item Test1
\item Test2
\item Test3
\end{itemize},Type,la,ca,rra,tb,lb,cb,rrb,tc,lc,cc,rrc,date
\end{filecontents*}
\begin{document}
\begin{landscape}
\tiny% Das ist eine Anweisung!
\begin{table}
\centering
\begin{tabular}{|l|l|p|l|l|l|l|l|l|l|l|l|l|l|l|l|l|}
\hline
\csvreader[late after line=\\\hline]%
{ra-test.csv}{Activity=\activity,Hazard=\hazard,Consequence=\consequence,Type=\type,la=\la,ca=\ca,rra=\rra,tb=\tb,lb=\lb,cb=\cb,rrb=\rrb,tc=\tc,lc=\lc,cc=\cc,rrc=\rrc,date=\date}%
{
\thecsvrow&
\activity&
\hazard&
\consequence&
\type&
\la&
\ca&
\rra&
\tb&
\lb&
\cb&
\rrb&
\tc&
\lc&
\cc&
\rrc&
\date
}
\end{tabular}
\end{table}
\end{landscape}
\label{lastlastpage}
\end{document}
Ob es etwas mit dem Csvreader zu tun hat weiß ich leider nicht.
Hier das Minimalbeispiel:
[code]
\documentclass[12pt,oneside,a4paper]{scrartcl}
\usepackage{textcomp} %Sonderzeichen
%% CSV SIMPLE für Tabellen aus CSV
\usepackage{csvsimple}
\usepackage{pdflscape}%Für querformatige Seiten
\begin{filecontents*}{ra-test.csv}
Activity,Hazard,Consequence,Type,la,ca,rra,tb,lb,cb,rrb,tc,lc,cc,rrc,date
Activity,Hazard,\begin{itemize}
\item Test1
\item Test2
\item Test3
\end{itemize},Type,la,ca,rra,tb,lb,cb,rrb,tc,lc,cc,rrc,date
\end{filecontents*}
\begin{document}
\begin{landscape}
\tiny% Das ist eine Anweisung!
\begin{table}
\centering
\begin{tabular}{|l|l|p|l|l|l|l|l|l|l|l|l|l|l|l|l|l|}
\hline
\csvreader[late after line=\\\hline]%
{ra-test.csv}{Activity=\activity,Hazard=\hazard,Consequence=\consequence,Type=\type,la=\la,ca=\ca,rra=\rra,tb=\tb,lb=\lb,cb=\cb,rrb=\rrb,tc=\tc,lc=\lc,cc=\cc,rrc=\rrc,date=\date}%
{
\thecsvrow&
\activity&
\hazard&
\consequence&
\type&
\la&
\ca&
\rra&
\tb&
\lb&
\cb&
\rrb&
\tc&
\lc&
\cc&
\rrc&
\date
}
\end{tabular}
\end{table}
\end{landscape}
\label{lastlastpage}
\end{document}
[/code]