web-dev-qa-db-ja.com

Markdownなどを使用して、ページ番号を含む目次を含むドキュメントを生成しますか?

印刷すると数百ページになる大きなドキュメントを作成する必要があります。 Markdownのようなものでこれをやりたいです。私の要件の1つは、ドキュメントにページ番号と目次が必要であることです。 Markdownまたは同様のMarkup言語を使用して、関連するページ番号を含む目次を自動的に生成する方法はありますか?これまでにMarkdownで確認したものはすべて、HTML出力の目次を自動的に生成できますが、関連するページ番号はありません。

4
Jared

pandoc の仕事のように聞こえます。

HTMLには「ページ」の概念はありません。 <div></div>タグと一緒に何かを壊すのはおそらく可能でしょうが、私はPDFを使用します:

pandoc --toc --chapters -o output.pdf input1.mkd input2.mkd

Pandocは任意の数の入力を受け取ることができます。各入力の最後に改行を追加し、それらを連結します。上記のコマンドは、本としてバインドされるように設計されたPDFを作成します-各章(レベル1のタイトルで示されます)は奇数ページから始まります。これが必要ない場合動作、以下を使用します。

pandoc --toc -V documentclass=report -o output.pdf input1.mkd input2.mkd

紙を節約したいが、前の章が終わったところから始まる章を気にしない場合(ページの途中から始まる場合もあります)、--chaptersオプションなしでpandocを呼び出します。

pandoc --toc -o output.pdf input1.mkd input2.mkd

canは、目次を含むHTMLを生成できますが、リストしたすべての制限があります。 ODTとMicrosoft DOCドキュメントをpandocで生成することも可能ですが、特に美しいPDF生成と比較すると、見栄えがよくないと思います。 。

Pandocを使用してPDFを作成するには、LaTeXエンジンをインストールする必要があります。これは、リポジトリに少なくとも1つあるLinuxでは非常に簡単ですが、Windowsでは少し難しいかもしれません(私にはわかりませんが、実際に試したことはありません)。そのため、カスタムLaTeXテンプレートを使用して、好みに合わせてカスタマイズすることができますが、まだ頭を悩ませていないので、現在は(かなりいい)デフォルトを使用しています。

10
evilsoup

数分後、pandocにオプションとして渡すことができる独自のLaTeXテンプレートが必要であることに気付きました。

pandoc --toc --chapter --template=yourtemplate.tex -o output.pdf input1.mkd

ただし、LaTeXサイトでテンプレートを変更する必要があります。提案として、次のものを使用できます。

出発点として、次のテンプレートを使用できます。デフォルトのテンプレートをコピーしました https://github.com/jgm/pandoc-templates/blob/master/default.latex そしていくつかの追加のものを追加しました。

ほとんどのif-end-combinationsを削除できると確信しています。テンプレートには、ユーザー向けのオプションを増やす必要があります。

\documentclass[chapterprefix=false,titlepage=false]{scrreprt}
\usepackage[T1]{fontenc}

\usepackage{amssymb,amsmath}
\usepackage{fixltx2e} % provides \textsubscript
% use upquote if available, for straight quotes in verbatim environments
\IfFileExists{upquote.sty}{\usepackage{upquote}}{}
\ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex
  \usepackage[utf8]{inputenc}
$if(euro)$
  \usepackage{eurosym}
$endif$
\else % if luatex or xelatex
  \ifxetex
    \usepackage{mathspec}
    \usepackage{xltxtra,xunicode}
  \else
    \usepackage{fontspec}
  \fi
  \defaultfontfeatures{Mapping=tex-text,Scale=MatchLowercase}
  \newcommand{\euro}{€}
$if(mainfont)$
    \setmainfont{$mainfont$}
$endif$
$if(sansfont)$
    \setsansfont{$sansfont$}
$endif$
$if(monofont)$
    \setmonofont{$monofont$}
$endif$
$if(mathfont)$
    \setmathfont(Digits,Latin,Greek){$mathfont$}
