Mein Text soll so aussehen:
Mein Code bisher:
{\mdseries Topic}: &
\begin{multicols}{2}
\item TopicA
\item TopicB
\item TopicC
\item[] Good
\item[] Very Good
\item[] Very Good
\end{multicols}
Antwort1
Ich bin mir nicht sicher, ob ich verstehe, was Ihr ultimatives Ziel beim Satz ist. Mit einer einfachen tabular
Umgebung können Sie den Screenshot, den Sie gepostet haben, auf jeden Fall neu erstellen:
\documentclass{article}
\begin{document}
\begin{tabular}{lll}
Topic: & TopicA & Good \\
& TopicB & Very Good \\
& TopicC & Very Good
\end{tabular}
\end{document}