I want to change appearance of part and chapter titles in my report. I already found few examples here, but now I'm trying to combine them to get what I need. Let's start from what we have in Styling the \part page. I don't want full page just for part title, just to show it on top of the new page and after this to show chapter title. However, I would like to have part title as it is in example 14 on this page, that is to have "chapter 1" between lines. And yes, I would like to have a word "Chapter" although it comes from part command.
I tried to copy some parts from one example into another, but doesn't work. Will appreciate your help.
Effect I want to achieve, obtained by part command:
This is working example from accepted answer in mentioned question.
\documentclass{report}
\usepackage{lipsum}% for dummy text
\usepackage{titlesec}
\titleclass{\part}{top} % make part like a chapter
\titleformat{\part}
[display]
{\centering\normalfont\Huge\bfseries}
{\titlerule[5pt]\vspace{3pt}\titlerule[2pt]\vspace{3pt}\MakeUppercase{\partname} \thepart}
{0pt}
{\titlerule[2pt]\vspace{1pc}\huge\MakeUppercase}
%
\titlespacing*{\part}{0pt}{0pt}{20pt}
%
\titleclass{\chapter}{straight} % make chapter like a section (no newpage)
\titleformat{\chapter}
[display]
{\centering\normalfont\Huge\bfseries}
{\titlerule[5pt]\vspace{3pt}\titlerule[2pt]\vspace{3pt}\MakeUppercase{\chaptertitlename} \thechapter}
{0pt}
{\titlerule[2pt]\vspace{6pt}\huge\MakeUppercase}
\titlespacing*{\chapter}{0pt}{0pt}{40pt}
\begin{document}
\part{A part}
\chapter{A chapter}
\lipsum[1-2]
\end{document}


articledoes not providechapters. – Johannes_B Feb 25 '17 at 13:50report*. My bad – Egan Wolf Feb 25 '17 at 14:03reportorscrreprt? – Marco Daniel Feb 25 '17 at 17:23report, but maybe I messed up something in my question, as so far I was only basic LaTeX user. – Egan Wolf Feb 27 '17 at 07:36