$endif$
\fi
% use microtype if available
\IfFileExists{microtype.sty}{\usepackage{microtype}}{}
$if(geometry)$
\usepackage[$for(geometry)$$geometry$$sep$,$endfor$]{geometry}
$endif$
$if(natbib)$
\usepackage{natbib}
\bibliographystyle{plainnat}
$endif$
$if(biblatex)$
\usepackage{biblatex}
$if(biblio-files)$
\bibliography{$biblio-files$}
$endif$
$endif$
$if(listings)$
\usepackage{listings}
$endif$
$if(lhs)$
\lstnewenvironment{code}{\lstset{language=Haskell,basicstyle=\small\ttfamily}}{}
$endif$
$if(highlighting-macros)$
$highlighting-macros$
$endif$
$if(verbatim-in-note)$
\usepackage{fancyvrb}
$endif$
$if(tables)$
\usepackage{longtable}
$endif$
$if(graphics)$
\usepackage{graphicx}
% Redefine \includegraphics so that, unless explicit options are
% given, the image width will not exceed the width of the page.
% Images get their normal width if they fit onto the page, but
% are scaled down if they would overflow the margins.
\makeatletter
\def\ScaleIfNeeded{%
  \ifdim\Gin@nat@width>\linewidth
    \linewidth
  \else
    \Gin@nat@width
  \fi
}
\makeatother
\let\Oldincludegraphics\includegraphics
{%
 \catcode`\@=11\relax%
 \gdef\includegraphics{\@ifnextchar[{\Oldincludegraphics}{\Oldincludegraphics[width=\ScaleIfNeeded]}}%
}%
$endif$
\ifxetex
  \usepackage[setpagesize=false, % page size defined by xetex
              unicode=false, % unicode breaks when used with xetex
              xetex]{hyperref}
\else
  \usepackage[unicode=true]{hyperref}
\fi
\hypersetup{breaklinks=true,
            bookmarks=true,
            pdfauthor={$author-meta$},
            pdftitle={$title-meta$},
            colorlinks=true,
            urlcolor=$if(urlcolor)$$urlcolor$$else$blue$endif$,
            linkcolor=$if(linkcolor)$$linkcolor$$else$Magenta$endif$,
            pdfborder={0 0 0}}
\urlstyle{same}  % don't use monospace font for urls
$if(links-as-notes)$
% Make links footnotes instead of hotlinks:
\renewcommand{\href}[2]{#2\footnote{\url{#1}}}
$endif$
$if(strikeout)$
\usepackage[normalem]{ulem}
% avoid problems with \sout in headers with hyperref:
\pdfstringdefDisableCommands{\renewcommand{\sout}{}}
$endif$
\setlength{\parindent}{0pt}
\setlength{\parskip}{6pt plus 2pt minus 1pt}
\setlength{\emergencystretch}{3em}  % prevent overfull lines
$if(numbersections)$
\setcounter{secnumdepth}{5}
$else$
\setcounter{secnumdepth}{0}
$endif$
$if(verbatim-in-note)$
\VerbatimFootnotes % allows verbatim text in footnotes
$endif$
$if(lang)$
\ifxetex
  \usepackage{polyglossia}
  \setmainlanguage{$mainlang$}
\else
  \usepackage[$lang$]{babel}
\fi
$endif$
$for(header-includes)$
$header-includes$
$endfor$

$if(title)$
\title{$title$}
$endif$
\author{$for(author)$$author$$sep$ \and $endfor$}
\date{$date$}

\begin{document}
$if(title)$
\maketitle
$endif$

$for(include-before)$
$include-before$

$endfor$
$if(toc)$
{
\hypersetup{linkcolor=black}
\setcounter{tocdepth}{$toc-depth$}
\begingroup
\let\clearpage\relax
\tableofcontents
\endgroup
}
$endif$
$body$

$if(natbib)$
$if(biblio-files)$
$if(biblio-title)$
$if(book-class)$
\renewcommand\bibname{$biblio-title$}
$else$
\renewcommand\refname{$biblio-title$}
$endif$
$endif$
\bibliography{$biblio-files$}

$endif$
$endif$
$if(biblatex)$
\printbibliography$if(biblio-title)$[title=$biblio-title$]$endif$

$endif$
$for(include-after)$
$include-after$

$endfor$
\end{document}
1
Marco Daniel

LaTeXの使用を検討しましたか?

他の回答は、MarkdownをLaTeXに変換できるように見えるPandocの使用を提案していますが、LaTeXで直接開始する方が簡単な場合があります。

LaTeXは、印刷ドキュメントの作成用に設計されており、ページ番号やTOC生成などが組み込まれています。この基本的なチュートリアルをチェックしてください: http://www.andy-roberts.net/writing/latex

1
daxlerod