i use TexMaker 5.0.3
i have 6 file tex (file 1,2...6), and i must compile 6 times of 6 file .tex to create 6 file pdf. Then in main.tex, i combine 6 file pdf to only one pdf. Total: 7 times to create main.pdf My Minimal code in main.tex:
\documentclass[a5paper]{article}
\usepackage[a5paper,landscape,left=1.5cm,right=0.3cm,top=1cm,bottom=1cm]{geometry}
\usepackage{pdfpages}
\usepackage{subfiles}
\begin{document}
\includepdf[pages=-]{front_cover.pdf}
\includepdf[pages=-]{./Introduction/Introduction.pdf}
\includepdf[pages=-]{1.pdf}
\includepdf[pages=-]{2.pdf}
\includepdf[pages=-]{3.pdf}
\includepdf[pages=-]{4.pdf}
\includepdf[pages=-]{5.pdf}
\includepdf[pages=-]{6.pdf}
\end{document}
With "option: Define current Document = Master Document" : Don't work with command: \includepdf (i don't see any file in structrure view)
How can i compile only one time to create and combine main.pdf from 6 different file .tex (TexMaker)? Thank in advance

\includeor\input. For a comparison see here: When should I use \input vs. \include? Regarding the 'master document' you might be interested in: this answer. Other related questions: Bind reports/articles into a book, but keep the ability to compile them individually and Combine several chapters (separate files) in to one report – leandriis Feb 15 '19 at 17:53