DasPferd
04-02-2012, 22:08
Ich hab ein Transkript (Abschrieb eines Interviews) von z.B. 15 Probanden das Ganze schaut ungefähr so aus:
Kapitel Proband 1:
(1)Interviewer: Bla Bla Bla
(2)Proband: Bla Bla Bla
(3)Interviewer: Bla Bla Bla
....
Kapitel Proband 2:
(1)Interviewer: Bla Bla Bla
(2)Proband: Bla Bla Bla
(3)Interviewer: Bla Bla Bla
....
Dabei werden die einzelnen Sätze dynamisch hochgezählt:
\newcounter{counter}
%%% -----------------------------------------------------------------------
%%% Interviewer
%%% -----------------------------------------------------------------------
\newcommand{\Int}[1]{
\addtocounter{counter}{1}
\label{counter}
\textcolor{socialspread}{(\arabic{counter}) Interviewer:} \textcolor{interviewer}{#1} \newline
}
%%% -----------------------------------------------------------------------
%%% Probandin
%%% -----------------------------------------------------------------------
\newcommand{\ProW}[1]{
\addtocounter{counter}{1}
\textcolor{socialspread}{\emph{(\arabic{counter}) Probandin:}} \textcolor{proband}{\emph{#1}} \newline
}
%%% -----------------------------------------------------------------------
%%% Proband
%%% -----------------------------------------------------------------------
\newcommand{\Pro}[1]{
\addtocounter{counter}{1}
\textcolor{socialspread}{\emph{(\arabic{counter}) Proband:}} \textcolor{proband}{\emph{#1}} \newline
}
Jetzt würde ich gerne ein Label erstellen der Form counter+Proband
also sprich z.B. label v1-1 = erster Proband 1 Satz und v2-7 = Proband 2 7ter Satz.
Sprich sowas in der Art:
\newcounter{counter}
\newcounter{proband}
%%% Interviewer
%%% -----------------------------------------------------------------------
\newcommand{\Int}[1]{
\addtocounter{counter}{1}
\label{counter+proband}
\label{counter}
\textcolor{socialspread}{(\arabic{counter}) Interviewer:} \textcolor{interviewer}{#1} \newline
.....
%%%Erster Proband
\setcounter{proband}{1}
\Int{BlaBlabla}
....
%%%Zweiter Proband
\setcounter{proband}{2}
}
Leider hab ich keinen Plan wie das geht und mir fällt auch nicht der geeignete Google Suchausdruck ein. Ich wäre dafür für eine Lösung sehr dankbar. Er soll natürlich nicht die Zahlen addieren sondern sowas in Richtung Int->String und dann String concat machen...
Kapitel Proband 1:
(1)Interviewer: Bla Bla Bla
(2)Proband: Bla Bla Bla
(3)Interviewer: Bla Bla Bla
....
Kapitel Proband 2:
(1)Interviewer: Bla Bla Bla
(2)Proband: Bla Bla Bla
(3)Interviewer: Bla Bla Bla
....
Dabei werden die einzelnen Sätze dynamisch hochgezählt:
\newcounter{counter}
%%% -----------------------------------------------------------------------
%%% Interviewer
%%% -----------------------------------------------------------------------
\newcommand{\Int}[1]{
\addtocounter{counter}{1}
\label{counter}
\textcolor{socialspread}{(\arabic{counter}) Interviewer:} \textcolor{interviewer}{#1} \newline
}
%%% -----------------------------------------------------------------------
%%% Probandin
%%% -----------------------------------------------------------------------
\newcommand{\ProW}[1]{
\addtocounter{counter}{1}
\textcolor{socialspread}{\emph{(\arabic{counter}) Probandin:}} \textcolor{proband}{\emph{#1}} \newline
}
%%% -----------------------------------------------------------------------
%%% Proband
%%% -----------------------------------------------------------------------
\newcommand{\Pro}[1]{
\addtocounter{counter}{1}
\textcolor{socialspread}{\emph{(\arabic{counter}) Proband:}} \textcolor{proband}{\emph{#1}} \newline
}
Jetzt würde ich gerne ein Label erstellen der Form counter+Proband
also sprich z.B. label v1-1 = erster Proband 1 Satz und v2-7 = Proband 2 7ter Satz.
Sprich sowas in der Art:
\newcounter{counter}
\newcounter{proband}
%%% Interviewer
%%% -----------------------------------------------------------------------
\newcommand{\Int}[1]{
\addtocounter{counter}{1}
\label{counter+proband}
\label{counter}
\textcolor{socialspread}{(\arabic{counter}) Interviewer:} \textcolor{interviewer}{#1} \newline
.....
%%%Erster Proband
\setcounter{proband}{1}
\Int{BlaBlabla}
....
%%%Zweiter Proband
\setcounter{proband}{2}
}
Leider hab ich keinen Plan wie das geht und mir fällt auch nicht der geeignete Google Suchausdruck ein. Ich wäre dafür für eine Lösung sehr dankbar. Er soll natürlich nicht die Zahlen addieren sondern sowas in Richtung Int->String und dann String concat machen...