如何在小册子中设置常见问题解答页面?

如何在小册子中设置常见问题解答页面?

我想在我正在编写的小册子末尾设置一个简单的常见问题解答页面。

格式如下:

问:问题文本。

A.答案正文。

我希望文本左对齐,但位于问答的右侧,而不是下方。每页会有多个问题和答案,但我并不担心换行,因为我可以组织问题和答案,使它们不会超出页面末尾。

有什么想法吗?我正在做的年终项目需要这个。

答案1

像这样?

\documentclass{article}
\usepackage{enumitem}
\usepackage{lipsum}    %% just for demo

\newlist{question}{enumerate}{1}
\setlist[question,1]{
  label= \textbf{Q.},
  leftmargin=*,
}
\newlist{answer}{enumerate}{1}
\setlist[answer,1]{
  label= \textbf{A.},
  leftmargin=*,
}
\begin{document}
  \begin{question}
    \item \lipsum*[1]
  \end{question}
  \begin{answer}
    \item \lipsum*[1]
  \end{answer}
\end{document}

在此处输入图片描述

调整其他参数等topsepitemsep周末的家庭作业:-)(提示:查阅enumitem手册)

答案2

其他简单方法:

姆韦

\documentclass{octavo}
\usepackage[paperwidth=108mm, paperheight=120mm]{geometry}
\usepackage[colorlinks]{hyperref}
\parskip1em
\def\Q{\noindent\hangindent3em\makebox[3em][l]{‪\bfseries Q.}} 
\def\A{\noindent\hangindent3em\makebox[3em][l]{‪\bfseries A.}} 
\begin{document}

\section*{FAQ's}

\Q How can I set up a \textsc{faq} page in a booklet? 
I want to set up a simple \textsc{faq} page at the end 
of a booklet I'm working on.

\A You can use an \verb|\hanindent| plus a \verb|\makebox|, 
both of the same width. A simple macro can simplfy 
typesetting this.

\Q Can I see some example?

\A Yes, of course, see the source code of this file 
in \TeX-\LaTeX\ Stack Exchange.
\footnote{\url{http://tex.stackexchange.com/a/274775/11604}}

\end{document}

相关内容