我对 LaTex 还很陌生,想直接开始在我的下一篇论文中使用它。
我想做一个像这样的设计: https://tex.stackexchange.com/a/13507
页面上有侧栏。我发现几个模板的侧栏总是在右侧或左侧。我想让它们交替出现。这样侧栏就会一直位于页面的外侧。
有人可以提示我从哪里开始或者在哪里可以找到有关如何实现这一点的信息吗?
谢谢
答案1
如果需要,您可以添加更高级的包和类,但最好从真正基本的结构开始,如果需要功能,再添加包,而不是从可能记录不全的复杂结构开始。边注会自动出现在外边缘,因此标准类已经满足您的基本要求,article
无需额外的包。
\documentclass[twoside,a4paper]{article}
\extrafloats{100}
\def\zz{One two three four five six seven eight nine ten \stepcounter{enumi}\roman{enumi}. }
\def\zzz{\zz Red blue yellow green
\zz\zz\zz\zz\zz\zz\marginpar{%
\setlength\unitlength{.5pt}
\begin{picture}(200,100)
\put(30,40){\line(1,0){150}}
\put(30,40){\line(0,1){60}}
\put(30,100){\line(1,0){20}}
\put(50,100){\line(1,-4){10}}
\put(60,60){\line(1,0){100}}
\put(160,60){\line(1,-1){20}}
\put(100,50){\line(0,-1){80}}
\put(130,50){\line(0,-1){80}}
\put(100,-30){\line(1,0){30}}
\put(100,61){\line(0,1){49}}
\put(130,61){\line(0,1){49}}
\put(100,110){\line(1,0){30}}
\end{picture}}. \zz\zz Apple orange \Roman{enumi}.
\zz\zz\zz\zz\zz\zz
\zz\zz\zz\marginpar{
\begin{picture}(100,100)
\put(50,50){\oval(50,20){}}
\put(70,65){\circle{20}}
\put(35,50){\line(1,0){30}}
\put(70,65){\circle*{2}}
\put(75,67){\line(6,-1){10}}
\put(75,63){\line(6,1){10}}
\end{picture}}\zz}
\begin{document}
\zzz\zzz\zzz
\zzz\zzz\zzz\zzz\zzz\zzz
\zzz\zzz\zzz\zzz\zzz\zzz\zzz\zzz\zzz
\zzz\zz\zzz\zzz\zzz\zz\zzz\zzz\zzz\zzz\zzz
\zzz\zzz\zz\zzz\zzz\zz\zzz\zzz\zzz\zzz\zzz
\end{document}
答案2
答案3
我猜你正在搜索班级tufte-book
。运行texdoc tufte
以获取更多信息。
\documentclass[symmetric,justified,marginals=raggedouter]{tufte-book}
\usepackage{lipsum}
\title{My wonderful tesis}
\author{Someone Likeyou}
\date{\today}
\usepackage{graphicx}
\begin{document}
\maketitle
\chapter{Introduction}
\begin{marginfigure}
\includegraphics[width=\linewidth]{example-image-a}
\caption{A marginfnal figure}
\end{marginfigure}
\lipsum[1][1-5]
\lipsum[2]
\begin{marginfigure}
\includegraphics[width=\linewidth]{example-image-b}
\caption{A marginfnal figure}
\end{marginfigure}
\lipsum[4-6]
\begin{marginfigure}
\includegraphics[width=\linewidth]{example-image-c}
\caption{A marginfnal figure}
\end{marginfigure}
\end{document}