PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Qullenangabe bei Zitat



danielae
18-08-2008, 15:10
Hallo zusammen ich möchte gerne die Quelle meines Zitates gleich unter dem Zitat und zwar rechtsbündig angeben. Kann mir jemand sagen wie man das machen kann?

Beispiel:

Microsoft DNS and DHCP services are deployed by many enterprises. Included with Microsoft Windows server, these critical services are the foundation for network connectivity and applications. All IP devices need addresses, and DHCP is the most efficient way to provide them. And essentially all network applications, from web services to e-mail to Microsoft Active Directory, depend on DNS. But increasingly, the management of these services is a challenge as networks continue to add devices and applications at an unprecedented rate.

Quelle, xy

Vielen Dank für eure Hilfe

mechanicus
18-08-2008, 19:49
Hallo,

hier mal ein kleines Beispiel, ich hoffe es ist das, was du dir vorstellst.


\documentclass[12pt,a4paper]{article}

\usepackage[english]{babel}
\usepackage{blindtext}

\begin{document}
\blindtext
\begin{quote}
Microsoft DNS and DHCP services are deployed by many enterprises. Included with Microsoft Windows server, these critical services are the foundation for network connectivity and applications. All IP devices need addresses, and DHCP is the most efficient way to provide them. And essentially all network applications, from web services to e-mail to Microsoft Active Directory, depend on DNS. But increasingly, the management of these services is a challenge as networks continue to add devices and applications at an unprecedented rate. \flushright \cite{bsp}
\end{quote}
\blindtext
\begin{thebibliography}{xxxxxxxxxxxxxxxxxxx}
\bibitem[BSP, 2008]{bsp} Beispiel in mrunix fuer Latex
\end{thebibliography}

\end{document}

danielae
19-08-2008, 11:02
Danke für deine Antwort. Es hat in etwa geklappt, jedoch ist der Abstand zwischen dem Zitat und der Quelle sehr gross. Wie kann ich diesen Abstand verkleinern?

mechanicus
19-08-2008, 11:55
Hallo,

ersetze mal:

\flushright \cite{bsp}

durch

\hfill\cite{bsp}
Dann ist die Quellenangabe mit in der Letzen Zeile rechts. Alternativ aber ohne Schönheit der Programmierung, ersetze durch

\newline ${}$ \hfill\cite{bsp}
Gruß