
Ich habe Folgendes versucht
\linespread{1.3}
\documentclass[12pt]{report}
\begin{document}
\paragraph{Title Detection Computing}
\vspace{5mm}
Cloud smart alert correlation in Azure Security Center (incidents)
In the “publish or perish” age of academic research, many senior researchers advise their students and junior researchers about how to create professional document layouts, which software system to use, and which system is more efficient or user-friendly. Many of these senior researchers will attempt to convince their students and junior researchers that one system is “better”, “more elegant” “simpler”, or “more flexible” than the other system. There are very few researchers, however, who can confirm empirically how one system is superior to the other and on what basis they have drawn this conclusion. To date, no empirical studies exist to identify which system is more efficient. The preference toward a particular document preparation system can be particularly obstructive to the progress of research if the research question requires interdisciplinary teams. For example, a brain computer interface project may require collaborations between medical scientist
\vfill
\end{document}
Das generierte Ergebnis war ein Absatz mit Überschrift und Text wie dieser hier
Ich wollte einen Effekt erzeugen, der dem entspricht, was wir bekommen, wenn wir in Microsoft Word am Ende einer Zeile oder eines Titels die Eingabetaste drücken und zu einer neuen Zeile gelangen. Ich habe versucht, \\
oder einzugeben \newline
, aber ich habe eine Meldung erhalten
There's no line here to end. \newline
Ich habe auch versucht, Folgendes zu tun
\linespread{1.3}
\documentclass[12pt]{report}
\begin{document}
\paragraph{Title title title}
\hfill \break
\vspace{5mm}
which system is more efficient. The preference toward a particular document preparation system can be particularly obstructive to the progress of research if the research question requires interdisciplinary teams. For example, a brain computer interface project may require collaborations between medical scientists, psychologists, computer scientists, biologists, physicists, and engineers. Any researcher who has ever collaborated on such large interdisciplinary projects has experienced the difficulty with \vfill
\end{document}
aber das Ergebnis war nicht so, wie ich erwartet hatte, eine Lücke von 5 mm zwischen dem Titelanfang und der ersten Zeile. Ich habe Tutorials von gelesenHier Ich konnte jedoch nicht das gewünschte Ergebnis erzielen. Was übersehe ich?
Antwort1
Sie haben mindestens zwei Möglichkeiten:
1) Verwenden Sie die memoir
Klasse (eine Obermenge der Klassen book
, report
und article
) wie
\documentclass[...]{memoir}
\setafterparskip{5mm}
\begin{document}
\paragraph{title}
\end{document}
2) Ändern Sie die grundlegende \paragraph
Definition, wie im folgenden MWE gezeigt (wobei der einfachere memoir
Code auskommentiert ist).
% paraprob.tex SE 535683 Don't run-in paragraph heading
\linespread{1.3}
\documentclass[12pt]{report}
\makeatletter
\renewcommand{\paragraph}{%
\@startsection{paragraph}{4}%
{\z@}%
{3.25ex \@plus 1ex \@minus .2ex}%
{5mm}%
{\normalsize\bfseries}%
}
\makeatother
%\documentclass[12pt]{memoir}
%\setafterparaskip{5mm}
\begin{document}
\paragraph{Title Detection Computing}
\vspace{5mm}
Cloud smart alert correlation in Azure Security Center (incidents)
In the “publish or perish” age of academic research, many senior researchers advise their students and junior researchers about how to create professional document layouts, which software system to use, and which system is more efficient or user-friendly. Many of these senior researchers will attempt to convince their students and junior researchers that one system is “better”, “more elegant” “simpler”, or “more flexible” than the other system. There are very few researchers, however, who can confirm empirically how one system is superior to the other and on what basis they have drawn this conclusion. To date, no empirical studies exist to identify which system is more efficient. The preference toward a particular document preparation system can be particularly obstructive to the progress of research if the research question requires interdisciplinary teams. For example, a brain computer interface project may require collaborations between medical scientist
\vfill
\end{document}