I have created a new schema in my PostgreSQl database with psql:
CREATE SCHEMA my_schema;
But when I issue the \\dt command, I see
\\dt
For your schema (note the period after the schema name):
\dt my_schema.
Or:
SET search_path TO my_schema, public; \dt
For all schemas:
\dt *.