Tufte-Book 课程 - 并排对齐三个 \enumerate 环境?

Tufte-Book 课程 - 并排对齐三个 \enumerate 环境?

我正在用互联网上到处流传的 tufte-book 模板转录我的一些讲义。我想并排有三个枚举环境,但我不太确定这如何工作。我知道我必须使用

\begin{fullwidth}
\end{fullwidth}

命令让文本跨越整个页面,但它似乎在这里不起作用。

\documentclass{tufte-handout}

%\geometry{showframe}% for debugging purposes -- displays the margins

\usepackage{amsmath}
\usepackage{textcomp}
\usepackage{textgreek}


% Set up the images/graphics package
\usepackage{graphicx}
\setkeys{Gin}{width=\linewidth,totalheight=\textheight,keepaspectratio}
\graphicspath{{graphics/}}

\title{Microbial Genetics Lecture}
\author[dfd]{did}
\date{2015}  % if the \date{} command is left out, the current date will be used

% The following package makes prettier tables.  We're all about the bling!
\usepackage{booktabs}

% The units package provides nice, non-stacked fractions and better spacing
% for units.
\usepackage{units}

% The fancyvrb package lets us customize the formatting of verbatim
% environments.  We use a slightly smaller font.
\usepackage{fancyvrb}
\fvset{fontsize=\normalsize}

% Small sections of multiple columns
\usepackage{multicol}

% Provides paragraphs of dummy text
\usepackage{lipsum}

% These commands are used to pretty-print LaTeX commands
\newcommand{\doccmd}[1]{\texttt{\textbackslash#1}}% command name -- adds backslash automatically
\newcommand{\docopt}[1]{\ensuremath{\langle}\textrm{\textit{#1}}\ensuremath{\rangle}}% optional command argument
\newcommand{\docarg}[1]{\textrm{\textit{#1}}}% (required) command argument
\newenvironment{docspec}{\begin{quote}\noindent}{\end{quote}}% command specification environment
\newcommand{\docenv}[1]{\textsf{#1}}% environment name
\newcommand{\docpkg}[1]{\texttt{#1}}% package name
\newcommand{\doccls}[1]{\texttt{#1}}% document class name
\newcommand{\docclsopt}[1]{\texttt{#1}}% document class option name

\begin{document}

\section{Characterization of the 3 Domains}

    \begin{fullwidth}

    \begin{minipage}[t]{0.5\textwidth}
    \begin{fullwidth}
    \indent \textbf{Structural Features}
    \begin{itemize}
    \item{\# of chromosomes}
    \item{Nuclear Membrane}
    \item{Nucleolus}
    \item{Membrane Lipids}
    \item{Peptidogylcan}
    \end{itemize}
    \end{fullwidth}
    \end{minipage}


    \begin{minipage}[t]{1.0\textwidth}
    \begin{fullwidth}
    \textbf{Gene Structure/Transcription/Translation}
    \begin{itemize}
    \item{Introns?}
    \item{Transcription-Translation Coupled?}
    \item{Polygenic mRNA - polycistronic?}
    \item{polyA mRNA}
    \item{Ribosome (size/ SUs}
    \item{Amino acid carried by initiator tRNA}
    \end{itemize}
    \end{fullwidth}
    \end{minipage}




    \textbf{Other Processes}
    \begin{itemize}
    \item{Exo- or Endocytosis?}
    \item{Type of movement}
    \end{itemize}

    \end{fullwidth}

\end{document}

谢谢大家的帮助!

答案1

删除它\fbox{...}仅用于演示:

\begin{fullwidth}
\fbox{\begin{minipage}[t]{0.4\textwidth}
\textbf{Structural Features}
        \begin{itemize}
                    \item{\# of chromosomes}
                    \item{Nuclear Membrane}
                    \item{Nucleolus}
                    \item{Membrane Lipids}
                    \item{Peptidogylcan}
                \end{itemize}
\end{minipage}}
\hfill      
\fbox{\begin{minipage}[t]{0.6\textwidth}
\textbf{Gene Structure/Transcription/Translation}
                \begin{itemize}
                    \item{Introns?}
                    \item{Transcription-Translation Coupled?}
                    \item{Polygenic mRNA - polycistronic?}
                    \item{polyA mRNA}
                    \item{Ribosome (size/ SUs}
                    \item{Amino acid carried by initiator tRNA}
                \end{itemize}
\end{minipage}}
\hfill      
\fbox{\begin{minipage}[t]{0.35\textwidth}
        \textbf{Other Processes}
        \begin{itemize}
            \item{Exo- or Endocytosis?}
            \item{Type of movement}
        \end{itemize}
\end{minipage}}     
\end{fullwidth}

在此处输入图片描述

相关内容