PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Absatz mit Buchsatbe daneben



chris1234567
28-03-2009, 15:30
Hallo, ich möchte einen Absatz erstellen. Neben dem Absatz, auf gleicher Höhe der ersten Zeile soll ein Buchstabe stehen. Das Problem mit meinem Code ist, dass der Absatz in der nächsten Zeile nicht aber in der von dem Buchstaben ist. Hat jemand Vorschläge?


\documentclass{scrartcl}
\begin{document}

a. \begin{quote}"Adaptation" means a work based upon the Work, or upon the Work and other pre-existing works, such as a translation, adaptation,......
\end{quote}


\end{document}

bg c

mermshaus
28-03-2009, 15:39
Hi.

Keine Ahnung, ob das die beste Lösung/Umsetzung ist, aber du könntest sowas machen:


\documentclass{scrartcl}

\begin{document}

\begin{itemize}
\item[a.] Hier ist text
\begin{quote}
"Adaptation" means a work based upon the Work, or upon the Work and other pre-existing works, such as a translation, adaptation,......
\end{quote}

\item[b.] Hier ist anderer Text
\begin{quote}
"Adaptation" means a work based upon the Work, or upon the Work and other pre-existing works, such as a translation, adaptation,......
\end{quote}
Hier kommt noch mehr Text.

\item[c.] Und noch ein Eintrag.
\end{itemize}

\end{document}

Gruß
Marc

voss
28-03-2009, 16:25
Hallo, ich möchte einen Absatz erstellen. Neben dem Absatz, auf gleicher Höhe der ersten Zeile soll ein Buchstabe stehen. Das Problem mit meinem Code ist, dass der Absatz in der nächsten Zeile nicht aber in der von dem Buchstaben ist. Hat jemand Vorschläge?



\documentclass{scrartcl}
\newenvironment{Quote}[1][]
{\quote\mbox{}\hspace*{-\leftmargin}\makebox[\leftmargin][l]{#1}}
{\endquote}
\begin{document}

\begin{Quote}[a.]"Adaptation" means a work based upon the Work, or upon the Work and other
pre-existing works, such as a translation, adaptation,......
\end{Quote}

\begin{Quote}"Adaptation" means a work based upon the Work, or upon the Work and other
pre-existing works, such as a translation, adaptation,......
\end{Quote}

\end{document}

du hattest ein schönes Minimalbeispiel ... ganz neben bei

Herbert

chris1234567
30-03-2009, 13:46
Vielen Dank für die Lösungen!

Bg
C