提出研究问题的想法?

提出研究问题的想法?

我知道这是一个非常开放的问题,但是我正在寻找一些印象,因为我完全不确定我能用什么风格来做到这一点。

我现在正在写我的学士论文,我想在引言中提出我的最后一个研究问题。我当时正在考虑一个与其他环境略有不同、看起来“不错”的环境。

我正在尝试这样的事情:

\framebox[\textwidth]{
\begin{tabular}{@{}ll@{}}
\textbf{Researchquestion 1} & How is this done?\\
\textbf{Researchquestion 2} & What is done?\\
\end{tabular}
} 

在此处输入图片描述

然而也许有一些更好的方法可以做到这一点?

答案1

\documentclass{article}

\usepackage{enumitem}

\newlist{questions}{enumerate}{2}
\setlist[questions,1]{label=RQ\arabic*.,ref=RQ\arabic*}
\setlist[questions,2]{label=(\alph*),ref=\thequestionsi(\alph*)}

\begin{document}
    \begin{questions}
        \item This is a research question.
        \item This is another research question.
        \item This is a research question with a label.\label{itm:qwithlabel}
    \end{questions}

    \noindent We are very interested in answering~\ref{itm:qwithlabel}.
\end{document}

预览

答案2

我在论文中见过各种各样的东西,从\begin{description}...\end{description}简单的\textbf{...}\emph{}简单的。你很少在论文中看到方框,但论文不是论文。你也可以给它一个专门的段落\paragraph{Research Question X}。现在,只要出版物中有足够的空间,我个人更喜欢使用\begin{quote}...\end{quote}\emph{}。参见下面的结果,其中包含一些随机的前置文本:

在此处输入图片描述

相应的 tex 代码为:

\begin{quote}\emph{RQ T.1: What kinds of formatting options are used for presenting research questions?}\end{quote}

让我提供一些一般性建议,希望这些建议能帮助您设置格式。您可以使用宏来处理研究问题,以便进行一致的编辑。通常,您会在专门的(子)部分中重复研究问题,或者在展示结果后提供简明的答案时重复研究问题。

序言中的宏(之前\begin{document}):

\newcommand{\rqtest}{\begin{quote}
        \emph{RQ T.1: What formatting options are used for presenting research questions?}
\end{quote}}

无论您想把研究问题放在哪里,只需输入\rqtest{}。这样,您不仅可以在一个地方处理演示,还可以通过保持一致性帮助读者在整个论文的其他地方识别研究问题。

相关内容