.png)
これは非常に一般的な質問だとわかっていますが、助けが必要な段階に達しました。これを再現する必要があります
今ではこれをなんとかできました
しかし、お気づきかもしれませんが:
- タイトルの行間のスペースが大きすぎる
- タイトルの下のブロック (A、Via、De、Fecha y Referencia) は書式設定が必要です。
テキストの残りの部分は非常に似ています:)
この「テンプレート」は作業フォームに基づいていますロブ・オークスそしてダウンロードした後、CL新しい変数を追加するファイルです。オリジナルのテンプレートを確認するか、私の変更されたテンプレート。
上記のリストをフォーマットするのに助けが必要です。何かアドバイスはありますか?
答え1
さて、最後に、簡単なarticle
ドキュメントから始めることができます。そのためには完全なテンプレートは必要ありません。
簡単な出発点として、次のコードが考えられます。
\documentclass[10pt]{article}
\usepackage{graphicx} % <============================= \includegraphics
\usepackage{showframe} % <============ visualize typing area and margins
\usepackage{lipsum} % <=================================== dummy text
\usepackage[scaled]{helvet} % <===================== or libertine or ...
\usepackage[T1]{fontenc}
\renewcommand\familydefault{\sfdefault} % <=== Sans serif to be standard!
\begin{document}
\noindent\includegraphics[width=2cm]{example-image-duck} \hfill \includegraphics[width=2cm]{example-image-a}
\noindent\rule{\textwidth}{2pt}
\begin{center}
{\Huge Title}\\
{\Large second line}\\
third line
\end{center}
\vspace{2\baselineskip}
\begin{tabular}{p{3cm}p{8cm}}
{\bfseries A:} & James Smith\\
{\bfseries Via:} & Something \\
... \\
{\bfseries Referencia} & A big text here that we will break manually with this and continue to next line\\%
\end{tabular}
\noindent\rule{\textwidth}{1pt}
Senior Director
\vspace{2\baselineskip}
\lipsum[1]
\section{INTRODUCTION}
\lipsum[1-5]
\end{document}
結果は次のようになります:
会社/機関用の数式を再構築したいようですね。 残された仕様がわからないからです (たとえば、タイトルと 2 番目のタイトル行の間の距離など)。 パッケージを使用すると、geometry
必要な余白などを定義できます。
しかし、出発点としては十分だと思います。