カラーボックス付き分類広告

カラーボックス付き分類広告

私は tcolor ボックスを使用して LaTex で分類広告用紙を作成しようとしています。私はこの作業に不慣れなので、どうか辛抱強くお待ちください。以下は、私がエミュレートしようとしているもののスクリーンショットです。

私が真似しようとしている分類広告の例

これまでに作成できたものは次のとおりです。

tcolorボックスは分類広告を生成しようとします

各広告の間には最小限の間隔で 1 本の線を入れ、両側に目に見えない境界線を付ける必要があります。コードを変更する方法や、使用すべきより良いコードがあるかどうかを教えてください。ありがとうございます。

これが私の LaTeX .tex コードです:

\documentclass[11pt]{article}
\usepackage[many]{tcolorbox}
\usepackage{lipsum}
\usepackage{graphicx}
\graphicspath{ {../images/} } 



\begin{document}
\section{Example}
An early version of an example document that eventually will render classified ads using \LaTeX , tcolorbox and multirow. Possibly ltablex too.
The page below is an example image of the look we are aiming for. The third page is going to attempt to render using LaTeX and specific extensions.

\includegraphics{exampleclassified.ps}

\section{First try example}

\begin{tcbraster}[raster equal height=rows,raster every box/.style={colframe=black!50!black,colback=white}]\begin{tcolorbox}[blankest]\begin{tcbraster}[raster columns=1]\begin{tcolorbox}[natural height,
        space to upper,
        skin=bicolor,
        colbacklower=black!95,
        collower=white,
        title={X-should be blank and the same dimensions as the orginal },
        halign=center,
        valign=center,
        nobeforeafter,
        halign lower=flush right,
        bottom=0mm,
        height=3cm
    ]


        \$ CASH \$ For Broken Autos.
        Paying \$50 to \$500. I Tow!
        Call Doug Anytime 7-Days,
        (269)501-5763.\end{tcolorbox}
        \begin{tcolorbox}
        \$ \$ \$ WE BUY USED \& Unwanted Autos.
        Any condition, Top \$ \$ \$
        paid. Will pick up Free.
        Airway Auto Parts
        (269)962-9521

        \end{tcolorbox}

        \begin{tcolorbox}

        \$500! POLICE IMPOUNDS!
        Hondas/Chevys/Jeeps!
        Cars from \$500! For listings:
        800-619-3790 ext.2938
        \end{tcolorbox}

        \end{tcbraster}\end{tcolorbox}\end{tcbraster}



\end{document}

答え1

最初の提案は を使用して行われたためtcolorbox、 を使用した 2 つの解決策がありますtcolorbox。OP がすでに提案したように、これらの解決策は に基づいていますtcbraster。最初の解決策では、マルチカラム環境内で 1 列の tcbraster を使用し、2 番目の解決策では 3 列の tcbraster を使用します。

内側のボックスはスタイルで定義され、上部と下部の余白と下部の境界線が追加されたボックスclassifiedです。blank

それだけです!

\documentclass[11pt]{article}
\usepackage[many]{tcolorbox}
\usepackage{multicol}

\tcbset{classified/.style={enhanced, blanker, borderline south={2pt}{0pt}{black}, top=1mm, bottom=1mm}}
\begin{document}

\begin{multicols}{3}
\begin{tcbitemize}[raster columns=1, raster row skip = 0pt, classified]
\tcbitem \$ CASH \$ For Broken Autos. Paying \$50 to \$500. I Tow! Call Doug Anytime 7-Days, (269)501-5763.
\tcbitem \$ \$ \$ WE BUY USED \& Unwanted Autos. Any condition, Top \$ \$ \$ paid. Will pick up Free. Airway Auto Parts (269)962-9521
\tcbitem \$500! POLICE IMPOUNDS! Hondas/Chevys/Jeeps! Cars from \$500! For listings: 800-619-3790 ext.2938
\tcbitem \$ CASH \$ For Broken Autos. Paying \$50 to \$500. I Tow! Call Doug Anytime 7-Days, (269)501-5763.
\tcbitem \$ \$ \$ WE BUY USED \& Unwanted Autos. Any condition, Top \$ \$ \$ paid. Will pick up Free. Airway Auto Parts (269)962-9521
\tcbitem \$500! POLICE IMPOUNDS! Hondas/Chevys/Jeeps! Cars from \$500! For listings: 800-619-3790 ext.2938
\tcbitem \$ CASH \$ For Broken Autos. Paying \$50 to \$500. I Tow! Call Doug Anytime 7-Days, (269)501-5763.
\tcbitem \$ \$ \$ WE BUY USED \& Unwanted Autos. Any condition, Top \$ \$ \$ paid. Will pick up Free. Airway Auto Parts (269)962-9521
\tcbitem \$500! POLICE IMPOUNDS! Hondas/Chevys/Jeeps! Cars from \$500! For listings: 800-619-3790 ext.2938
\tcbitem \$ CASH \$ For Broken Autos. Paying \$50 to \$500. I Tow! Call Doug Anytime 7-Days, (269)501-5763.
\tcbitem \$ \$ \$ WE BUY USED \& Unwanted Autos. Any condition, Top \$ \$ \$ paid. Will pick up Free. Airway Auto Parts (269)962-9521
\tcbitem \$500! POLICE IMPOUNDS! Hondas/Chevys/Jeeps! Cars from \$500! For listings: 800-619-3790 ext.2938
\tcbitem \$ CASH \$ For Broken Autos. Paying \$50 to \$500. I Tow! Call Doug Anytime 7-Days, (269)501-5763.
\tcbitem \$ \$ \$ WE BUY USED \& Unwanted Autos. Any condition, Top \$ \$ \$ paid. Will pick up Free. Airway Auto Parts (269)962-9521
\tcbitem \$500! POLICE IMPOUNDS! Hondas/Chevys/Jeeps! Cars from \$500! For listings: 800-619-3790 ext.2938
\tcbitem \$ CASH \$ For Broken Autos. Paying \$50 to \$500. I Tow! Call Doug Anytime 7-Days, (269)501-5763.
\tcbitem \$ \$ \$ WE BUY USED \& Unwanted Autos. Any condition, Top \$ \$ \$ paid. Will pick up Free. Airway Auto Parts (269)962-9521
\end{tcbitemize}
\end{multicols}

\begin{tcbitemize}[raster columns=3, raster row skip = 0pt, raster equal height=rows, classified]
\tcbitem \$ CASH \$ For Broken Autos. Paying \$50 to \$500. I Tow! Call Doug Anytime 7-Days, (269)501-5763.
\tcbitem \$ \$ \$ WE BUY USED \& Unwanted Autos. Any condition, Top \$ \$ \$ paid. Will pick up Free. Airway Auto Parts (269)962-9521
\tcbitem \$500! POLICE IMPOUNDS! Hondas/Chevys/Jeeps! Cars from \$500! For listings: 800-619-3790 ext.2938
\tcbitem \$ CASH \$ For Broken Autos. Paying \$50 to \$500. I Tow! Call Doug Anytime 7-Days, (269)501-5763.
\tcbitem \$ \$ \$ WE BUY USED \& Unwanted Autos. Any condition, Top \$ \$ \$ paid. Will pick up Free. Airway Auto Parts (269)962-9521
\tcbitem \$500! POLICE IMPOUNDS! Hondas/Chevys/Jeeps! Cars from \$500! For listings: 800-619-3790 ext.2938
\tcbitem \$ CASH \$ For Broken Autos. Paying \$50 to \$500. I Tow! Call Doug Anytime 7-Days, (269)501-5763.
\tcbitem \$ \$ \$ WE BUY USED \& Unwanted Autos. Any condition, Top \$ \$ \$ paid. Will pick up Free. Airway Auto Parts (269)962-9521
\tcbitem \$500! POLICE IMPOUNDS! Hondas/Chevys/Jeeps! Cars from \$500! For listings: 800-619-3790 ext.2938
\tcbitem \$ CASH \$ For Broken Autos. Paying \$50 to \$500. I Tow! Call Doug Anytime 7-Days, (269)501-5763.
\tcbitem \$ \$ \$ WE BUY USED \& Unwanted Autos. Any condition, Top \$ \$ \$ paid. Will pick up Free. Airway Auto Parts (269)962-9521
\tcbitem \$500! POLICE IMPOUNDS! Hondas/Chevys/Jeeps! Cars from \$500! For listings: 800-619-3790 ext.2938
\tcbitem \$ CASH \$ For Broken Autos. Paying \$50 to \$500. I Tow! Call Doug Anytime 7-Days, (269)501-5763.
\tcbitem \$ \$ \$ WE BUY USED \& Unwanted Autos. Any condition, Top \$ \$ \$ paid. Will pick up Free. Airway Auto Parts (269)962-9521
\tcbitem \$500! POLICE IMPOUNDS! Hondas/Chevys/Jeeps! Cars from \$500! For listings: 800-619-3790 ext.2938
\tcbitem \$ CASH \$ For Broken Autos. Paying \$50 to \$500. I Tow! Call Doug Anytime 7-Days, (269)501-5763.
\tcbitem \$ \$ \$ WE BUY USED \& Unwanted Autos. Any condition, Top \$ \$ \$ paid. Will pick up Free. Airway Auto Parts (269)962-9521
\end{tcbitemize}
\end{document}

ここに画像の説明を入力してください

答え2

ページ全体をどのような見た目にしたいのかはわかりませんが、広告を区切る線だけのミニページの使用を検討してみてはいかがでしょうか。こんな感じです。他のミニページにはランダムなテキストを追加しましたが、各ミニページの間にさらに線を追加し続けることもできます。繰り返しますが、これがあなたが探しているものかどうかはわかりませんが、ここから始めてさらに調査を進めるとよいでしょう。

\documentclass[11pt]{article}
\usepackage[many]{tcolorbox}
\usepackage{lipsum}
\usepackage{graphicx}
\graphicspath{ {../images/} } 


\begin{document}
\begin{minipage}[t]{0.3\textwidth}
 \$ CASH \$ For Broken Autos.
        Paying \$50 to \$500. I Tow!
        Call Doug Anytime 7-Days,
        (269)501-5763. 
        \noindent\rule{3.8cm}{0.8pt}

         \$ CASH \$ For Broken Autos.
        Paying \$50 to \$500. I Tow!
        Call Doug Anytime 7-Days,
        (269)501-5763. 
        \noindent\rule{3.8cm}{0.8pt}

         \$ CASH \$ For Broken Autos.
        Paying \$50 to \$500. I Tow!
        Call Doug Anytime 7-Days,
        (269)501-5763. 
        \noindent\rule{3.8cm}{0.8pt}

This is a test.  This is a test.  This is a test.  This is a test.  This is a test.  This is a test  This is a test.  This is a test.  This is a test  This is a test.  This is a test.  This is a test  This is a test.  This is a test.  This is a test
\end{minipage}
\hspace{0.5cm}
%%%%%
%%%%%
%%%%%
%%%%%
%%%%%
\begin{minipage}[t]{0.3\textwidth}
This is a test.  This is a test.  This is a test.  This is a test.  This is a test.  This is a test  This is a test.  This is a test.  This is a test  This is a test.  This is a test.  This is a test  This is a test.  This is a test.  This is a test
\end{minipage}
\hspace{0.5cm}
%%%%%
%%%%%
%%%%%
%%%%%
%%%%%
\begin{minipage}[t]{0.3\textwidth}
This is a test.  This is a test.  This is a test.  This is a test.  This is a test.  This is a test  This is a test.  This is a test.  This is a test  This is a test.  This is a test.  This is a test  This is a test.  This is a test.  This is a test
\end{minipage}

\end{document}

例

関連情報